OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:uuid1
(Results
1 - 5
of
5
) sorted by null
/external/e2fsprogs/lib/uuid/
compare.c
44
struct uuid
uuid1
, uuid2;
local
46
uuid_unpack(uu1, &
uuid1
);
49
UUCMP(
uuid1
.time_low, uuid2.time_low);
50
UUCMP(
uuid1
.time_mid, uuid2.time_mid);
51
UUCMP(
uuid1
.time_hi_and_version, uuid2.time_hi_and_version);
52
UUCMP(
uuid1
.clock_seq, uuid2.clock_seq);
53
return memcmp(
uuid1
.node, uuid2.node, 6);
/external/webkit/Tools/Scripts/
print-msvc-project-dependencies
97
my $
uuid1
= $1;
99
if (exists $currentProject->{dependencies}->{$
uuid1
}) {
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";
106
$currentProject->{dependencies}->{$
uuid1
} = 1;
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
UUIDTest.java
192
UUID
uuid1
= new UUID(0, 0);
local
193
assertEquals(0,
uuid1
.compareTo(
uuid1
));
195
assertEquals(-1,
uuid1
.compareTo(uuid2));
196
assertEquals(1, uuid2.compareTo(
uuid1
));
199
assertEquals(-1,
uuid1
.compareTo(uuid2));
200
assertEquals(1, uuid2.compareTo(
uuid1
));
218
UUID
uuid1
= new UUID(0, 0);
local
219
assertEquals(
uuid1
,
uuid1
);
[
all
...]
/external/bluetooth/bluez/lib/bluetooth/
uuid.h
53
int bt_uuid_cmp(const bt_uuid_t *
uuid1
, const bt_uuid_t *uuid2);
/external/bluetooth/bluez/lib/
uuid.c
122
int bt_uuid_cmp(const bt_uuid_t *
uuid1
, const bt_uuid_t *uuid2)
126
bt_uuid_to_uuid128(
uuid1
, &u1);
Completed in 307 milliseconds