/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
H A D | BluetoothOppPreference.java | 98 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...] |
H A D | BluetoothOppObexServerSession.java | 543 byte[] uuid = (byte[])request.getHeader(HeaderSet.TARGET); 544 if (V) Log.v(TAG, "onConnect(): uuid =" + Arrays.toString(uuid)); 545 if(uuid != null) {
|
/packages/apps/Bluetooth/src/com/android/bluetooth/ |
H A D | Utils.java | 100 UUID uuid = pUuid.getUuid(); 101 msb = uuid.getMostSignificantBits(); 102 lsb = uuid.getLeastSignificantBits(); 112 UUID uuid; 115 uuid = uuids[i].getUuid(); 116 msb = uuid.getMostSignificantBits(); 117 lsb = uuid.getLeastSignificantBits(); 127 UUID uuid;
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/ |
H A D | IntentUtilities.java | 116 String uuid = uri.getQueryParameter(ACCOUNT_UUID_PARAM); 117 return TextUtils.isEmpty(uuid) ? null : uuid;
|
/packages/apps/Bluetooth/jni/ |
H A D | com_android_bluetooth_btservice_AdapterService.cpp | 827 jbyte *addr = NULL, *uuid = NULL; local 839 uuid = env->GetByteArrayElements(uuidObj, NULL); 840 if (!uuid) { 841 ALOGE("failed to get uuid"); 846 (const uint8_t*) uuid, channel, &socket_fd, flag)) != BT_STATUS_SUCCESS) { 857 env->ReleaseByteArrayElements(uuidObj, uuid, 0); 862 if (uuid) env->ReleaseByteArrayElements(uuidObj, uuid, 0); 870 jbyte *uuid = NULL; local 878 uuid [all...] |
/packages/apps/Email/src/com/android/email/activity/ |
H A D | ShortcutPicker.java | 148 String uuid = account.mCompatibilityUuid; 149 shortcutIntent = Welcome.createAccountShortcutIntent(myActivity, uuid, mailboxId);
|
H A D | Welcome.java | 147 public static Intent createAccountShortcutIntent(Context context, String uuid, long mailboxId) { argument 150 IntentUtilities.setAccountUuid(b, uuid);
|
/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/ |
H A D | AdapterService.java | 841 ParcelUuid uuid, int port, int flag) { 849 return service.connectSocket(device, type, uuid, port, flag); 853 ParcelUuid uuid, int port, int flag) { 861 return service.createSocketChannel(type, serviceName, uuid, port, flag); 1284 ParcelUuid uuid, int port, int flag) { 1287 type, Utils.uuidToByteArray(uuid), port, flag); 1296 ParcelUuid uuid, int port, int flag) { 1299 Utils.uuidToByteArray(uuid), port, flag); 1377 byte[] uuid, int port, int flag); 1379 byte[] uuid, in 840 connectSocket(BluetoothDevice device, int type, ParcelUuid uuid, int port, int flag) argument 852 createSocketChannel(int type, String serviceName, ParcelUuid uuid, int port, int flag) argument 1283 connectSocket(BluetoothDevice device, int type, ParcelUuid uuid, int port, int flag) argument 1295 createSocketChannel(int type, String serviceName, ParcelUuid uuid, int port, int flag) argument 1376 connectSocketNative(byte[] address, int type, byte[] uuid, int port, int flag) argument 1378 createSocketChannelNative(int type, String serviceName, byte[] uuid, int port, int flag) argument [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/ |
H A D | BluetoothPbapObexServer.java | 185 byte[] uuid = (byte[])request.getHeader(HeaderSet.TARGET); 186 if (uuid == null) { 189 if (D) Log.d(TAG, "onConnect(): uuid=" + Arrays.toString(uuid)); 191 if (uuid.length != UUID_LENGTH) { 196 if (uuid[i] != PBAP_TARGET[i]) { 201 reply.setHeader(HeaderSet.WHO, uuid); 218 if (V) Log.v(TAG, "onConnect(): uuid is ok, will send out " +
|
/packages/apps/Settings/src/com/android/settings/bluetooth/ |
H A D | CachedBluetoothDevice.java | 202 // from bluetooth stack but ACTION.uuid is not sent yet. 203 // Eventually ACTION.uuid will be received which shall trigger the connection of the 473 for (ParcelUuid uuid : uuids) { 474 Log.v(TAG, " " + uuid);
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/ |
H A D | Account.java | 508 * @return {@link Uri} to an {@link Account} with a {@code uuid}. 510 public static Uri getShortcutSafeUriFromUuid(String uuid) { argument 511 return CONTENT_URI.buildUpon().appendEncodedPath(uuid).build(); 553 public static long getAccountIdFromUuid(Context context, String uuid) { argument 556 UUID_SELECTION, new String[] {uuid}, null, 0, -1L);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/ |
H A D | ResearchLogger.java | 768 UUID uuid = UUID.randomUUID(); 769 uuidString = uuid.toString(); 788 "LatinIMEOnStartInputViewInternal", "uuid", "packageName", "inputType", "imeOptions",
|
/packages/apps/MusicFX/src/com/android/musicfx/ |
H A D | ActivityMusic.java | 253 if (effect.uuid.equals(UUID.fromString("1d4033c0-8557-11df-9f2d-0002a5d5c51b"))) {
|