Searched defs:uuid (Results 1 - 21 of 21) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
H A DGattDbElement.java37 public UUID uuid; field in class:GattDbElement
55 public static GattDbElement createPrimaryService(UUID uuid) { argument
58 el.uuid = uuid;
62 public static GattDbElement createSecondaryService(UUID uuid) { argument
65 el.uuid = uuid;
69 public static GattDbElement createCharacteristic(UUID uuid, int properties, int permissions) { argument
72 el.uuid = uuid;
78 createDescriptor(UUID uuid, int permissions) argument
[all...]
H A DContextMap.java67 UUID uuid; field in class:ContextMap.App
101 App(UUID uuid, C callback, T info, String name, AppScanStats appScanStats) { argument
102 this.uuid = uuid;
160 App add(UUID uuid, WorkSource workSource, C callback, T info, GattService service) { argument
173 App app = new App(uuid, callback, info, appName, appScanStats);
183 void remove(UUID uuid) { argument
188 if (entry.uuid.equals(uuid)) {
288 App getByUuid(UUID uuid) { argument
[all...]
H A DHandleMap.java39 UUID uuid = null; field in class:HandleMap.Entry
47 Entry(int serverIf, int handle, UUID uuid, int serviceType, int instance) { argument
51 this.uuid = uuid;
56 Entry(int serverIf, int handle, UUID uuid, int serviceType, int instance, argument
61 this.uuid = uuid;
67 Entry(int serverIf, int type, int handle, UUID uuid, int serviceHandle) { argument
71 this.uuid = uuid;
75 Entry(int serverIf, int type, int handle, UUID uuid, int serviceHandle, int charHandle) argument
99 addService(int serverIf, int handle, UUID uuid, int serviceType, int instance, boolean advertisePreferred) argument
104 addCharacteristic(int serverIf, int handle, UUID uuid, int serviceHandle) argument
109 addDescriptor(int serverIf, int handle, UUID uuid, int serviceHandle) argument
134 getServiceHandle(UUID uuid, int serviceType, int instance) argument
147 getCharacteristicHandle(int serviceHandle, UUID uuid, int instance) argument
[all...]
H A DScanFilterQueue.java54 public UUID uuid; field in class:ScanFilterQueue.Entry
64 return Objects.hash(address, addr_type, type, uuid, uuid_mask,
81 Objects.equals(uuid, other.uuid) &&
106 void addUuid(UUID uuid) { argument
109 entry.uuid = uuid;
114 void addUuid(UUID uuid, UUID uuid_mask) { argument
117 entry.uuid = uuid;
122 addSolicitUuid(UUID uuid) argument
[all...]
H A DScanManager.java142 void registerScanner(UUID uuid) { argument
144 uuid.getLeastSignificantBits(), uuid.getMostSignificantBits());
994 entry.uuid.getLeastSignificantBits(),
995 entry.uuid.getMostSignificantBits(),
H A DGattService.java223 boolean permissionCheck(UUID uuid) { argument
224 if (isRestrictedCharUuid(uuid) && (0 != checkCallingOrSelfPermission(BLUETOOTH_PRIVILEGED)))
360 public void registerClient(ParcelUuid uuid, IBluetoothGattCallback callback) { argument
363 service.registerClient(uuid.getUuid(), callback);
464 public void discoverServiceByUuid(int clientIf, String address, ParcelUuid uuid) { argument
467 service.discoverServiceByUuid(clientIf, address, uuid.getUuid());
476 public void readUsingCharacteristicUuid(int clientIf, String address, ParcelUuid uuid, argument
481 clientIf, address, uuid.getUuid(), startHandle, endHandle, authReq);
541 public void registerServer(ParcelUuid uuid, IBluetoothGattServerCallback callback) { argument
544 service.registerServer(uuid
1793 registerClient(UUID uuid, IBluetoothGattCallback callback) argument
1899 discoverServiceByUuid(int clientIf, String address, UUID uuid) argument
1929 readUsingCharacteristicUuid( int clientIf, String address, UUID uuid, int startHandle, int endHandle, int authReq) argument
2345 registerServer(UUID uuid, IBluetoothGattServerCallback callback) argument
2499 isHidUuid(final UUID uuid) argument
2506 isFidoUUID(final UUID uuid) argument
[all...]
/packages/services/BuiltInPrintService/src/com/android/bips/discovery/
H A DDiscoveredPrinter.java37 public final Uri uuid; field in class:DiscoveredPrinter
54 * @param uuid Unique identification of the network printer, if known
59 public DiscoveredPrinter(Uri uuid, String name, Uri path, String location) { argument
60 this.uuid = uuid;
69 Uri uuid = null, path = null;
75 case "uuid":
76 uuid = Uri.parse(reader.nextString());
92 this.uuid = uuid;
[all...]
/packages/services/BuiltInPrintService/src/com/android/bips/jni/
H A DLocalPrinterCapabilities.java38 public String uuid; field in class:LocalPrinterCapabilities
115 " uuid=" + uuid +
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppPreference.java98 private String getChannelKey(BluetoothDevice remoteDevice, int uuid) { argument
99 return remoteDevice.getAddress() + "_" + Integer.toHexString(uuid);
115 public int getChannel(BluetoothDevice remoteDevice, int uuid) { argument
116 String key = getChannelKey(remoteDevice, uuid);
121 if (V) Log.v(TAG, "getChannel for " + remoteDevice + "_" + Integer.toHexString(uuid) +
137 public void setChannel(BluetoothDevice remoteDevice, int uuid, int channel) { argument
138 if (V) Log.v(TAG, "Setchannel for " + remoteDevice + "_" + Integer.toHexString(uuid) + " to "
140 if (channel != getChannel(remoteDevice, uuid)) {
141 String key = getChannelKey(remoteDevice, uuid);
149 public void removeChannel(BluetoothDevice remoteDevice, int uuid) { argument
[all...]
/packages/apps/DocumentsUI/src/com/android/documentsui/prefs/
H A DLocalPreferences.java91 String packageName, @Nullable String uuid, String directory) {
92 final String key = getScopedAccessDenialsKey(packageName, uuid, directory);
97 @Nullable String uuid, String directory, @PermissionStatus int status) {
98 final String key = getScopedAccessDenialsKey(packageName, uuid, directory);
119 private static String getScopedAccessDenialsKey(String packageName, String uuid, argument
122 return uuid == null
124 : userId + "|" + packageName + "|" + uuid + "|" + directory;
90 getScopedAccessPermissionStatus(Context context, String packageName, @Nullable String uuid, String directory) argument
96 setScopedAccessPermissionStatus(Context context, String packageName, @Nullable String uuid, String directory, @PermissionStatus int status) argument
/packages/apps/Settings/src/com/android/settings/deviceinfo/storage/
H A DStorageAsyncLoader.java58 String uuid, StorageStatsSource source, PackageManagerWrapper pm) {
61 mUuid = uuid;
57 StorageAsyncLoader(Context context, UserManagerWrapper userManager, String uuid, StorageStatsSource source, PackageManagerWrapper pm) argument
/packages/apps/Bluetooth/jni/
H A Dcom_android_bluetooth_sdp.cpp47 // The btcore->uuid module should be used for all instances.
130 jbyte* uuid = env->GetByteArrayElements(uuidObj, NULL); local
131 if (!uuid) {
132 ALOGE("failed to get uuid");
136 ALOGD("%s UUID %.*s", __func__, 16, (uint8_t*)uuid);
139 (const uint8_t*)uuid);
145 if (uuid) env->ReleaseByteArrayElements(uuidObj, uuid, 0);
159 ScopedLocalRef<jbyteArray> uuid(
161 if (!uuid
[all...]
H A Dcom_android_bluetooth_btservice_AdapterService.cpp1082 jbyte* uuid = NULL; local
1084 uuid = env->GetByteArrayElements(uuidObj, NULL);
1085 if (!uuid) {
1086 ALOGE("failed to get uuid");
1094 (RawAddress*)addr, (btsock_type_t)type, (const uint8_t*)uuid, channel,
1104 env->ReleaseByteArrayElements(uuidObj, uuid, 0);
1120 jbyte* uuid = NULL; local
1122 uuid = env->GetByteArrayElements(uuidObj, NULL);
1123 if (!uuid) {
1124 ALOGE("failed to get uuid");
[all...]
H A Dcom_android_bluetooth_gatt.cpp43 #define UUID_PARAMS(uuid) uuid_lsb(uuid), uuid_msb(uuid)
45 static void set_uuid(uint8_t* uuid, jlong uuid_msb, jlong uuid_lsb) { argument
47 uuid[i] = (uuid_lsb >> (8 * i)) & 0xFF;
48 uuid[i + 8] = (uuid_msb >> (8 * i)) & 0xFF;
52 static uint64_t uuid_lsb(const bt_uuid_t& uuid) { argument
57 lsb |= uuid.uu[i];
63 static uint64_t uuid_msb(const bt_uuid_t& uuid) { argument
68 msb |= uuid
559 btgatts_register_app_cb(int status, int server_if, const bt_uuid_t& uuid) argument
942 bt_uuid_t uuid; local
1302 bt_uuid_t uuid, uuid_mask; local
1472 bt_uuid_t uuid; local
[all...]
/packages/services/BuiltInPrintService/jni/include/
H A Dprinter_capabilities_types.h42 char uuid[MAX_UUID]; member in struct:__anon134
/packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/
H A DHeadsetClientService.java717 boolean terminateCall(BluetoothDevice device, UUID uuid) { argument
732 msg.obj = uuid;
/packages/apps/Bluetooth/src/com/android/bluetooth/sdp/
H A DSdpManager.java77 private native boolean sdpSearchNative(byte[] address, byte[] uuid); argument
106 public SdpSearchInstance(int status, BluetoothDevice device, ParcelUuid uuid){ argument
108 this.mUuid = uuid;
172 ParcelUuid uuid = Utils.byteArrayToUuid(uuidBytes)[0];
175 && inst.getUuid().equals(uuid)) {
182 boolean isSearching(BluetoothDevice device, ParcelUuid uuid) { argument
186 && inst.getUuid().equals(uuid)) {
229 void sdpMasRecordFoundCallback(int status, byte[] address, byte[] uuid, argument
240 SdpSearchInstance inst = sSdpSearchTracker.getSearchInstance(address, uuid);
256 if(D) Log.d(TAG, "UUID: " + Arrays.toString(uuid));
262 sdpMnsRecordFoundCallback(int status, byte[] address, byte[] uuid, int l2capPsm, int rfcommCannelNumber, int profileVersion, int supportedFeatures, String serviceName, boolean moreResults) argument
291 sdpPseRecordFoundCallback(int status, byte[] address, byte[] uuid, int l2capPsm, int rfcommCannelNumber, int profileVersion, int supportedFeatures, int supportedRepositories, String serviceName, boolean moreResults) argument
321 sdpOppOpsRecordFoundCallback(int status, byte[] address, byte[] uuid, int l2capPsm, int rfcommCannelNumber, int profileVersion, String serviceName, byte[] formatsList, boolean moreResults) argument
351 sdpSapsRecordFoundCallback(int status, byte[] address, byte[] uuid, int rfcommCannelNumber, int profileVersion, String serviceName, boolean moreResults) argument
377 sdpRecordFoundCallback(int status, byte[] address, byte[] uuid, int size_record, byte[] record) argument
400 sdpSearch(BluetoothDevice device, ParcelUuid uuid) argument
[all...]
/packages/apps/StorageManager/src/com/android/storagemanager/deletionhelper/
H A DAppsAsyncLoader.java80 String uuid,
87 mUuid = uuid;
244 public Builder setUuid(String uuid) { argument
245 this.mUuid = uuid;
77 AppsAsyncLoader( Context context, int userId, String uuid, StorageStatsSource source, PackageManagerWrapper pm, UsageStatsManager um, AppsAsyncLoader.AppFilter filter) argument
/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
H A DAdapterService.java1240 ParcelUuid uuid, int port, int flag) {
1248 return service.connectSocket(device, type, uuid, port, flag);
1252 ParcelUuid uuid, int port, int flag) {
1260 return service.createSocketChannel(type, serviceName, uuid, port, flag);
1262 public boolean sdpSearch(BluetoothDevice device, ParcelUuid uuid) { argument
1270 return service.sdpSearch(device,uuid);
1544 boolean sdpSearch(BluetoothDevice device,ParcelUuid uuid) { argument
1547 mSdpManager.sdpSearch(device,uuid);
1835 BluetoothDevice device, int type, ParcelUuid uuid, int port, int flag) {
1838 Utils.uuidToByteArray(uuid), por
1239 connectSocket(BluetoothDevice device, int type, ParcelUuid uuid, int port, int flag) argument
1251 createSocketChannel(int type, String serviceName, ParcelUuid uuid, int port, int flag) argument
1834 connectSocket( BluetoothDevice device, int type, ParcelUuid uuid, int port, int flag) argument
1846 createSocketChannel( int type, String serviceName, ParcelUuid uuid, int port, int flag) argument
2263 sdpSearchNative(byte[] address, byte[] uuid) argument
2279 connectSocketNative( byte[] address, int type, byte[] uuid, int port, int flag, int callingUid) argument
2281 createSocketChannelNative( int type, String serviceName, byte[] uuid, int port, int flag, int callingUid) argument
[all...]
/packages/apps/TV/libs/
H A Dexoplayer.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/exoplayer/ ...
H A Dexoplayer_v2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/exoplayer2/ ...

Completed in 920 milliseconds