Home
last modified time | relevance | path

Searched refs:exclusive (Results 1 – 25 of 419) sorted by relevance

12345678910>>...17

/aosp12/frameworks/native/libs/binder/
H A DRpcSession.cpp309 sp<RpcConnection> exclusive; in ExclusiveConnection() local
315 findConnection(tid, &exclusive, &available, mSession->mClientConnections, in ExclusiveConnection()
328 if (use == ConnectionUse::CLIENT_ASYNC && (exclusive != nullptr || available != nullptr)) { in ExclusiveConnection()
338 findConnection(tid, &exclusive, nullptr /*available*/, mSession->mServerConnections, in ExclusiveConnection()
343 if (exclusive != nullptr) { in ExclusiveConnection()
344 mConnection = exclusive; in ExclusiveConnection()
366 void RpcSession::ExclusiveConnection::findConnection(pid_t tid, sp<RpcConnection>* exclusive, in findConnection() argument
373 if (*exclusive != nullptr) return; // consistent with break below in findConnection()
386 if (exclusive && socket->exclusiveTid == tid) { in findConnection()
387 *exclusive = socket; in findConnection()
/aosp12/frameworks/base/tools/preload/
H A DOperation.java83 long exclusive = inclusiveTimeNanos(); in exclusiveTimeMicros() local
86 exclusive -= child.inclusiveTimeNanos(); in exclusiveTimeMicros()
89 if (exclusive < 0) { in exclusiveTimeMicros()
93 return nanosToMicros(exclusive); in exclusiveTimeMicros()
/aosp12/system/core/libcutils/
H A Dsocket_inaddr_any_server_windows.cpp51 int exclusive = 1; in socket_inaddr_any_server() local
53 if (setsockopt(sock, SOL_SOCKET, SO_EXCLUSIVEADDRUSE, (char*)&exclusive, in socket_inaddr_any_server()
54 sizeof(exclusive)) == SOCKET_ERROR || in socket_inaddr_any_server()
/aosp12/packages/apps/SettingsIntelligence/src/com/android/settings/intelligence/suggestions/model/
H A DSuggestionCategory.java58 public Builder setExclusive(boolean exclusive) { in setExclusive() argument
59 mExclusive = exclusive; in setExclusive()
H A DSuggestionCategoryRegistry.java68 private static SuggestionCategory buildCategory(String categoryName, boolean exclusive, in buildCategory() argument
72 .setExclusive(exclusive) in buildCategory()
/aosp12/frameworks/proto_logging/stats/stats_log_api_gen/
H A Dtest.proto150 // The atom has only primary field but no exclusive state field.
162 // Having 2 exclusive state field in the atom means the atom is badly designed.
175 // Atoms can have exclusive state field, but no primary field. That means
176 // the state is globally exclusive (e.g., DisplayState).
/aosp12/hardware/interfaces/automotive/evs/1.0/
H A DIEvsEnumerator.hal59 * Get exclusive access to IEvsDisplay for the system
63 * the old instance shall be closed and give the new caller exclusive
87 * without acquiring exclusive ownership of the display.
/aosp12/packages/modules/Permission/PermissionController/src/com/android/permissioncontroller/role/ui/
H A DRoleListLiveData.java53 public RoleListLiveData(boolean exclusive, @NonNull UserHandle user, @NonNull Context context) { in RoleListLiveData() argument
54 mExclusive = exclusive; in RoleListLiveData()
/aosp12/frameworks/rs/script_api/include/
H A Drs_for_each.rsh72 * The Start fields are inclusive and the End fields are exclusive. E.g. to iterate
78 uint32_t xEnd; // Ending index (exclusive) in the X dimension.
80 uint32_t yEnd; // Ending index (exclusive) in the Y dimension.
82 uint32_t zEnd; // Ending index (exclusive) in the Z dimension.
84 uint32_t arrayEnd; // Ending index (exclusive) in the Array0 dimension.
86 uint32_t array1End; // Ending index (exclusive) in the Array1 dimension.
88 uint32_t array2End; // Ending index (exclusive) in the Array2 dimension.
90 uint32_t array3End; // Ending index (exclusive) in the Array3 dimension.
/aosp12/system/sepolicy/prebuilts/api/31.0/private/
H A Dattributes10 # property owner attributes must be exclusive.
/aosp12/system/sepolicy/prebuilts/api/32.0/private/
H A Dattributes10 # property owner attributes must be exclusive.
/aosp12/system/sepolicy/private/
H A Dattributes10 # property owner attributes must be exclusive.
/aosp12/system/netd/server/
H A DControllers.cpp157 bool exclusive) { in createChildChains() argument
173 if (exclusive) { in createChildChains()
H A DControllers.h69 const std::vector<const char*>& childChains, bool exclusive);
/aosp12/frameworks/base/core/java/com/android/internal/view/menu/
H A DActionMenuItem.java173 public ActionMenuItem setExclusiveCheckable(boolean exclusive) { in setExclusiveCheckable() argument
174 mFlags = (mFlags & ~EXCLUSIVE) | (exclusive ? EXCLUSIVE : 0); in setExclusiveCheckable()
H A DActionMenu.java226 boolean exclusive) { in setGroupCheckable() argument
234 item.setExclusiveCheckable(exclusive); in setGroupCheckable()
/aosp12/hardware/interfaces/nfc/1.0/
H A DINfc.hal88 * Grant HAL the exclusive control to send NCI commands.
91 * NfcEvent.RELEASE_CONTROL will notify when HAL no longer needs exclusive control.
/aosp12/hardware/interfaces/automotive/evs/1.1/
H A DIEvsEnumerator.hal68 * Get exclusive access to IEvsDisplay for the system
73 * the new caller exclusive access.
/aosp12/packages/modules/StatsD/statsd/src/
H A DFieldValue.h380 inline void setExclusiveState(bool exclusive) { setBitmaskAtPos(EXCLUSIVE_POS, exclusive); } in setExclusiveState() argument
/aosp12/frameworks/proto_logging/stats/
H A Datom_field_options.proto27 // ONE exclusive state field, and any number of primary key fields. For example, message
71 // The field that represents the state. It's an exclusive state.
/aosp12/build/soong/cmd/extract_apks/bundle_proto/
H A Dtargeting.proto41 // User Countries targeting describing an inclusive/exclusive list of country
47 // Indicates if the list above is exclusive.
/aosp12/frameworks/base/core/java/android/view/
H A DMenu.java347 public void setGroupCheckable(int group, boolean checkable, boolean exclusive); in setGroupCheckable() argument
/aosp12/frameworks/base/core/java/com/android/internal/widget/
H A DAutoScrollHelper.java261 public AutoScrollHelper setExclusive(boolean exclusive) { in setExclusive() argument
262 mExclusive = exclusive; in setExclusive()
/aosp12/art/runtime/
H A Dmutator_gc_coord.md15 holds the lock in writer or exclusive mode while it needs the heap data
72 released the mutator exclusive lock, and then returns to runnable state,
97 `ReaderWriterMutex` in shared mode. Thus any thread acquiring the lock in exclusive mode
/aosp12/packages/modules/GeoTZ/s2storage/tools/src/proto/
H A Dgeotz_protos.proto47 // The end S2 cell ID (exclusive).

12345678910>>...17