Searched refs:uu (Results 1 - 25 of 66) sorted by relevance

123

/macosx-10.9.5/Libc-997.90.3/uuid/uuidsrc/
H A Dclear.c39 void uuid_clear(uuid_t uu) argument
41 memset(uu, 0, 16);
H A Disnull.c38 int uuid_is_null(const uuid_t uu) argument
43 for (i=0, cp = uu; i < 16; i++)
H A Dpack.c38 void uuid_pack(const struct uuid *uu, uuid_t ptr) argument
43 tmp = uu->time_low;
52 tmp = uu->time_mid;
57 tmp = uu->time_hi_and_version;
62 tmp = uu->clock_seq;
67 memcpy(out+10, uu->node, 6);
H A Dunpack.c38 void uuid_unpack(const uuid_t in, struct uuid *uu) argument
47 uu->time_low = tmp;
51 uu->time_mid = tmp;
55 uu->time_hi_and_version = tmp;
59 uu->clock_seq = tmp;
61 memcpy(uu->node, ptr, 6);
H A Dunparse.c51 static void uuid_unparse_x(const uuid_t uu, char *out, const char *fmt) argument
53 const uint8_t *uuid_array = (const uint8_t *)uu;
73 void uuid_unparse_lower(const uuid_t uu, char *out) argument
75 uuid_unparse_x(uu, out, fmt_lower);
78 void uuid_unparse_upper(const uuid_t uu, char *out) argument
80 uuid_unparse_x(uu, out, fmt_upper);
83 void uuid_unparse(const uuid_t uu, char *out) argument
85 uuid_unparse_x(uu, out, FMT_DEFAULT);
H A DuuidP.h73 void uuid_pack(const struct uuid *uu, uuid_t ptr);
74 void uuid_unpack(const uuid_t in, struct uuid *uu);
76 time_t uuid_time(const uuid_t uu, struct timeval *ret_tv);
77 int uuid_type(const uuid_t uu);
78 int uuid_variant(const uuid_t uu);
H A Dgen_uuid.c215 struct uuid uu; local
230 get_clock(&clock_mid, &uu.time_low, &uu.clock_seq);
231 uu.clock_seq |= 0x8000;
232 uu.time_mid = (uint16_t) clock_mid;
233 uu.time_hi_and_version = ((clock_mid >> 16) & 0x0FFF) | 0x1000;
234 memcpy(uu.node, node_id, 6);
235 uuid_pack(&uu, out);
241 struct uuid uu; local
244 uuid_unpack(buf, &uu);
[all...]
H A Dparse.c42 int uuid_parse(const char *in, uuid_t uu) argument
77 uuid_pack(&uuid, uu);
/macosx-10.9.5/xnu-2422.115.4/libkern/uuid/
H A Duuid.c70 uuid_clear(uuid_t uu) argument
72 memset(uu, 0, sizeof(uuid_t));
125 uuid_is_null(const uuid_t uu) argument
127 return !memcmp(uu, UUID_NULL, sizeof(uuid_t));
131 uuid_parse(const uuid_string_t in, uuid_t uu) argument
141 &uu[0], &uu[1], &uu[2], &uu[3],
142 &uu[
151 uuid_unparse_lower(const uuid_t uu, uuid_string_t out) argument
168 uuid_unparse_upper(const uuid_t uu, uuid_string_t out) argument
185 uuid_unparse(const uuid_t uu, uuid_string_t out) argument
[all...]
/macosx-10.9.5/Libinfo-449.1.3/membership.subproj/
H A Dmembership.h126 @param uu is the UUID found for the provided UID
129 int mbr_uid_to_uuid(uid_t uid, uuid_t uu);
142 @param uu is the UUID found for the provided GID
145 int mbr_gid_to_uuid(gid_t gid, uuid_t uu);
153 @param uu is the UUID found for the provided GID
156 int mbr_sid_to_uuid(const nt_sid_t* sid, uuid_t uu);
167 @param uu is the UUID found for the identifier
171 uuid_t uu);
182 @param uu is the UUID to be resolved
187 int mbr_uuid_to_id(const uuid_t uu, id_
[all...]
H A DmembershipPriv.h46 int mbr_user_name_to_uuid(const char *name, uuid_t uu);
47 int mbr_group_name_to_uuid(const char *name, uuid_t uu);
52 int mbr_uuid_to_string(const uuid_t uu, char *string) __OSX_AVAILABLE_BUT_DEPRECATED(__MAC_10_4, __MAC_10_8, __IPHONE_NA, __IPHONE_NA);
55 int mbr_string_to_uuid(const char *string, uuid_t uu) __OSX_AVAILABLE_BUT_DEPRECATED(__MAC_10_4, __MAC_10_8, __IPHONE_NA, __IPHONE_NA);
57 int mbr_uuid_to_sid_type(const uuid_t uu, nt_sid_t *sid, int *id_type);
H A Dmembership.c180 const uint8_t *uu = identifier; local
184 if (memcmp(uu, _user_compat_prefix, COMPAT_PREFIX_LEN) == 0) {
186 memcpy(&tempID, &uu[COMPAT_PREFIX_LEN], sizeof(tempID));
193 } else if (memcmp(uu, _group_compat_prefix, COMPAT_PREFIX_LEN) == 0) {
195 memcpy(&tempID, &uu[COMPAT_PREFIX_LEN], sizeof(tempID));
286 mbr_uid_to_uuid(uid_t id, uuid_t uu) argument
288 return mbr_identifier_to_uuid(ID_TYPE_UID, &id, sizeof(id), uu);
292 mbr_gid_to_uuid(gid_t id, uuid_t uu) argument
294 return mbr_identifier_to_uuid(ID_TYPE_GID, &id, sizeof(id), uu);
298 mbr_uuid_to_id(const uuid_t uu, uid_ argument
328 mbr_sid_to_uuid(const nt_sid_t *sid, uuid_t uu) argument
338 mbr_identifier_to_uuid(int id_type, const void *identifier, size_t identifier_size, uuid_t uu) argument
353 mbr_uuid_to_sid_type(const uuid_t uu, nt_sid_t *sid, int *id_type) argument
389 mbr_uuid_to_sid(const uuid_t uu, nt_sid_t *sid) argument
491 mbr_user_name_to_uuid(const char *name, uuid_t uu) argument
497 mbr_group_name_to_uuid(const char *name, uuid_t uu) argument
639 mbr_uuid_to_string(const uuid_t uu, char *string) argument
647 mbr_string_to_uuid(const char *string, uuid_t uu) argument
[all...]
/macosx-10.9.5/CPANInternal-140/URI/t/
H A Dmix.t15 $uu = URI::URL->new($str);
25 $c = URI->new($rel, $uu);
31 ref($c) eq ref($uu) &&
40 $c = URI::URL->new($rel, $uu);
51 ref($c->base) eq ref($uu) &&
52 $c->base eq $uu &&
58 $a = URI->new($uu, $u);
59 $b = URI->new($uu, $uw);
60 $c = URI->new($uu, $uu);
[all...]
/macosx-10.9.5/xnu-2422.115.4/bsd/uuid/
H A Duuid.h53 void uuid_clear(uuid_t uu);
63 int uuid_is_null(const uuid_t uu);
65 int uuid_parse(const uuid_string_t in, uuid_t uu);
67 void uuid_unparse(const uuid_t uu, uuid_string_t out);
68 void uuid_unparse_lower(const uuid_t uu, uuid_string_t out);
69 void uuid_unparse_upper(const uuid_t uu, uuid_string_t out);
/macosx-10.9.5/tcl-102/tcl_ext/expect/expect/example/
H A Dftp-rfc18 spawn ftp ftp.uu.net
/macosx-10.9.5/keymgr-28/testcases/
H A Drun-tests.sh16 uudecode -o $i ${i}.uu || echo "uudecode failed for $i"
28 uudecode -o $i ${i}.uu || echo "uudecode failed for $i"
/macosx-10.9.5/libarchive-29/libarchive/
H A DMakefile.am343 libarchive/test/test_compat_bzip2_1.tbz.uu \
344 libarchive/test/test_compat_bzip2_2.tbz.uu \
345 libarchive/test/test_compat_cpio_1.cpio.uu \
346 libarchive/test/test_compat_gtar_1.tar.uu \
347 libarchive/test/test_compat_gzip_1.tgz.uu \
348 libarchive/test/test_compat_gzip_2.tgz.uu \
349 libarchive/test/test_compat_lzma_1.tlz.uu \
350 libarchive/test/test_compat_lzma_2.tlz.uu \
351 libarchive/test/test_compat_lzma_3.tlz.uu \
352 libarchive/test/test_compat_solaris_tar_acl.tar.uu \
[all...]
/macosx-10.9.5/Libc-997.90.3/stdio/FreeBSD/
H A Dxprintf_int.c278 uintmax_t uu; local
338 uu = -argp->intmaxarg;
341 uu = argp->uintmaxarg;
344 uu = (u_long)-argp->longarg;
347 uu = argp->ulongarg;
350 uu = -(short)argp->intarg;
353 uu = (unsigned short)argp->uintarg;
356 uu = -(signed char)argp->intarg;
359 uu = (unsigned char)argp->uintarg;
362 uu
[all...]
/macosx-10.9.5/IOStorageFamily-172/
H A DIOGUIDPartitionScheme.cpp66 static void uuid_unswap(uuid_t uu) argument
70 tmp = uu[0]; uu[0] = uu[3]; uu[3] = tmp;
71 tmp = uu[2]; uu[2] = uu[1]; uu[1] = tmp;
72 tmp = uu[
[all...]
/macosx-10.9.5/Libc-997.90.3/posix1e/
H A Dacl_translate.c279 uuid_to_name(uuid_t *uu, uid_t *id, int *isgid) argument
284 if (0 == mbr_uuid_to_id(*uu, id, isgid))
311 uuid_t *uu = NULL; local
407 if(uu)
408 bzero(uu, sizeof(uuid_t));
409 else if((uu = calloc(1, sizeof(uuid_t))) == NULL)
446 uuid_parse(field, *uu);
457 if (mbr_uid_to_uuid(tpass->pw_uid, *uu) != 0)
465 if (mbr_gid_to_uuid(tgrp->gr_gid, *uu) != 0)
494 if (mbr_uid_to_uuid(tpass->pw_uid, *uu) !
643 uuid_t *uu; local
[all...]
/macosx-10.9.5/bash-92/bash-3.2/examples/scripts.v2/
H A Duuenc42 SUF=uu
/macosx-10.9.5/groff-38/groff/src/libs/libgroff/
H A Derrarg.cpp40 errarg::errarg(unsigned int uu) : type(UNSIGNED_INTEGER) argument
42 u = uu;
/macosx-10.9.5/screen-22/screen/
H A Dacls.c693 * uu should be NULL, except if you want to change his umask.
696 AclSetPermWin(uu, u, mode, win)
697 struct acluser *u, *uu;
706 if (uu)
708 debug3("AclSetPermWin %s UMASK %s %s\n", uu->u_name, u->u_name, mode);
709 bitarray = uu->u_umask_w_bits;
751 if (!uu && (win->w_wlockuser == u) && neg && (bit == ACL_WRITE))
760 if (uu && u->u_name[0] == '?' && u->u_name[1] == '\0')
793 * uu should be NULL, except if you want to change his umask.
796 AclSetPerm(uu,
[all...]
/macosx-10.9.5/smb-697.95.1/smbutil/
H A Didentity.c86 uuid_t uu; local
89 error = mbr_uid_to_uuid(geteuid(), uu);
91 error = mbr_uuid_to_sid(uu, sid);
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/libraries/liblutil/
H A Duuid.c277 uuid_t uu = {0}; local
282 uuid_create( &uu, &rc );
287 uuid_to_str( &uu, &s, &rc );
304 uuid_t uu;
306 uuid_generate( uu );
307 uuid_unparse_lower( uu, buf );

Completed in 444 milliseconds

123