HomeSort by: relevance | last modified time | path
    Searched defs:store (Results 1 - 25 of 54) sorted by relevancy

1 2 3

  /src/sys/kern/
kern_uuid.c 68 struct uuid *store, tmp; local in function:sys_uuidgen
81 for (store = SCARG(uap,store), count = SCARG(uap,count);
83 store++, count--) {
85 error = copyout(&tmp, store, sizeof tmp);
94 uuidgen(struct uuid *store, int count)
98 uuid_generate(store++);
kern_uuid.c 68 struct uuid *store, tmp; local in function:sys_uuidgen
81 for (store = SCARG(uap,store), count = SCARG(uap,count);
83 store++, count--) {
85 error = copyout(&tmp, store, sizeof tmp);
94 uuidgen(struct uuid *store, int count)
98 uuid_generate(store++);
  /src/tests/rump/kernspace/
alloc.c 48 static void *store[32]; variable in typeref:typename:void * [32]
72 for (i = 0; i < __arraycount(store); i++) {
73 pool_put(&pp1, store[i]);
95 for (i = 0; i < __arraycount(store); i++) {
96 store[i] = pool_get(&pp1, PR_NOWAIT);
97 if (store[i] == NULL) {
98 panic("pool_get store failed");
alloc.c 48 static void *store[32]; variable in typeref:typename:void * [32]
72 for (i = 0; i < __arraycount(store); i++) {
73 pool_put(&pp1, store[i]);
95 for (i = 0; i < __arraycount(store); i++) {
96 store[i] = pool_get(&pp1, PR_NOWAIT);
97 if (store[i] == NULL) {
98 panic("pool_get store failed");
  /src/usr.bin/uuidgen/
uuidgen.c 80 uuid_t *store, *uuid; local in function:main
124 store = (uuid_t*)malloc(sizeof(uuid_t) * count);
125 if (store == NULL)
130 if (uuidgen(store, count) != 0)
133 uuid = store;
140 uuid = store;
181 free(store);
uuidgen.c 80 uuid_t *store, *uuid; local in function:main
124 store = (uuid_t*)malloc(sizeof(uuid_t) * count);
125 if (store == NULL)
130 if (uuidgen(store, count) != 0)
133 uuid = store;
140 uuid = store;
181 free(store);
  /src/usr.sbin/ypserv/revnetgroup/
hash.c 140 * Store an entry in the main netgroup hash table. Here's how this
157 store(struct group_entry *table[], const char *key, const char *data) function in typeref:typename:void
174 * Store a group member entry and/or update its grouplist. This is
hash.c 140 * Store an entry in the main netgroup hash table. Here's how this
157 store(struct group_entry *table[], const char *key, const char *data) function in typeref:typename:void
174 * Store a group member entry and/or update its grouplist. This is
  /src/tests/usr.sbin/inetd/
test_server.c 129 struct iovec store = { local in function:dgram_wait_service
136 .msg_iov = &store,
test_server.c 129 struct iovec store = { local in function:dgram_wait_service
136 .msg_iov = &store,
  /src/usr.sbin/services_mkdb/
output_db.c 67 static void store(DBT *, DBT *, int);
105 store(&data, &key, warndup);
110 store(&key, &data, warndup);
114 store(&key, &data, warndup);
121 store(&key, &data, warndup);
125 store(&key, &data, warndup);
142 store(DBT *key, DBT *data, int warndup) function in typeref:typename:void
147 (void)printf("store [%*.*s] [%*.*s]\n",
output_db.c 67 static void store(DBT *, DBT *, int);
105 store(&data, &key, warndup);
110 store(&key, &data, warndup);
114 store(&key, &data, warndup);
121 store(&key, &data, warndup);
125 store(&key, &data, warndup);
142 store(DBT *key, DBT *data, int warndup) function in typeref:typename:void
147 (void)printf("store [%*.*s] [%*.*s]\n",
  /src/sys/dev/
midictl.h 159 midictl_store *store; member in struct:__anona7dcc7c50208
midictl.h 159 midictl_store *store; member in struct:__anona7dcc7c50208
  /src/games/hack/
makedefs.c 301 int store = (inbraces || inparens) local in function:getentry
306 if (store && sp < string + STRSZ)
309 if (store)
makedefs.c 301 int store = (inbraces || inparens) local in function:getentry
306 if (store && sp < string + STRSZ)
309 if (store)
  /src/sys/external/bsd/compiler_rt/dist/lib/msan/
msan_chained_origin_depot.cc 78 void store(const args_type &args, u32 other_hash) { function in struct:__msan::ChainedOriginDepotNode
msan_chained_origin_depot.cc 78 void store(const args_type &args, u32 other_hash) { function in struct:__msan::ChainedOriginDepotNode
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/gpio/
hw_gpio.h 104 } store; member in struct:hw_gpio
hw_gpio.h 104 } store; member in struct:hw_gpio
  /src/usr.bin/nbsvtool/
nbsvtool.c 63 * Create a detach PEM signature of file `infile' and store it in
111 X509_STORE *store; local in function:verify_file
118 store = X509_STORE_new();
119 if (store == NULL)
120 err(1, "Failed to create store");
122 X509_STORE_load_locations(store, anchor, NULL);
138 ret = PKCS7_verify(p7, cert_chain, store, in, NULL, 0);
nbsvtool.c 63 * Create a detach PEM signature of file `infile' and store it in
111 X509_STORE *store; local in function:verify_file
118 store = X509_STORE_new();
119 if (store == NULL)
120 err(1, "Failed to create store");
122 X509_STORE_load_locations(store, anchor, NULL);
138 ret = PKCS7_verify(p7, cert_chain, store, in, NULL, 0);
  /src/common/lib/libutil/
snprintb.c 72 store(state *s, char c) function in typeref:typename:void
96 store(s, '#');
98 store(s, '\0');
109 store(s, ',');
111 store(s, '<');
123 store(s, '>');
143 store(s, *s->bitfmt);
176 store(s, s->bitfmt[-1]);
200 store(s, s->bitfmt[-1]);
201 store(s, '=')
    [all...]
snprintb.c 72 store(state *s, char c) function in typeref:typename:void
96 store(s, '#');
98 store(s, '\0');
109 store(s, ',');
111 store(s, '<');
123 store(s, '>');
143 store(s, *s->bitfmt);
176 store(s, s->bitfmt[-1]);
200 store(s, s->bitfmt[-1]);
201 store(s, '=')
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_stackdepot.cc 31 // We use these bits to store the per-stack use counter.
74 void store(const args_type &args, u32 hash) { function in struct:__sanitizer::StackDepotNode

Completed in 30 milliseconds

1 2 3