Searched refs:fdctx (Results 1 – 2 of 2) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
| H A D | tsan_fd.cpp | 49 static FdContext fdctx; variable 72 CHECK_NE(s, &fdctx.globsync); in unref() 73 CHECK_NE(s, &fdctx.filesync); in unref() 74 CHECK_NE(s, &fdctx.socksync); in unref() 120 d->sync = &fdctx.globsync; in init() 257 init(thr, pc, fd, &fdctx.filesync); in FdFileCreate() 336 init(thr, pc, fd, &fdctx.socksync); in FdSocketCreate() 344 Acquire(thr, pc, (uptr)&fdctx.connectsync); in FdSocketAccept() 345 init(thr, pc, newfd, &fdctx.socksync); in FdSocketAccept() 353 Release(thr, pc, (uptr)&fdctx.connectsync); in FdSocketConnecting() [all …]
|
| /freebsd-14.2/bin/sh/ |
| H A D | miscbltin.c | 68 struct fdctx { struct 76 static void fdctx_init(int, struct fdctx *); argument 77 static void fdctx_destroy(struct fdctx *); 84 fdctx_init(int fd, struct fdctx *fdc) in fdctx_init() 90 *fdc = (struct fdctx){ in fdctx_init() 98 fdgetc(struct fdctx *fdc, char *c) in fdgetc() 116 fdctx_destroy(struct fdctx *fdc) in fdctx_destroy() 176 struct fdctx fdctx; in readcmd() local 244 fdctx_init(STDIN_FILENO, &fdctx); in readcmd() 247 nread = fdgetc(&fdctx, &c); in readcmd() [all …]
|