HomeSort by relevance Sort by last modified time
    Searched refs:UUID (Results 1 - 17 of 17) sorted by null

  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/
UUIDTest.java 27 import java.util.UUID;
31 @TestTargetClass(UUID.class)
35 * @see UUID#UUID(long, long)
40 method = "UUID",
44 UUID uuid = new UUID(0xf81d4fae7dec11d0L, 0xa76500a0c91e6bf6L); local
45 assertEquals(2, uuid.variant());
46 assertEquals(1, uuid.version())
63 UUID uuid = new UUID(0, 0); local
81 UUID uuid = new UUID(0, 0); local
99 UUID uuid = new UUID(0, 0); local
123 UUID uuid = new UUID(0, 0x0000000000000000L); local
162 UUID uuid = new UUID(0x0000000000001000L, 0x8000000000000000L); local
191 UUID uuid = new UUID(0x0000000000001000L, 0x8000000000000000L); local
223 UUID uuid = new UUID(0x0000000000001000L, 0x8000000000000000L); local
273 UUID uuid = new UUID(0, 0); local
318 UUID uuid = new UUID(0xf81d4fae7dec11d0L, 0xa76500a0c91e6bf6L); local
365 UUID uuid = UUID.randomUUID(); local
385 UUID uuid = UUID.nameUUIDFromBytes(name); local
478 UUID uuid = UUID.fromString("0-0-0-0-0"); local
    [all...]
  /frameworks/base/core/java/android/os/
ParcelUuid.java 19 import java.util.UUID;
22 * This class is a Parcelable wrapper around {@link UUID} which is an
28 private final UUID mUuid;
32 * given {@link UUID}.
34 * @param uuid UUID
36 public ParcelUuid(UUID uuid) {
37 mUuid = uuid;
41 * Creates a new ParcelUuid from a string representation of {@link UUID}
    [all...]
  /dalvik/libcore/luni/src/main/java/java/util/
UUID.java 30 * UUID is an immutable representation of a 128-bit universally unique
31 * identifier (UUID).
41 public final class UUID implements Serializable, Comparable<UUID> {
62 * The 64 most significant bits of the UUID.
64 * The 64 least significant bits of the UUID.
66 public UUID(long mostSigBits, long leastSigBits) {
118 * Generates a variant 2, version 4 (randomly generated number) UUID as per
121 * @return an UUID instance.
123 public static UUID randomUUID()
    [all...]
  /dalvik/libcore/luni/src/test/java/java/io/
FileTest.java 19 import java.util.UUID;
27 File directory = new File(base, UUID.randomUUID().toString());
  /packages/apps/Email/src/com/android/email/
Preferences.java 24 import java.util.UUID;
87 String uuid = uri.getPath().substring(1); local
88 if (uuid == null) {
97 if (uuid.equals(uuids[i])) {
98 return new Account(this, uuid);
176 result = UUID.randomUUID().toString();
Account.java 26 import java.util.UUID;
30 * and delete itself given a Preferences to work with. Each account is defined by a UUID.
103 mUuid = UUID.randomUUID().toString();
118 Account(Preferences preferences, String uuid) {
119 this.mUuid = uuid;
  /external/webkit/WebKitTools/Scripts/
print-msvc-project-dependencies 62 my $uuid = $2;
63 if (exists $projectsByUUID{$uuid}) {
69 uuid => $uuid,
72 $projectsByUUID{$uuid} = $currentProject;
100 warn "Warning: UUID $uuid1 listed more than once as dependency of project ", $currentProject->{name}, "\n";
104 $uuid1 eq $uuid2 or warn "Warning: UUIDs in depedency section of project ", $currentProject->{name}, " don't match: $uuid1 $uuid2; using first UUID\n";
VCSUtils.pm 204 if (/^Repository UUID: (.+)/) {
216 # repository root or the repository UUID suddenly changes.
  /frameworks/base/core/java/android/bluetooth/
BluetoothAdapter.java 36 import java.util.UUID;
54 * {@link #listenUsingRfcommWithServiceRecord(String,UUID)}.
658 private final UUID mUuid;
660 public RfcommChannelPicker(UUID uuid) {
675 mUuid = uuid;
722 * UUID, service name, and auto-assigned channel. Remote Bluetooth devices
723 * can use the same UUID to query our SDP server and discover which channel
727 * connect to this socket from another device using the same {@link UUID}.
730 * @param uuid uuid for SDP recor
    [all...]
BluetoothDevice.java 31 import java.util.UUID;
52 * {@link #createRfcommSocketToServiceRecord(UUID)}.
245 * Broadcast Action: This intent is used to broadcast the {@link UUID}
256 "android.bleutooth.device.action.UUID";
332 * is a parcelable version of {@link UUID}.
335 public static final String EXTRA_UUID = "android.bluetooth.device.extra.UUID";
588 public int getServiceChannel(ParcelUuid uuid) {
590 return sService.getRemoteServiceChannel(mAddress, uuid);
658 * outgoing connection to this remote device using SDP lookup of uuid.
663 * connection. This will also perform an SDP lookup of the given uuid t
    [all...]
  /development/samples/BluetoothChat/src/com/example/android/BluetoothChat/
BluetoothChatService.java 22 import java.util.UUID;
48 // Unique UUID for this application
49 private static final UUID MY_UUID = UUID.fromString("fa87c0d0-afac-11de-8a39-0800200c9a66");
  /packages/apps/Email/src/com/android/email/mail/store/
LocalStore.java 63 import java.util.UUID;
106 * @param uri local://localhost/path/to/database/uuid.db
    [all...]
  /packages/apps/Email/src/com/android/email/provider/
EmailContent.java 38 import java.util.UUID;
    [all...]
  /packages/apps/Email/src/com/android/exchange/adapter/
CalendarSyncAdapter.java 64 import java.util.UUID;
    [all...]
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 

Completed in 2494 milliseconds