Searched refs:uuid (Results 1 - 25 of 127) sorted by relevance

123456

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/xfs/support/
H A Duuid.h26 extern void uuid_create_nil(uuid_t *uuid);
27 extern int uuid_is_nil(uuid_t *uuid);
29 extern void uuid_getnodeuniq(uuid_t *uuid, int fsid [2]);
30 extern __uint64_t uuid_hash64(uuid_t *uuid);
31 extern int uuid_table_insert(uuid_t *uuid);
32 extern void uuid_table_remove(uuid_t *uuid);
H A Duuid.c40 uuid_getnodeuniq(uuid_t *uuid, int fsid [2]) argument
42 xfs_uu_t *uup = (xfs_uu_t *)uuid;
50 uuid_create_nil(uuid_t *uuid) argument
52 memset(uuid, 0, sizeof(*uuid));
56 uuid_is_nil(uuid_t *uuid) argument
59 char *cp = (char *)uuid;
61 if (uuid == NULL)
64 for (i = 0; i < sizeof *uuid; i++)
76 * Given a 128-bit uuid, retur
83 uuid_hash64(uuid_t *uuid) argument
91 uuid_table_insert(uuid_t *uuid) argument
119 uuid_table_remove(uuid_t *uuid) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/uuid/
H A Dunparse.c54 struct uuid uuid; local
56 uuid_unpack(uu, &uuid);
58 uuid.time_low, uuid.time_mid, uuid.time_hi_and_version,
59 uuid.clock_seq >> 8, uuid.clock_seq & 0xFF,
60 uuid.node[0], uuid
[all...]
H A Dparse.c45 struct uuid uuid; local
66 uuid.time_low = strtoul(in, NULL, 16);
67 uuid.time_mid = strtoul(in+9, NULL, 16);
68 uuid.time_hi_and_version = strtoul(in+14, NULL, 16);
69 uuid.clock_seq = strtoul(in+19, NULL, 16);
75 uuid.node[i] = strtoul(buf, NULL, 16);
78 uuid_pack(&uuid, uu);
H A DuuidP.h3 * uuid.h -- private header file for uuids
39 #include "uuid.h"
47 struct uuid { struct
59 void uuid_pack(const struct uuid *uu, uuid_t ptr);
60 void uuid_unpack(const uuid_t in, struct uuid *uu);
H A Duuid_time.c3 * uuid_time.c --- Interpret the time field from a uuid. This program
48 struct uuid uuid; local
53 uuid_unpack(uu, &uuid);
55 high = uuid.time_mid | ((uuid.time_hi_and_version & 0xFFF) << 16);
56 clock_reg = uuid.time_low | ((unsigned long long) high << 32);
70 struct uuid uuid; local
72 uuid_unpack(uu, &uuid);
78 struct uuid uuid; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/e2p/
H A Duuid.c3 * uuid.c -- utility routines for manipulating UUID's.
12 struct uuid { struct
20 /* Returns 1 if the uuid is the NULL uuid */
32 static void e2p_unpack_uuid(void *in, struct uuid *uu)
60 struct uuid uuid; local
62 e2p_unpack_uuid(uu, &uuid);
65 uuid.time_low, uuid
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/include/atalk/
H A Duuid.h34 extern int getuuidfromname( const char *name, uuidtype_t type, uuidp_t uuid);
38 extern const char *uuid_bin2string(unsigned char *uuid);
39 extern void uuid_string2bin( const char *uuidstring, uuidp_t uuid);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna/
H A Duuid.c206 unsigned char uuid[16]; local
208 if( generate_uuid(uuid) != 0 )
212 uuid[0], uuid[1], uuid[2], uuid[3], uuid[4], uuid[5], uuid[6], uuid[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna.03.14/
H A Duuid.c220 unsigned char uuid[16]; local
222 if( generate_uuid(uuid) != 0 )
226 uuid[0], uuid[1], uuid[2], uuid[3], uuid[4], uuid[5], uuid[6], uuid[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna.07.26/
H A Duuid.c206 unsigned char uuid[16]; local
208 if( generate_uuid(uuid) != 0 )
212 uuid[0], uuid[1], uuid[2], uuid[3], uuid[4], uuid[5], uuid[6], uuid[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/include/atalk/
H A Duuid.h47 extern int getuuidfromname( const char *name, uuidtype_t type, uuidp_t uuid);
51 extern const char *uuid_bin2string(unsigned char *uuid);
52 extern void uuid_string2bin( const char *uuidstring, uuidp_t uuid);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/udev/extras/volume_id/lib/
H A Dlinux_raid.c2 * volume_id - reads filesystem label and uuid
67 } uuid; local
80 uuid.ints[0] = bswap_32(mdp0->set_uuid0);
82 uuid.ints[1] = bswap_32(mdp0->set_uuid1);
83 uuid.ints[2] = bswap_32(mdp0->set_uuid2);
84 uuid.ints[3] = bswap_32(mdp0->set_uuid3);
86 uuid.ints[1] = 0;
87 uuid.ints[2] = 0;
88 uuid.ints[3] = 0;
90 volume_id_set_uuid(id, uuid
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/libatalk/acl/
H A Daclldap.h18 #include <atalk/uuid.h> /* just for uuidtype_t*/
H A Dcache.c27 #include <atalk/uuid.h>
33 uuidp_t uuid; member in struct:cacheduser
41 cacheduser_t *uuidcache[256]; /* indexed by hash of uuid */
63 "namecache{%d}: name:%s, uuid:%s, type%s: %s, cached: %s",
66 uuid_bin2string(entry->uuid),
84 "uuidcache{%d}: uuid:%s, name:%s, type%s: %s, cached: %s",
86 uuid_bin2string(entry->uuid),
112 static unsigned char hashuuid(uuidp_t uuid) { argument
117 index ^= uuid[i];
118 index += uuid[
130 uuidp_t uuid = NULL; local
203 search_cachebyname(const char *name, uuidtype_t *type, uuidp_t uuid) argument
302 uuidp_t uuid = NULL; local
[all...]
H A DMakefile.am6 libacl_la_SOURCES = cache.c unix.c uuid.c
H A Duuid.c30 #include <atalk/uuid.h>
71 * convert ascii string that can include dashes to binary uuid.
74 void uuid_string2bin( const char *uuidstring, uuidp_t uuid) { argument
95 uuid[i++] = val + c;
104 * Convert 16 byte binary uuid to neat ascii represantation including dashes.
108 const char *uuid_bin2string(unsigned char *uuid) { argument
115 c = *uuid;
116 uuid++;
133 * uuid: pointer to uuid_t storage that the caller must provide
136 int getuuidfromname( const char *name, uuidtype_t type, uuidp_t uuid) { argument
[all...]
H A Dcache.h22 * 1) name -> uuid, indexed by a hash(f(): hashstring) of the name
23 * 2) uuid -> name, indexed by a hash of the uuid(f(): hashuuid)
35 extern int search_cachebyname( const char *name, uuidtype_t *type, uuidp_t uuid);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-arm/mach/
H A Dsharpsl_param.h19 unsigned char uuid[16]; member in struct:sharpsl_param_info
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/libatalk/acl/
H A Daclldap.h18 #include <atalk/uuid.h> /* just for uuidtype_t*/
H A Dcache.c27 #include <atalk/uuid.h>
33 uuidp_t uuid; member in struct:cacheduser
41 cacheduser_t *uuidcache[256]; /* indexed by hash of uuid */
63 "namecache{%d}: name:%s, uuid:%s, type%s: %s, cached: %s",
66 uuid_bin2string(entry->uuid),
84 "uuidcache{%d}: uuid:%s, name:%s, type%s: %s, cached: %s",
86 uuid_bin2string(entry->uuid),
112 static unsigned char hashuuid(uuidp_t uuid) { argument
117 index ^= uuid[i];
118 index += uuid[
130 uuidp_t uuid = NULL; local
203 search_cachebyname(const char *name, uuidtype_t *type, uuidp_t uuid) argument
302 uuidp_t uuid = NULL; local
[all...]
H A DMakefile.am6 libacl_la_SOURCES = cache.c unix.c uuid.c
H A Duuid.c30 #include <atalk/uuid.h>
72 * convert ascii string that can include dashes to binary uuid.
75 void uuid_string2bin( const char *uuidstring, uuidp_t uuid) { argument
96 uuid[i++] = val + c;
105 * Convert 16 byte binary uuid to neat ascii represantation including dashes.
109 const char *uuid_bin2string(unsigned char *uuid) { argument
122 LOG(log_debug, logtype_afpd, "uuid_bin2string{uuid}: mask: %s", uuidmask);
125 c = *uuid;
126 uuid++;
143 * uuid
146 getuuidfromname( const char *name, uuidtype_t type, uuidp_t uuid) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/bin/misc/
H A Duuidtest.c31 #include <atalk/uuid.h>
75 atalk_uuid_t uuid; local
96 ret = getuuidfromname( optarg, UUID_USER, uuid);
98 printf("User: %s ==> UUID: %s\n", optarg, uuid_bin2string(uuid));
109 ret = getuuidfromname( optarg, UUID_GROUP, uuid);
111 printf("Group: %s ==> UUID: %s\n", optarg, uuid_bin2string(uuid));
121 printf("Searching uuid: %s\n", optarg);
122 uuid_string2bin(optarg, uuid);
123 ret = getnamefromuuid( uuid, &name, &type);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/bin/misc/
H A Duuidtest.c31 #include <atalk/uuid.h>
75 atalk_uuid_t uuid; local
96 ret = getuuidfromname( optarg, UUID_USER, uuid);
98 printf("User: %s ==> UUID: %s\n", optarg, uuid_bin2string(uuid));
109 ret = getuuidfromname( optarg, UUID_GROUP, uuid);
111 printf("Group: %s ==> UUID: %s\n", optarg, uuid_bin2string(uuid));
121 printf("Searching uuid: %s\n", optarg);
122 uuid_string2bin(optarg, uuid);
123 ret = getnamefromuuid( uuid, &name, &type);

Completed in 318 milliseconds

123456