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

12345678

/freebsd-10.0-release/sys/sys/
H A Duuid.h44 struct uuid { struct
59 struct uuid *kern_uuidgen(struct uuid *, size_t);
64 int snprintf_uuid(char *, size_t, struct uuid *);
65 int printf_uuid(struct uuid *);
66 int sbuf_printf_uuid(struct sbuf *, struct uuid *);
67 int parse_uuid(const char *, struct uuid *);
69 void be_uuid_dec(void const *buf, struct uuid *uuid);
70 void be_uuid_enc(void *buf, struct uuid cons
[all...]
/freebsd-10.0-release/lib/libc/uuid/
H A Duuid_stream.c33 #include <uuid.h>
56 uuid_enc_le(void *buf, const uuid_t *uuid) argument
61 le32enc(p, uuid->time_low);
62 le16enc(p + 4, uuid->time_mid);
63 le16enc(p + 6, uuid->time_hi_and_version);
64 p[8] = uuid->clock_seq_hi_and_reserved;
65 p[9] = uuid->clock_seq_low;
67 p[10 + i] = uuid->node[i];
71 uuid_dec_le(const void *buf, uuid_t *uuid) argument
76 uuid
86 uuid_enc_be(void *buf, const uuid_t *uuid) argument
101 uuid_dec_be(const void *buf, uuid_t *uuid) argument
[all...]
H A Duuid_create.c30 #include <uuid.h>
H A Duuid_create_nil.c31 #include <uuid.h>
H A Duuid_hash.c30 #include <uuid.h>
H A Duuid_equal.c31 #include <uuid.h>
H A Duuid_is_nil.c30 #include <uuid.h>
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_fs_base/
H A Duuid.c0 /* uuid.c : operations on repository uuids
27 #include "uuid.h"
37 const char **uuid; member in struct:get_uuid_args
45 return svn_fs_bdb__get_uuid(trail->fs, args->idx, args->uuid,
59 const char *uuid; local
63 args.uuid = &uuid;
67 if (uuid)
70 fs->uuid = apr_pstrdup(fs->pool, uuid);
81 const char *uuid; member in struct:set_uuid_args
95 svn_fs_base__set_uuid(svn_fs_t *fs, const char *uuid, apr_pool_t *pool) argument
[all...]
H A Duuid.h0 /* uuid.h : internal interface to uuid functions
42 svn_error_t *svn_fs_base__set_uuid(svn_fs_t *fs, const char *uuid,
/freebsd-10.0-release/contrib/apr-util/test/
H A Dtestuuid.c23 apr_uuid_t uuid; local
27 apr_uuid_get(&uuid);
28 apr_uuid_format(buf, &uuid);
32 memcmp(&uuid, &uuid2, sizeof(uuid)) == 0);
37 apr_uuid_t uuid; local
41 apr_uuid_get(&uuid);
45 memcmp(&uuid, &uuid2, sizeof(uuid)) != 0);
/freebsd-10.0-release/etc/rc.d/
H A Dhostid45 uuid=$1
46 # Generate hostid based on hostuuid - take first four bytes from md5(uuid).
47 id=`echo -n $uuid | /sbin/md5`
52 check_startmsgs && echo "Setting hostuuid: ${uuid}."
53 ${SYSCTL} kern.hostuuid="${uuid}" >/dev/null
60 uuid=`kenv -q smbios.system.uuid`
63 case "${uuid}" in
65 echo "${uuid}"
73 uuid
[all...]
/freebsd-10.0-release/contrib/apr-util/include/
H A Dapr_uuid.h51 * @param uuid The resulting UUID
53 APU_DECLARE(void) apr_uuid_get(apr_uuid_t *uuid); variable
60 * @param uuid The UUID to format
62 APU_DECLARE(void) apr_uuid_format(char *buffer, const apr_uuid_t *uuid);
66 * @param uuid The resulting UUID
69 APU_DECLARE(apr_status_t) apr_uuid_parse(apr_uuid_t *uuid, const char *uuid_str);
/freebsd-10.0-release/sys/boot/common/
H A Dgpt.h32 #include <uuid.h>
35 int gptread(const uuid_t *uuid, struct dsk *dskp, char *buf);
36 int gptfind(const uuid_t *uuid, struct dsk *dskp, int part);
/freebsd-10.0-release/sys/kern/
H A Dkern_uuid.c40 #include <sys/uuid.h>
56 CTASSERT(sizeof(struct uuid) == 16);
129 struct uuid *
130 kern_uuidgen(struct uuid *store, size_t count)
132 struct uuid_private uuid; local
138 uuid_node(uuid.node);
141 if (uuid_last.time.ll == 0LL || uuid_last.node[0] != uuid.node[0] ||
142 uuid_last.node[1] != uuid.node[1] ||
143 uuid_last.node[2] != uuid.node[2])
144 uuid
271 snprintf_uuid(char *buf, size_t sz, struct uuid *uuid) argument
284 printf_uuid(struct uuid *uuid) argument
293 sbuf_printf_uuid(struct sbuf *sb, struct uuid *uuid) argument
319 le_uuid_enc(void *buf, struct uuid const *uuid) argument
335 le_uuid_dec(void const *buf, struct uuid *uuid) argument
351 be_uuid_enc(void *buf, struct uuid const *uuid) argument
367 be_uuid_dec(void const *buf, struct uuid *uuid) argument
383 parse_uuid(const char *str, struct uuid *uuid) argument
[all...]
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_fs_base/bdb/
H A Duuids-table.h49 * storing the result in @a *uuid.
53 const char **uuid,
58 * to @a uuid.
62 const char *uuid,
H A Duuids-table.c40 When the table is created, the repository's uuid is
74 apr_uuid_t uuid;
87 apr_uuid_get(&uuid);
88 apr_uuid_format(buffer, &uuid);
99 const char **uuid,
120 SVN_ERR(BDB_WRAP(fs, N_("get repository uuid"),
123 *uuid = apr_pstrmemdup(pool, value.data, value.size);
130 const char *uuid,
144 value.size = (u_int32_t) strlen(uuid);
145 value.data = apr_pstrmemdup(pool, uuid, valu
73 apr_uuid_t uuid; local
96 svn_fs_bdb__get_uuid(svn_fs_t *fs, int idx, const char **uuid, trail_t *trail, apr_pool_t *pool) argument
127 svn_fs_bdb__set_uuid(svn_fs_t *fs, int idx, const char *uuid, trail_t *trail, apr_pool_t *pool) argument
[all...]
/freebsd-10.0-release/usr.sbin/bluetooth/sdpd/
H A Dssar.c39 #include "uuid-private.h"
63 uint128_t uuid, puuid; local
182 memcpy(&uuid, &uuid_base, sizeof(uuid));
183 uuid.b[2] = *sspptr ++;
184 uuid.b[3] = *sspptr ++;
192 memcpy(&uuid, &uuid_base, sizeof(uuid));
193 uuid.b[0] = *sspptr ++;
194 uuid
[all...]
H A Dssr.c44 #include "uuid-private.h"
61 uint128_t uuid, puuid; local
150 memcpy(&uuid, &uuid_base, sizeof(uuid));
151 uuid.b[2] = *req ++;
152 uuid.b[3] = *req ++;
160 memcpy(&uuid, &uuid_base, sizeof(uuid));
161 uuid.b[0] = *req ++;
162 uuid
[all...]
/freebsd-10.0-release/contrib/wpa/src/utils/
H A Duuid.h16 int is_nil_uuid(const u8 *uuid);
/freebsd-10.0-release/usr.sbin/bluetooth/btpand/
H A Dsdp.c52 * _sdp_match_uuid16(ptr, limit, uuid)
59 _sdp_match_uuid16(uint8_t **ptr, uint8_t *limit, uint16_t uuid) argument
65 u1.time_low = uuid;
76 * _sdp_get_uuid(ptr, limit, uuid)
83 _sdp_get_uuid(uint8_t **ptr, uint8_t *limit, uuid_t *uuid) argument
95 memcpy(uuid, &BASE_UUID, sizeof(uuid_t));
96 uuid->time_low = be16dec(p);
104 memcpy(uuid, &BASE_UUID, sizeof(uuid_t));
105 uuid->time_low = be32dec(p);
113 uuid_dec_be(p, uuid);
[all...]
H A Dsdp.h33 #include <uuid.h>
/freebsd-10.0-release/bin/uuidgen/
H A Duuidgen.c35 #include <uuid.h>
48 uuid_t *store, *uuid; local
95 uuid = store;
97 if (uuidgen(uuid++, 1) != 0)
102 uuid = store;
104 uuid_to_string(uuid++, &p, NULL);
/freebsd-10.0-release/sys/ia64/include/
H A Diodev.h32 #include <sys/uuid.h>
47 struct uuid vendor;
H A Defi.h32 #include <sys/uuid.h>
52 struct uuid ct_uuid;
126 efi_status (*rt_getvar)(efi_char *, struct uuid *, uint32_t *,
128 efi_status (*rt_scanvar)(u_long *, efi_char *, struct uuid *);
129 efi_status (*rt_setvar)(efi_char *, struct uuid *, uint32_t,
162 void *efi_get_table(struct uuid *);
171 int efi_var_get(efi_char *, struct uuid *, uint32_t *, size_t *, void *);
172 int efi_var_nextname(size_t *, efi_char *, struct uuid *);
173 int efi_var_set(efi_char *, struct uuid *, uint32_t, size_t, void *);
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_ra_local/
H A Dra_local.h61 const char *uuid;
60 const char *uuid; member in struct:svn_ra_local__session_baton_t

Completed in 198 milliseconds

12345678