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

/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/Email/src/com/android/email/activity/
H A DWelcome.java147 public static Intent createAccountShortcutIntent(Context context, String uuid, long mailboxId) { argument
150 IntentUtilities.setAccountUuid(b, uuid);
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
H A DAccount.java512 * @return {@link Uri} to an {@link Account} with a {@code uuid}.
514 public static Uri getShortcutSafeUriFromUuid(String uuid) { argument
515 return CONTENT_URI.buildUpon().appendEncodedPath(uuid).build();
557 public static long getAccountIdFromUuid(Context context, String uuid) { argument
560 UUID_SELECTION, new String[] {uuid}, null, 0, -1L);

Completed in 168 milliseconds