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

/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...]
/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);
/xnu-2422.115.4/bsd/miscfs/devfs/
H A Ddevfs_fdesc_support.c354 uthread_t uu; local
360 uu = get_bsdthread_info(thr);
365 * XXX Kludge: set uu->uu_dupfd to contain the value of the
372 uu->uu_dupfd = VTOFDESC(vp)->fd_fd; /* XXX */
/xnu-2422.115.4/bsd/vfs/
H A Dvfs_syscalls.c3015 uthread_t uu = get_bsdthread_info(vfs_context_thread(ctx)); local
3038 uu->uu_dupfd = -indx - 1;
3060 if ((error == ENODEV || error == ENXIO) && (uu->uu_dupfd >= 0)){ /* XXX from fdopen */
3061 if ((error = dupfdopen(p->p_fd, indx, uu->uu_dupfd, flags, error)) == 0) {
3087 uu->uu_dupfd = 0;

Completed in 40 milliseconds