Searched refs:reader (Results 1 - 25 of 88) sorted by relevance

1234

/freebsd-current/sys/contrib/ck/include/
H A Dck_brlock.h31 * Big reader spinlocks provide cache-local contention-free read
38 * of larger reader objects due to necessary linkage overhead. In
88 /* The reader list is protected under the writer br. */
142 ck_brlock_read_register(struct ck_brlock *br, struct ck_brlock_reader *reader) argument
145 reader->n_readers = 0;
146 reader->previous = NULL;
151 reader->next = ck_pr_load_ptr(&br->readers);
152 if (reader->next != NULL)
153 reader->next->previous = reader;
161 ck_brlock_read_unregister(struct ck_brlock *br, struct ck_brlock_reader *reader) argument
179 ck_brlock_read_lock(struct ck_brlock *br, struct ck_brlock_reader *reader) argument
220 ck_brlock_read_trylock(struct ck_brlock *br, struct ck_brlock_reader *reader, unsigned int factor) argument
271 ck_brlock_read_unlock(struct ck_brlock_reader *reader) argument
[all...]
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/
H A Dtst.ZeroFunctionProbes.d.ksh42 reader() function
58 reader &
H A Dtst.DestructWithFunction.d.ksh41 reader() function
57 reader &
/freebsd-current/contrib/lua/src/
H A Dlzio.c28 buff = z->reader(L, z->data, &size);
38 void luaZ_init (lua_State *L, ZIO *z, lua_Reader reader, void *data) { argument
40 z->reader = reader;
H A Dlzio.h47 LUAI_FUNC void luaZ_init (lua_State *L, ZIO *z, lua_Reader reader,
58 lua_Reader reader; /* reader function */ member in struct:Zio
60 lua_State *L; /* Lua state (for reader) */
/freebsd-current/sys/contrib/openzfs/module/lua/
H A Dlzio.c24 buff = z->reader(L, z->data, &size);
34 void luaZ_init (lua_State *L, ZIO *z, lua_Reader reader, void *data) { argument
36 z->reader = reader;
H A Dlzio.h46 LUAI_FUNC void luaZ_init (lua_State *L, ZIO *z, lua_Reader reader,
57 lua_Reader reader; /* reader function */ member in struct:Zio
59 lua_State *L; /* Lua state (for reader) */
/freebsd-current/tools/test/stress2/testcases/socket/
H A Dsocket.c49 reader(void) { function
110 reader();
/freebsd-current/contrib/libfido2/src/
H A Dpcsc.c76 char *reader = NULL, *buf = NULL; local
94 reader = strdup(name);
99 fido_log_debug("%s: failed to find reader %s", __func__, path);
103 return reader;
128 copy_info(fido_dev_info_t *di, SCARDCONTEXT ctx, const char *reader, size_t idx) argument
139 if ((s = SCardConnect(ctx, reader, SCARD_SHARE_SHARED,
158 (di->product = strdup(reader)) == NULL)
242 char *reader = NULL; local
259 if ((reader = get_reader(ctx, path)) == NULL) {
263 if ((s = SCardConnect(ctx, reader, SCARD_SHARE_SHARE
[all...]
/freebsd-current/contrib/wpa/src/utils/
H A Dpcsc_funcs.h13 struct scard_data * scard_init(const char *reader);
/freebsd-current/crypto/openssl/apps/lib/
H A Dapps_ui.c29 int (*reader)(UI *ui, UI_STRING *uis) = NULL;
54 reader = UI_method_get_reader(ui_base_method);
55 if (reader != NULL)
56 return reader(ui, uis);
/freebsd-current/usr.bin/yacc/
H A DMakefile9 reader.c yaccpar.c symtab.c verbose.c warshall.c
/freebsd-current/contrib/byacc/
H A DMakefile.old22 reader.o \
39 reader.c \
80 reader.o: defs.h
/freebsd-current/contrib/sendmail/libsmutil/
H A Dt-lockfile.c339 "-R only start reader process\n"
340 "-r use shared locking for reader\n"
357 int ch, delay, r, status, flags, shared, nb, reader, writer; local
365 shared = nb = noio = reader = writer = chk = 0;
388 reader = 1;
411 if (0 == reader && 0 == writer && (fpid = fork()) < 0)
418 if (reader || fpid == 0)
/freebsd-current/tools/test/stress2/misc/
H A Dmkfifo6.sh77 reader(void)
147 reader(); function
H A Dnamecache.sh161 reader(void) {
204 reader(); function
H A Dmkfifo5.sh77 reader(void)
178 reader(); function
H A Dmkfifo7.sh78 reader(void)
167 reader(); function
H A Dsendfile3.sh86 reader(void) {
201 reader(); function
H A Dsendfile.sh76 reader(void) {
207 reader(); function
H A Doverlap.sh106 reader(void *arg __unused) {
151 if ((ret = pthread_create(&rp, NULL, reader, NULL)) != 0)
H A Djumbo.sh98 reader(void) {
103 setproctitle("reader - init");
133 setproctitle("reader");
212 reader(); function
/freebsd-current/tools/test/stress2/testcases/mkfifo/
H A Dmkfifo.c46 reader(void) { function
51 setproctitle("reader");
156 reader();
/freebsd-current/contrib/llvm-project/clang/lib/Serialization/
H A DModuleFile.cpp23 using namespace reader;
/freebsd-current/tools/test/stress2/testcases/tcp/
H A Dtcp.c51 reader(void) { function
178 reader();

Completed in 221 milliseconds

1234