bin/ps/fmt.c
101
fmt_argv(char **argv, char *cmd, char *thread, size_t maxlen)
bin/ps/fmt.c
119
if (thread != NULL) {
bin/ps/fmt.c
120
asprintf(&ap, "%s/%s", cmd, thread);
bin/ps/ps.c
1344
char *comm, char *thread, int maxlen)
bin/ps/ps.c
1349
showthreads && ki->ki_p->ki_numthreads > 1 ? thread : NULL, maxlen);
crypto/openssh/auth-pam.c
194
pthread_create(sp_pthread_t *thread, const void *attr,
crypto/openssh/auth-pam.c
211
*thread = pid;
crypto/openssh/auth-pam.c
220
pthread_cancel(sp_pthread_t thread)
crypto/openssh/auth-pam.c
223
return (kill(thread, SIGTERM));
crypto/openssh/auth-pam.c
228
pthread_join(sp_pthread_t thread, void **value)
crypto/openssh/auth-pam.c
235
while (waitpid(thread, &status, 0) == -1) {
crypto/openssl/crypto/thread/arch.c
100
ossl_crypto_condvar_signal(thread->condvar);
crypto/openssl/crypto/thread/arch.c
102
ossl_crypto_mutex_unlock(thread->statelock);
crypto/openssl/crypto/thread/arch.c
47
int ossl_crypto_thread_native_join(CRYPTO_THREAD *thread, CRYPTO_THREAD_RETVAL *retval)
crypto/openssl/crypto/thread/arch.c
51
if (thread == NULL)
crypto/openssl/crypto/thread/arch.c
54
ossl_crypto_mutex_lock(thread->statelock);
crypto/openssl/crypto/thread/arch.c
56
while (!CRYPTO_THREAD_GET_STATE(thread, req_state_mask))
crypto/openssl/crypto/thread/arch.c
57
ossl_crypto_condvar_wait(thread->condvar, thread->statelock);
crypto/openssl/crypto/thread/arch.c
59
if (CRYPTO_THREAD_GET_STATE(thread, CRYPTO_THREAD_JOINED))
crypto/openssl/crypto/thread/arch.c
63
while (CRYPTO_THREAD_GET_STATE(thread, CRYPTO_THREAD_JOIN_AWAIT)) {
crypto/openssl/crypto/thread/arch.c
64
if (!CRYPTO_THREAD_GET_STATE(thread, CRYPTO_THREAD_JOINED))
crypto/openssl/crypto/thread/arch.c
65
ossl_crypto_condvar_wait(thread->condvar, thread->statelock);
crypto/openssl/crypto/thread/arch.c
66
if (CRYPTO_THREAD_GET_STATE(thread, CRYPTO_THREAD_JOINED))
crypto/openssl/crypto/thread/arch.c
69
CRYPTO_THREAD_SET_STATE(thread, CRYPTO_THREAD_JOIN_AWAIT);
crypto/openssl/crypto/thread/arch.c
70
ossl_crypto_mutex_unlock(thread->statelock);
crypto/openssl/crypto/thread/arch.c
72
if (ossl_crypto_thread_native_perform_join(thread, retval) == 0)
crypto/openssl/crypto/thread/arch.c
75
ossl_crypto_mutex_lock(thread->statelock);
crypto/openssl/crypto/thread/arch.c
77
CRYPTO_THREAD_UNSET_ERROR(thread, CRYPTO_THREAD_JOINED);
crypto/openssl/crypto/thread/arch.c
78
CRYPTO_THREAD_SET_STATE(thread, CRYPTO_THREAD_JOINED);
crypto/openssl/crypto/thread/arch.c
86
ossl_crypto_condvar_signal(thread->condvar);
crypto/openssl/crypto/thread/arch.c
87
ossl_crypto_mutex_unlock(thread->statelock);
crypto/openssl/crypto/thread/arch.c
90
*retval = thread->retval;
crypto/openssl/crypto/thread/arch.c
94
ossl_crypto_mutex_lock(thread->statelock);
crypto/openssl/crypto/thread/arch.c
95
CRYPTO_THREAD_SET_ERROR(thread, CRYPTO_THREAD_JOINED);
crypto/openssl/crypto/thread/arch.c
99
CRYPTO_THREAD_UNSET_STATE(thread, CRYPTO_THREAD_JOIN_AWAIT);
crypto/openssl/crypto/thread/arch/thread_none.c
14
int ossl_crypto_thread_native_spawn(CRYPTO_THREAD *thread)
crypto/openssl/crypto/thread/arch/thread_none.c
19
int ossl_crypto_thread_native_perform_join(CRYPTO_THREAD *thread, CRYPTO_THREAD_RETVAL *retval)
crypto/openssl/crypto/thread/arch/thread_none.c
29
int ossl_crypto_thread_native_is_self(CRYPTO_THREAD *thread)
crypto/openssl/crypto/thread/arch/thread_posix.c
20
CRYPTO_THREAD *thread;
crypto/openssl/crypto/thread/arch/thread_posix.c
23
thread = (CRYPTO_THREAD *)vthread;
crypto/openssl/crypto/thread/arch/thread_posix.c
25
ret = thread->routine(thread->data);
crypto/openssl/crypto/thread/arch/thread_posix.c
26
ossl_crypto_mutex_lock(thread->statelock);
crypto/openssl/crypto/thread/arch/thread_posix.c
27
CRYPTO_THREAD_SET_STATE(thread, CRYPTO_THREAD_FINISHED);
crypto/openssl/crypto/thread/arch/thread_posix.c
28
thread->retval = ret;
crypto/openssl/crypto/thread/arch/thread_posix.c
29
ossl_crypto_condvar_broadcast(thread->condvar);
crypto/openssl/crypto/thread/arch/thread_posix.c
30
ossl_crypto_mutex_unlock(thread->statelock);
crypto/openssl/crypto/thread/arch/thread_posix.c
35
int ossl_crypto_thread_native_spawn(CRYPTO_THREAD *thread)
crypto/openssl/crypto/thread/arch/thread_posix.c
46
if (!thread->joinable)
crypto/openssl/crypto/thread/arch/thread_posix.c
48
ret = pthread_create(handle, &attr, thread_start_thunk, thread);
crypto/openssl/crypto/thread/arch/thread_posix.c
54
thread->handle = handle;
crypto/openssl/crypto/thread/arch/thread_posix.c
58
thread->handle = NULL;
crypto/openssl/crypto/thread/arch/thread_posix.c
63
int ossl_crypto_thread_native_perform_join(CRYPTO_THREAD *thread, CRYPTO_THREAD_RETVAL *retval)
crypto/openssl/crypto/thread/arch/thread_posix.c
68
if (thread == NULL || thread->handle == NULL)
crypto/openssl/crypto/thread/arch/thread_posix.c
71
handle = (pthread_t *)thread->handle;
crypto/openssl/crypto/thread/arch/thread_posix.c
91
int ossl_crypto_thread_native_is_self(CRYPTO_THREAD *thread)
crypto/openssl/crypto/thread/arch/thread_posix.c
93
return pthread_equal(*(pthread_t *)thread->handle, pthread_self());
crypto/openssl/crypto/thread/arch/thread_win.c
18
CRYPTO_THREAD *thread;
crypto/openssl/crypto/thread/arch/thread_win.c
21
thread = (CRYPTO_THREAD *)vthread;
crypto/openssl/crypto/thread/arch/thread_win.c
23
thread->thread_id = GetCurrentThreadId();
crypto/openssl/crypto/thread/arch/thread_win.c
25
ret = thread->routine(thread->data);
crypto/openssl/crypto/thread/arch/thread_win.c
26
ossl_crypto_mutex_lock(thread->statelock);
crypto/openssl/crypto/thread/arch/thread_win.c
27
CRYPTO_THREAD_SET_STATE(thread, CRYPTO_THREAD_FINISHED);
crypto/openssl/crypto/thread/arch/thread_win.c
28
thread->retval = ret;
crypto/openssl/crypto/thread/arch/thread_win.c
29
ossl_crypto_condvar_signal(thread->condvar);
crypto/openssl/crypto/thread/arch/thread_win.c
30
ossl_crypto_mutex_unlock(thread->statelock);
crypto/openssl/crypto/thread/arch/thread_win.c
35
int ossl_crypto_thread_native_spawn(CRYPTO_THREAD *thread)
crypto/openssl/crypto/thread/arch/thread_win.c
43
*handle = (HANDLE)_beginthreadex(NULL, 0, &thread_start_thunk, thread, 0, NULL);
crypto/openssl/crypto/thread/arch/thread_win.c
47
thread->handle = handle;
crypto/openssl/crypto/thread/arch/thread_win.c
51
thread->handle = NULL;
crypto/openssl/crypto/thread/arch/thread_win.c
56
int ossl_crypto_thread_native_perform_join(CRYPTO_THREAD *thread, CRYPTO_THREAD_RETVAL *retval)
crypto/openssl/crypto/thread/arch/thread_win.c
61
if (thread == NULL || thread->handle == NULL)
crypto/openssl/crypto/thread/arch/thread_win.c
64
handle = (HANDLE *)thread->handle;
crypto/openssl/crypto/thread/arch/thread_win.c
92
int ossl_crypto_thread_native_is_self(CRYPTO_THREAD *thread)
crypto/openssl/crypto/thread/arch/thread_win.c
94
return thread->thread_id == GetCurrentThreadId();
crypto/openssl/crypto/thread/internal.c
43
CRYPTO_THREAD *thread;
crypto/openssl/crypto/thread/internal.c
60
thread = ossl_crypto_thread_native_start(start, data, 1);
crypto/openssl/crypto/thread/internal.c
61
if (thread == NULL) {
crypto/openssl/crypto/thread/internal.c
67
thread->ctx = ctx;
crypto/openssl/crypto/thread/internal.c
70
return (void *)thread;
crypto/openssl/include/internal/thread_arch.h
117
int ossl_crypto_thread_native_spawn(CRYPTO_THREAD *thread);
crypto/openssl/include/internal/thread_arch.h
118
int ossl_crypto_thread_native_join(CRYPTO_THREAD *thread,
crypto/openssl/include/internal/thread_arch.h
120
int ossl_crypto_thread_native_perform_join(CRYPTO_THREAD *thread,
crypto/openssl/include/internal/thread_arch.h
123
int ossl_crypto_thread_native_is_self(CRYPTO_THREAD *thread);
crypto/openssl/include/internal/thread_arch.h
124
int ossl_crypto_thread_native_clean(CRYPTO_THREAD *thread);
crypto/openssl/test/drbgtest.c
720
static int wait_for_thread(thread_t thread)
crypto/openssl/test/drbgtest.c
722
return WaitForSingleObject(thread, INFINITE) == 0;
crypto/openssl/test/drbgtest.c
745
static int wait_for_thread(thread_t thread)
crypto/openssl/test/drbgtest.c
747
return pthread_join(thread, NULL) == 0;
crypto/openssl/test/threadstest.c
530
thread_t thread;
crypto/openssl/test/threadstest.c
532
if (!TEST_true(run_thread(&thread, once_run_thread_cb))
crypto/openssl/test/threadstest.c
533
|| !TEST_true(wait_for_thread(thread))
crypto/openssl/test/threadstest.c
575
thread_t thread;
crypto/openssl/test/threadstest.c
584
|| !TEST_true(run_thread(&thread, thread_local_thread_cb))
crypto/openssl/test/threadstest.c
585
|| !TEST_true(wait_for_thread(thread))
crypto/openssl/test/threadstest.h
27
static int wait_for_thread(thread_t thread)
crypto/openssl/test/threadstest.h
52
static int wait_for_thread(thread_t thread)
crypto/openssl/test/threadstest.h
54
return WaitForSingleObject(thread, INFINITE) == 0;
crypto/openssl/test/threadstest.h
77
static int wait_for_thread(thread_t thread)
crypto/openssl/test/threadstest.h
79
return pthread_join(thread, NULL) == 0;
crypto/openssl/test/threadstest_fips.c
30
thread_t thread;
crypto/openssl/test/threadstest_fips.c
34
if (!TEST_true(run_thread(&thread, thread_fips_rand_fetch)))
crypto/openssl/test/threadstest_fips.c
36
if (!TEST_true(wait_for_thread(thread)))
include/pthread.h
314
int pthread_sigqueue(pthread_t thread, int sig,
lib/libc/gen/_pthread_stubs.c
356
stub_getname_np(pthread_t thread, char *buf, size_t len)
lib/libc/gen/_pthread_stubs.c
358
if (thread != &main_thread)
lib/libc/tests/stdlib/cxa_thread_atexit_test.cc
108
std::thread t([]() { f.use(); });
lib/libc/tests/stdlib/cxa_thread_atexit_test.cc
128
std::thread t([]() { g.use(); });
lib/libc/tests/stdlib/cxa_thread_atexit_test.cc
150
std::thread t([]() { h.use(); });
lib/libc/tests/stdlib/cxa_thread_atexit_test.cc
170
std::thread t([]() { e.use(); });
lib/libcuse/cuse_lib.c
473
enter.thread = curr;
lib/libcuse/cuse_lib.c
506
if (pe->thread == curr)
lib/libcuse/cuse_lib.c
512
pthread_kill(pe->thread, SIGHUP);
lib/libcuse/cuse_lib.c
570
if (pe->thread == curr)
lib/libcuse/cuse_lib.c
576
pthread_kill(pe->thread, SIGHUP);
lib/libcuse/cuse_lib.c
607
if (pe->thread == curr)
lib/libcuse/cuse_lib.c
66
pthread_t thread;
lib/libkvm/kvm_proc.c
121
struct thread mtd;
lib/libkvm/kvm_proc.c
127
struct thread *td = NULL;
lib/libkvm/kvm_vnet.c
86
struct thread td;
lib/libthr/arch/aarch64/include/pthread_md.h
57
#define __thr_setup_tsd(thread) _tcb_set((thread)->tcb)
lib/libthr/arch/amd64/amd64/thr_machdep.c
21
__thr_setup_tsd(struct pthread *thread)
lib/libthr/arch/amd64/amd64/thr_machdep.c
27
amd64_set_tlsbase(thread->tcb);
lib/libthr/arch/amd64/amd64/thr_machdep.c
44
amd64_set_fsbase(thread->tcb);
lib/libthr/arch/amd64/amd64/thr_machdep.c
46
amd64_set_tlsbase(thread->tcb);
lib/libthr/arch/amd64/include/pthread_md.h
60
void __thr_setup_tsd(struct pthread *thread);
lib/libthr/arch/arm/include/pthread_md.h
51
#define __thr_setup_tsd(thread) _tcb_set((thread)->tcb)
lib/libthr/arch/i386/include/pthread_md.h
60
#define __thr_setup_tsd(thread) _tcb_set((thread)->tcb)
lib/libthr/arch/powerpc/include/pthread_md.h
57
#define __thr_setup_tsd(thread) _tcb_set((thread)->tcb)
lib/libthr/arch/riscv/include/pthread_md.h
64
#define __thr_setup_tsd(thread) _tcb_set((thread)->tcb)
lib/libthr/thread/thr_cond.c
124
init_static(struct pthread *thread, pthread_cond_t *cond)
lib/libthr/thread/thr_cond.c
128
THR_LOCK_ACQUIRE(thread, &_cond_static_lock);
lib/libthr/thread/thr_cond.c
135
THR_LOCK_RELEASE(thread, &_cond_static_lock);
lib/libthr/thread/thr_create.c
155
*thread = new_thread;
lib/libthr/thread/thr_create.c
236
*thread = NULL;
lib/libthr/thread/thr_create.c
58
_pthread_create(pthread_t * __restrict thread,
lib/libthr/thread/thr_ctrdtr.c
35
_tcb_ctor(struct pthread *thread, int initial)
lib/libthr/thread/thr_ctrdtr.c
44
tcb->tcb_thread = thread;
lib/libthr/thread/thr_info.c
101
_pthread_set_name_np(pthread_t thread, const char *name)
lib/libthr/thread/thr_info.c
103
(void)_pthread_setname_np(thread, name);
lib/libthr/thread/thr_info.c
107
thr_get_name_np(struct pthread *thread, char *buf, size_t len)
lib/libthr/thread/thr_info.c
110
if (thread->name != NULL)
lib/libthr/thread/thr_info.c
111
strlcpy(buf, thread->name, len);
lib/libthr/thread/thr_info.c
119
_thr_getname_np(pthread_t thread, char *buf, size_t len)
lib/libthr/thread/thr_info.c
126
if (curthread == thread) {
lib/libthr/thread/thr_info.c
127
THR_THREAD_LOCK(curthread, thread);
lib/libthr/thread/thr_info.c
128
thr_get_name_np(thread, buf, len);
lib/libthr/thread/thr_info.c
129
THR_THREAD_UNLOCK(curthread, thread);
lib/libthr/thread/thr_info.c
131
if (_thr_find_thread(curthread, thread, 0) == 0) {
lib/libthr/thread/thr_info.c
132
if (thread->state != PS_DEAD)
lib/libthr/thread/thr_info.c
133
thr_get_name_np(thread, buf, len);
lib/libthr/thread/thr_info.c
136
THR_THREAD_UNLOCK(curthread, thread);
lib/libthr/thread/thr_info.c
148
_pthread_get_name_np(pthread_t thread, char *buf, size_t len)
lib/libthr/thread/thr_info.c
150
(void)_thr_getname_np(thread, buf, len);
lib/libthr/thread/thr_info.c
47
thr_set_name_np(struct pthread *thread, char **tmp_name)
lib/libthr/thread/thr_info.c
50
free(thread->name);
lib/libthr/thread/thr_info.c
51
thread->name = *tmp_name;
lib/libthr/thread/thr_info.c
58
_pthread_setname_np(pthread_t thread, const char *name)
lib/libthr/thread/thr_info.c
72
if (curthread == thread) {
lib/libthr/thread/thr_info.c
74
THR_THREAD_LOCK(curthread, thread);
lib/libthr/thread/thr_info.c
75
if (thr_set_name(thread->tid, name) == -1)
lib/libthr/thread/thr_info.c
78
thr_set_name_np(thread, &tmp_name);
lib/libthr/thread/thr_info.c
79
THR_THREAD_UNLOCK(curthread, thread);
lib/libthr/thread/thr_info.c
82
if (_thr_find_thread(curthread, thread, 0) == 0) {
lib/libthr/thread/thr_info.c
83
if (thread->state != PS_DEAD) {
lib/libthr/thread/thr_info.c
84
if (thr_set_name(thread->tid, name) == -1) {
lib/libthr/thread/thr_info.c
87
thr_set_name_np(thread, &tmp_name);
lib/libthr/thread/thr_info.c
91
THR_THREAD_UNLOCK(curthread, thread);
lib/libthr/thread/thr_init.c
142
static void init_main_thread(struct pthread *thread);
lib/libthr/thread/thr_init.c
378
init_main_thread(struct pthread *thread)
lib/libthr/thread/thr_init.c
384
thr_self(&thread->tid);
lib/libthr/thread/thr_init.c
385
thread->attr = _pthread_attr_default;
lib/libthr/thread/thr_init.c
409
thread->attr.stackaddr_attr = _usrstack - _thr_stack_initial;
lib/libthr/thread/thr_init.c
410
thread->attr.stacksize_attr = _thr_stack_initial;
lib/libthr/thread/thr_init.c
411
thread->attr.guardsize_attr = _thr_guard_default;
lib/libthr/thread/thr_init.c
412
thread->attr.flags |= THR_STACK_USER;
lib/libthr/thread/thr_init.c
418
thread->magic = THR_MAGIC;
lib/libthr/thread/thr_init.c
420
thread->cancel_enable = 1;
lib/libthr/thread/thr_init.c
421
thread->cancel_async = 0;
lib/libthr/thread/thr_init.c
425
TAILQ_INIT(&thread->mq[i]);
lib/libthr/thread/thr_init.c
427
thread->state = PS_RUNNING;
lib/libthr/thread/thr_init.c
429
_thr_getscheduler(thread->tid, &thread->attr.sched_policy,
lib/libthr/thread/thr_init.c
431
thread->attr.prio = sched_param.sched_priority;
lib/libthr/thread/thr_init.c
434
thread->unwind_stackend = _usrstack;
lib/libthr/thread/thr_init.c
437
thread->uexterr.ver = UEXTERROR_VER;
lib/libthr/thread/thr_init.c
439
exterrctl(EXTERRCTL_ENABLE, EXTERRCTLF_FORCE, &thread->uexterr);
lib/libthr/thread/thr_list.c
135
struct pthread *thread = NULL;
lib/libthr/thread/thr_list.c
143
if ((thread = TAILQ_FIRST(&free_threadq)) != NULL) {
lib/libthr/thread/thr_list.c
144
TAILQ_REMOVE(&free_threadq, thread, tle);
lib/libthr/thread/thr_list.c
150
if (thread == NULL) {
lib/libthr/thread/thr_list.c
154
thread = __thr_aligned_alloc_offset(_Alignof(struct pthread),
lib/libthr/thread/thr_list.c
156
if (thread == NULL) {
lib/libthr/thread/thr_list.c
160
memset(thread, 0, sizeof(*thread));
lib/libthr/thread/thr_list.c
161
if ((thread->sleepqueue = _sleepq_alloc()) == NULL ||
lib/libthr/thread/thr_list.c
162
(thread->wake_addr = _thr_alloc_wake_addr()) == NULL) {
lib/libthr/thread/thr_list.c
163
thr_destroy(curthread, thread);
lib/libthr/thread/thr_list.c
168
bzero(&thread->_pthread_startzero,
lib/libthr/thread/thr_list.c
173
tcb = _tcb_ctor(thread, 0 /* not initial tls */);
lib/libthr/thread/thr_list.c
176
tcb = _tcb_ctor(thread, 1 /* initial tls */);
lib/libthr/thread/thr_list.c
179
thread->tcb = tcb;
lib/libthr/thread/thr_list.c
181
thr_destroy(curthread, thread);
lib/libthr/thread/thr_list.c
183
thread = NULL;
lib/libthr/thread/thr_list.c
185
return (thread);
lib/libthr/thread/thr_list.c
189
_thr_free(struct pthread *curthread, struct pthread *thread)
lib/libthr/thread/thr_list.c
191
DBG_MSG("Freeing thread %p\n", thread);
lib/libthr/thread/thr_list.c
200
_tcb_dtor(thread->tcb);
lib/libthr/thread/thr_list.c
203
_tcb_dtor(thread->tcb);
lib/libthr/thread/thr_list.c
205
thread->tcb = NULL;
lib/libthr/thread/thr_list.c
207
thr_destroy(curthread, thread);
lib/libthr/thread/thr_list.c
215
TAILQ_INSERT_TAIL(&free_threadq, thread, tle);
lib/libthr/thread/thr_list.c
222
thr_destroy(struct pthread *curthread __unused, struct pthread *thread)
lib/libthr/thread/thr_list.c
224
if (thread->sleepqueue != NULL)
lib/libthr/thread/thr_list.c
225
_sleepq_free(thread->sleepqueue);
lib/libthr/thread/thr_list.c
226
if (thread->wake_addr != NULL)
lib/libthr/thread/thr_list.c
227
_thr_release_wake_addr(thread->wake_addr);
lib/libthr/thread/thr_list.c
228
__thr_free(thread);
lib/libthr/thread/thr_list.c
236
_thr_link(struct pthread *curthread, struct pthread *thread)
lib/libthr/thread/thr_list.c
239
THR_LIST_ADD(thread);
lib/libthr/thread/thr_list.c
248
_thr_unlink(struct pthread *curthread, struct pthread *thread)
lib/libthr/thread/thr_list.c
251
THR_LIST_REMOVE(thread);
lib/libthr/thread/thr_list.c
257
_thr_hash_add(struct pthread *thread)
lib/libthr/thread/thr_list.c
261
head = &thr_hashtable[THREAD_HASH(thread)];
lib/libthr/thread/thr_list.c
262
LIST_INSERT_HEAD(head, thread, hle);
lib/libthr/thread/thr_list.c
266
_thr_hash_remove(struct pthread *thread)
lib/libthr/thread/thr_list.c
268
LIST_REMOVE(thread, hle);
lib/libthr/thread/thr_list.c
272
_thr_hash_find(struct pthread *thread)
lib/libthr/thread/thr_list.c
277
head = &thr_hashtable[THREAD_HASH(thread)];
lib/libthr/thread/thr_list.c
279
if (td == thread)
lib/libthr/thread/thr_list.c
280
return (thread);
lib/libthr/thread/thr_list.c
291
_thr_ref_add(struct pthread *curthread, struct pthread *thread,
lib/libthr/thread/thr_list.c
296
if (thread == NULL)
lib/libthr/thread/thr_list.c
300
if ((ret = _thr_find_thread(curthread, thread, include_dead)) == 0) {
lib/libthr/thread/thr_list.c
301
thread->refcount++;
lib/libthr/thread/thr_list.c
303
THR_THREAD_UNLOCK(curthread, thread);
lib/libthr/thread/thr_list.c
311
_thr_ref_delete(struct pthread *curthread, struct pthread *thread)
lib/libthr/thread/thr_list.c
313
THR_THREAD_LOCK(curthread, thread);
lib/libthr/thread/thr_list.c
314
thread->refcount--;
lib/libthr/thread/thr_list.c
315
_thr_try_gc(curthread, thread);
lib/libthr/thread/thr_list.c
321
_thr_try_gc(struct pthread *curthread, struct pthread *thread)
lib/libthr/thread/thr_list.c
323
if (THR_SHOULD_GC(thread)) {
lib/libthr/thread/thr_list.c
324
THR_REF_ADD(curthread, thread);
lib/libthr/thread/thr_list.c
325
THR_THREAD_UNLOCK(curthread, thread);
lib/libthr/thread/thr_list.c
327
THR_THREAD_LOCK(curthread, thread);
lib/libthr/thread/thr_list.c
328
THR_REF_DEL(curthread, thread);
lib/libthr/thread/thr_list.c
329
if (THR_SHOULD_GC(thread)) {
lib/libthr/thread/thr_list.c
330
THR_LIST_REMOVE(thread);
lib/libthr/thread/thr_list.c
331
THR_GCLIST_ADD(thread);
lib/libthr/thread/thr_list.c
333
THR_THREAD_UNLOCK(curthread, thread);
lib/libthr/thread/thr_list.c
336
THR_THREAD_UNLOCK(curthread, thread);
lib/libthr/thread/thr_list.c
342
_thr_find_thread(struct pthread *curthread, struct pthread *thread,
lib/libthr/thread/thr_list.c
348
if (thread == NULL)
lib/libthr/thread/thr_list.c
353
pthread = _thr_hash_find(thread);
lib/libthr/thread/thr_list.c
75
static void thr_destroy(struct pthread *curthread, struct pthread *thread);
lib/libthr/thread/thr_mutex.c
300
init_static(struct pthread *thread, pthread_mutex_t *mutex)
lib/libthr/thread/thr_mutex.c
304
THR_LOCK_ACQUIRE(thread, &_mutex_static_lock);
lib/libthr/thread/thr_mutex.c
314
THR_LOCK_RELEASE(thread, &_mutex_static_lock);
lib/libthr/thread/thr_private.h
364
#define TID(thread) ((uint32_t) ((thread)->tid))
lib/libthr/thread/thr_resume_np.c
44
static void resume_common(struct pthread *thread);
lib/libthr/thread/thr_resume_np.c
48
_pthread_resume_np(pthread_t thread)
lib/libthr/thread/thr_resume_np.c
54
if ((ret = _thr_find_thread(curthread, thread, /*include dead*/0)) == 0) {
lib/libthr/thread/thr_resume_np.c
56
resume_common(thread);
lib/libthr/thread/thr_resume_np.c
57
THR_THREAD_UNLOCK(curthread, thread);
lib/libthr/thread/thr_resume_np.c
66
struct pthread *thread;
lib/libthr/thread/thr_resume_np.c
75
TAILQ_FOREACH(thread, &_thread_list, tle) {
lib/libthr/thread/thr_resume_np.c
76
if (thread != curthread) {
lib/libthr/thread/thr_resume_np.c
77
THR_THREAD_LOCK(curthread, thread);
lib/libthr/thread/thr_resume_np.c
78
resume_common(thread);
lib/libthr/thread/thr_resume_np.c
79
THR_THREAD_UNLOCK(curthread, thread);
lib/libthr/thread/thr_resume_np.c
91
resume_common(struct pthread *thread)
lib/libthr/thread/thr_resume_np.c
94
thread->flags &= ~(THR_FLAGS_NEED_SUSPEND | THR_FLAGS_SUSPENDED);
lib/libthr/thread/thr_resume_np.c
95
thread->cycle++;
lib/libthr/thread/thr_resume_np.c
96
_thr_umtx_wake(&thread->cycle, 1, 0);
lib/libthr/thread/thr_rwlock.c
143
init_static(struct pthread *thread, pthread_rwlock_t *rwlock)
lib/libthr/thread/thr_rwlock.c
147
THR_LOCK_ACQUIRE(thread, &_rwlock_static_lock);
lib/libthr/thread/thr_rwlock.c
154
THR_LOCK_RELEASE(thread, &_rwlock_static_lock);
lib/libthr/thread/thr_rwlock.c
59
static int init_static(struct pthread *thread, pthread_rwlock_t *rwlock);
lib/libthr/thread/thr_sig.c
186
_thr_send_sig(struct pthread *thread, int sig)
lib/libthr/thread/thr_sig.c
188
return thr_kill(thread->tid, sig);
lib/libthr/thread/thr_suspend_np.c
108
struct pthread *thread;
lib/libthr/thread/thr_suspend_np.c
116
TAILQ_FOREACH(thread, &_thread_list, tle) {
lib/libthr/thread/thr_suspend_np.c
117
if (thread != curthread) {
lib/libthr/thread/thr_suspend_np.c
118
THR_THREAD_LOCK(curthread, thread);
lib/libthr/thread/thr_suspend_np.c
119
if (thread->state != PS_DEAD &&
lib/libthr/thread/thr_suspend_np.c
120
!(thread->flags & THR_FLAGS_SUSPENDED))
lib/libthr/thread/thr_suspend_np.c
121
thread->flags |= THR_FLAGS_NEED_SUSPEND;
lib/libthr/thread/thr_suspend_np.c
122
THR_THREAD_UNLOCK(curthread, thread);
lib/libthr/thread/thr_suspend_np.c
128
TAILQ_FOREACH(thread, &_thread_list, tle) {
lib/libthr/thread/thr_suspend_np.c
129
if (thread != curthread) {
lib/libthr/thread/thr_suspend_np.c
131
THR_THREAD_LOCK(curthread, thread);
lib/libthr/thread/thr_suspend_np.c
132
ret = suspend_common(curthread, thread, 0);
lib/libthr/thread/thr_suspend_np.c
136
THR_REF_ADD(curthread, thread);
lib/libthr/thread/thr_suspend_np.c
137
suspend_common(curthread, thread, 1);
lib/libthr/thread/thr_suspend_np.c
138
THR_REF_DEL(curthread, thread);
lib/libthr/thread/thr_suspend_np.c
139
_thr_try_gc(curthread, thread);
lib/libthr/thread/thr_suspend_np.c
150
THR_THREAD_UNLOCK(curthread, thread);
lib/libthr/thread/thr_suspend_np.c
160
suspend_common(struct pthread *curthread, struct pthread *thread,
lib/libthr/thread/thr_suspend_np.c
165
while (thread->state != PS_DEAD &&
lib/libthr/thread/thr_suspend_np.c
166
!(thread->flags & THR_FLAGS_SUSPENDED)) {
lib/libthr/thread/thr_suspend_np.c
167
thread->flags |= THR_FLAGS_NEED_SUSPEND;
lib/libthr/thread/thr_suspend_np.c
169
if (thread->tid == TID_TERMINATED)
lib/libthr/thread/thr_suspend_np.c
171
tmp = thread->cycle;
lib/libthr/thread/thr_suspend_np.c
172
_thr_send_sig(thread, SIGCANCEL);
lib/libthr/thread/thr_suspend_np.c
173
THR_THREAD_UNLOCK(curthread, thread);
lib/libthr/thread/thr_suspend_np.c
175
_thr_umtx_wait_uint(&thread->cycle, tmp, NULL, 0);
lib/libthr/thread/thr_suspend_np.c
176
THR_THREAD_LOCK(curthread, thread);
lib/libthr/thread/thr_suspend_np.c
178
THR_THREAD_LOCK(curthread, thread);
lib/libthr/thread/thr_suspend_np.c
49
_pthread_suspend_np(pthread_t thread)
lib/libthr/thread/thr_suspend_np.c
55
if (thread == _get_curthread())
lib/libthr/thread/thr_suspend_np.c
59
else if ((ret = _thr_ref_add(curthread, thread, /*include dead*/0))
lib/libthr/thread/thr_suspend_np.c
62
THR_THREAD_LOCK(curthread, thread);
lib/libthr/thread/thr_suspend_np.c
63
suspend_common(curthread, thread, 1);
lib/libthr/thread/thr_suspend_np.c
65
THR_THREAD_UNLOCK(curthread, thread);
lib/libthr/thread/thr_suspend_np.c
68
_thr_ref_delete(curthread, thread);
share/examples/kld/cdev/module/cdev.c
101
mydev_open(struct cdev *dev, int flag, int otyp, struct thread *td)
share/examples/kld/cdev/module/cdev.c
113
mydev_close(struct cdev *dev, int flag, int otyp, struct thread *td)
share/examples/kld/cdev/module/cdev.c
124
struct thread *td)
share/examples/kld/syscall/module/syscall.c
41
hello(struct thread *td, void *arg)
stand/kshim/bsd_kernel.h
193
struct thread;
sys/amd64/amd64/db_trace.c
138
db_nextframe(db_addr_t *fp, db_addr_t *ip, struct thread *td)
sys/amd64/amd64/db_trace.c
244
db_backtrace(struct thread *td, struct trapframe *tf, db_addr_t frame,
sys/amd64/amd64/db_trace.c
363
db_trace_thread(struct thread *thr, int count)
sys/amd64/amd64/elf_machdep.c
246
elf64_dump_thread(struct thread *td, void *dst, size_t *off)
sys/amd64/amd64/exec_machdep.c
120
struct thread *td;
sys/amd64/amd64/exec_machdep.c
262
sys_sigreturn(struct thread *td, struct sigreturn_args *uap)
sys/amd64/amd64/exec_machdep.c
374
freebsd4_sigreturn(struct thread *td, struct freebsd4_sigreturn_args *uap)
sys/amd64/amd64/exec_machdep.c
413
exec_setregs(struct thread *td, struct image_params *imgp, uintptr_t stack)
sys/amd64/amd64/exec_machdep.c
455
fill_regs(struct thread *td, struct reg *regs)
sys/amd64/amd64/exec_machdep.c
504
set_regs(struct thread *td, struct reg *regs)
sys/amd64/amd64/exec_machdep.c
610
fill_fpregs(struct thread *td, struct fpreg *fpregs)
sys/amd64/amd64/exec_machdep.c
623
set_fpregs(struct thread *td, struct fpreg *fpregs)
sys/amd64/amd64/exec_machdep.c
639
get_mcontext(struct thread *td, mcontext_t *mcp, int flags)
sys/amd64/amd64/exec_machdep.c
700
set_mcontext(struct thread *td, mcontext_t *mcp)
sys/amd64/amd64/exec_machdep.c
773
get_fpcontext(struct thread *td, mcontext_t *mcp, char **xfpusave,
sys/amd64/amd64/exec_machdep.c
794
set_fpcontext(struct thread *td, mcontext_t *mcp, char *xfpustate,
sys/amd64/amd64/exec_machdep.c
817
fpstate_drop(struct thread *td)
sys/amd64/amd64/exec_machdep.c
840
fill_dbregs(struct thread *td, struct dbreg *dbregs)
sys/amd64/amd64/exec_machdep.c
874
set_dbregs(struct thread *td, struct dbreg *dbregs)
sys/amd64/amd64/fpu.c
1143
fpu_kern_enter(struct thread *td, struct fpu_kern_ctx *ctx, u_int flags)
sys/amd64/amd64/fpu.c
1195
fpu_kern_leave(struct thread *td, struct fpu_kern_ctx *ctx)
sys/amd64/amd64/fpu.c
484
fpuexit(struct thread *td)
sys/amd64/amd64/fpu.c
733
restore_fpu_curthread(struct thread *td)
sys/amd64/amd64/fpu.c
781
struct thread *td;
sys/amd64/amd64/fpu.c
817
void fpu_activate_sw(struct thread *td); /* Called from the context switch */
sys/amd64/amd64/fpu.c
819
fpu_activate_sw(struct thread *td)
sys/amd64/amd64/fpu.c
833
struct thread *td;
sys/amd64/amd64/fpu.c
849
fpugetregs(struct thread *td)
sys/amd64/amd64/fpu.c
918
fpuuserinited(struct thread *td)
sys/amd64/amd64/fpu.c
932
fpusetxstate(struct thread *td, char *xfpustate, size_t xfpustate_size)
sys/amd64/amd64/fpu.c
973
fpusetregs(struct thread *td, struct savefpu *addr, char *xfpustate,
sys/amd64/amd64/genassym.c
78
ASSYM(TD_LOCK, offsetof(struct thread, td_lock));
sys/amd64/amd64/genassym.c
79
ASSYM(TD_FLAGS, offsetof(struct thread, td_flags));
sys/amd64/amd64/genassym.c
80
ASSYM(TD_AST, offsetof(struct thread, td_ast));
sys/amd64/amd64/genassym.c
81
ASSYM(TD_PCB, offsetof(struct thread, td_pcb));
sys/amd64/amd64/genassym.c
82
ASSYM(TD_PFLAGS, offsetof(struct thread, td_pflags));
sys/amd64/amd64/genassym.c
83
ASSYM(TD_PROC, offsetof(struct thread, td_proc));
sys/amd64/amd64/genassym.c
84
ASSYM(TD_FRAME, offsetof(struct thread, td_frame));
sys/amd64/amd64/genassym.c
85
ASSYM(TD_MD, offsetof(struct thread, td_md));
sys/amd64/amd64/genassym.c
86
ASSYM(TD_MD_PCB, offsetof(struct thread, td_md.md_pcb));
sys/amd64/amd64/genassym.c
87
ASSYM(TD_MD_STACK_BASE, offsetof(struct thread, td_md.md_stack_base));
sys/amd64/amd64/io.c
37
iodev_open(struct thread *td)
sys/amd64/amd64/io.c
45
iodev_close(struct thread *td)
sys/amd64/amd64/machdep.c
1748
struct thread *td;
sys/amd64/amd64/machdep.c
1764
struct thread *td;
sys/amd64/amd64/mem.c
115
struct thread *td)
sys/amd64/amd64/pmap.c
10127
pmap_activate_sw_pti_post(struct thread *td, pmap_t pmap)
sys/amd64/amd64/pmap.c
10135
pmap_activate_sw_pcid_pti(struct thread *td, pmap_t pmap, u_int cpuid)
sys/amd64/amd64/pmap.c
10174
pmap_activate_sw_pcid_nopti(struct thread *td __unused, pmap_t pmap,
sys/amd64/amd64/pmap.c
10194
pmap_activate_sw_nopcid_nopti(struct thread *td __unused, pmap_t pmap,
sys/amd64/amd64/pmap.c
10203
pmap_activate_sw_nopcid_pti(struct thread *td, pmap_t pmap,
sys/amd64/amd64/pmap.c
10213
DEFINE_IFUNC(static, void, pmap_activate_sw_mode, (struct thread *, pmap_t,
sys/amd64/amd64/pmap.c
10228
pmap_activate_sw(struct thread *td)
sys/amd64/amd64/pmap.c
10247
pmap_activate(struct thread *td)
sys/amd64/amd64/pmap.c
1028
struct thread *td;
sys/amd64/amd64/pmap.c
1086
struct thread *td;
sys/amd64/amd64/pmap.c
1094
td = first ? NULL : __containerof(p, struct thread,
sys/amd64/amd64/pmap.c
1248
DEFINE_IFUNC(, void, pmap_thread_init_invl_gen, (struct thread *))
sys/amd64/amd64/pmap.c
4198
struct thread *td;
sys/amd64/amd64/pmap.c
712
pmap_thread_init_invl_gen_l(struct thread *td)
sys/amd64/amd64/pmap.c
816
pmap_thread_init_invl_gen_u(struct thread *td)
sys/amd64/amd64/pmap.c
907
struct thread *td;
sys/amd64/amd64/ptrace_machdep.c
103
get_segbases32(struct regset *rs, struct thread *td, void *buf,
sys/amd64/amd64/ptrace_machdep.c
122
set_segbases32(struct regset *rs, struct thread *td, void *buf,
sys/amd64/amd64/ptrace_machdep.c
151
cpu_ptrace_xstate(struct thread *td, int req, void *addr, int data)
sys/amd64/amd64/ptrace_machdep.c
240
cpu_ptrace_setbase(struct thread *td, int req, register_t r)
sys/amd64/amd64/ptrace_machdep.c
260
cpu32_ptrace(struct thread *td, int req, void *addr, int data)
sys/amd64/amd64/ptrace_machdep.c
324
cpu_ptrace(struct thread *td, int req, void *addr, int data)
sys/amd64/amd64/ptrace_machdep.c
401
ptrace_set_pc(struct thread *td, unsigned long addr)
sys/amd64/amd64/ptrace_machdep.c
410
ptrace_single_step(struct thread *td)
sys/amd64/amd64/ptrace_machdep.c
422
ptrace_clear_single_step(struct thread *td)
sys/amd64/amd64/ptrace_machdep.c
55
get_segbases(struct regset *rs, struct thread *td, void *buf,
sys/amd64/amd64/ptrace_machdep.c
74
set_segbases(struct regset *rs, struct thread *td, void *buf,
sys/amd64/amd64/sys_machdep.c
141
update_gdt_gsbase(struct thread *td, uint32_t base)
sys/amd64/amd64/sys_machdep.c
156
update_gdt_fsbase(struct thread *td, uint32_t base)
sys/amd64/amd64/sys_machdep.c
171
sysarch(struct thread *td, struct sysarch_args *uap)
sys/amd64/amd64/sys_machdep.c
437
amd64_set_ioperm(struct thread *td, struct i386_ioperm_args *uap)
sys/amd64/amd64/sys_machdep.c
491
amd64_get_ioperm(struct thread *td, struct i386_ioperm_args *uap)
sys/amd64/amd64/sys_machdep.c
601
user_ldt_free(struct thread *td)
sys/amd64/amd64/sys_machdep.c
654
amd64_get_ldt(struct thread *td, struct i386_ldt_args *uap)
sys/amd64/amd64/sys_machdep.c
689
amd64_set_ldt(struct thread *td, struct i386_ldt_args *uap,
sys/amd64/amd64/sys_machdep.c
837
amd64_set_ldt_data(struct thread *td, int start, int num,
sys/amd64/amd64/sys_machdep.c
97
sysarch_ldt(struct thread *td, struct sysarch_args *uap, int uap_space)
sys/amd64/amd64/trap.c
1100
cpu_fetch_syscall_args_fallback(struct thread *td, struct syscall_args *sa)
sys/amd64/amd64/trap.c
1144
cpu_fetch_syscall_args(struct thread *td)
sys/amd64/amd64/trap.c
1269
amd64_syscall(struct thread *td, int traced)
sys/amd64/amd64/trap.c
1445
trap_fred_handle_u_exc(struct thread *td, struct trapframe_fred *frame,
sys/amd64/amd64/trap.c
1574
struct thread *td;
sys/amd64/amd64/trap.c
1607
int (*ph)(struct thread *, int, void *);
sys/amd64/amd64/trap.c
1725
trap_fred_handle_k_exc(struct thread *td, struct trapframe_fred *frame,
sys/amd64/amd64/trap.c
1827
struct thread *td;
sys/amd64/amd64/trap.c
186
trap_uprintf_signal(struct thread *td, struct trapframe *frame, register_t addr,
sys/amd64/amd64/trap.c
227
trap_check_pcb_onfault(struct thread *td, struct trapframe *frame)
sys/amd64/amd64/trap.c
258
trap_clear_step(struct thread *td, struct trapframe *frame)
sys/amd64/amd64/trap.c
273
trap_check_intr_user(struct thread *td, struct trapframe *frame)
sys/amd64/amd64/trap.c
295
trap_check_intr_kernel(struct thread *td, struct trapframe *frame)
sys/amd64/amd64/trap.c
370
struct thread *td;
sys/amd64/amd64/trap.c
786
struct thread *td;
sys/amd64/amd64/vm_machdep.c
105
struct thread *td;
sys/amd64/amd64/vm_machdep.c
107
td = __containerof(pcb, struct thread, td_md.md_pcb);
sys/amd64/amd64/vm_machdep.c
131
copy_thread(struct thread *td1, struct thread *td2)
sys/amd64/amd64/vm_machdep.c
212
cpu_fork(struct thread *td1, struct proc *p2, struct thread *td2, int flags)
sys/amd64/amd64/vm_machdep.c
293
x86_set_fork_retval(struct thread *td)
sys/amd64/amd64/vm_machdep.c
309
cpu_fork_kthread_handler(struct thread *td, void (*func)(void *), void *arg)
sys/amd64/amd64/vm_machdep.c
320
cpu_exit(struct thread *td)
sys/amd64/amd64/vm_machdep.c
331
cpu_thread_exit(struct thread *td)
sys/amd64/amd64/vm_machdep.c
350
cpu_thread_clean(struct thread *td)
sys/amd64/amd64/vm_machdep.c
368
cpu_thread_alloc(struct thread *td)
sys/amd64/amd64/vm_machdep.c
378
cpu_thread_new_kstack(struct thread *td)
sys/amd64/amd64/vm_machdep.c
393
cpu_thread_free(struct thread *td)
sys/amd64/amd64/vm_machdep.c
474
cpu_procctl(struct thread *td, int idtype, id_t id, int com, void *data)
sys/amd64/amd64/vm_machdep.c
541
cpu_set_syscall_retval(struct thread *td, int error)
sys/amd64/amd64/vm_machdep.c
590
cpu_copy_thread(struct thread *td, struct thread *td0)
sys/amd64/amd64/vm_machdep.c
602
cpu_set_upcall(struct thread *td, void (*entry)(void *), void *arg,
sys/amd64/amd64/vm_machdep.c
655
cpu_set_user_tls(struct thread *td, void *tls_base, int thr_flags)
sys/amd64/amd64/vm_machdep.c
676
cpu_update_pcb(struct thread *td)
sys/amd64/amd64/vm_machdep.c
87
get_pcb_user_save_td(struct thread *td)
sys/amd64/amd64/vm_machdep.c
96
get_pcb_td(struct thread *td)
sys/amd64/ia32/ia32_misc.c
46
freebsd32_sysarch(struct thread *td, struct freebsd32_sysarch_args *uap)
sys/amd64/ia32/ia32_reg.c
107
set_regs32(struct thread *td, struct reg32 *regs)
sys/amd64/ia32/ia32_reg.c
136
fill_fpregs32(struct thread *td, struct fpreg32 *regs)
sys/amd64/ia32/ia32_reg.c
210
set_fpregs32(struct thread *td, struct fpreg32 *regs)
sys/amd64/ia32/ia32_reg.c
242
fill_dbregs32(struct thread *td, struct dbreg32 *regs)
sys/amd64/ia32/ia32_reg.c
254
set_dbregs32(struct thread *td, struct dbreg32 *regs)
sys/amd64/ia32/ia32_reg.c
267
get_i386_segbases(struct regset *rs, struct thread *td, void *buf,
sys/amd64/ia32/ia32_reg.c
288
set_i386_segbases(struct regset *rs, struct thread *td, void *buf,
sys/amd64/ia32/ia32_reg.c
73
fill_regs32(struct thread *td, struct reg32 *regs)
sys/amd64/ia32/ia32_signal.c
101
ia32_get_fpcontext(struct thread *td, struct ia32_mcontext *mcp,
sys/amd64/ia32/ia32_signal.c
128
ia32_set_fpcontext(struct thread *td, struct ia32_mcontext *mcp,
sys/amd64/ia32/ia32_signal.c
154
ia32_get_mcontext(struct thread *td, struct ia32_mcontext *mcp, int flags)
sys/amd64/ia32/ia32_signal.c
207
ia32_set_mcontext(struct thread *td, struct ia32_mcontext *mcp)
sys/amd64/ia32/ia32_signal.c
267
freebsd32_getcontext(struct thread *td, struct freebsd32_getcontext_args *uap)
sys/amd64/ia32/ia32_signal.c
286
freebsd32_setcontext(struct thread *td, struct freebsd32_setcontext_args *uap)
sys/amd64/ia32/ia32_signal.c
307
freebsd32_swapcontext(struct thread *td, struct freebsd32_swapcontext_args *uap)
sys/amd64/ia32/ia32_signal.c
352
struct thread *td;
sys/amd64/ia32/ia32_signal.c
455
struct thread *td;
sys/amd64/ia32/ia32_signal.c
566
struct thread *td;
sys/amd64/ia32/ia32_signal.c
705
ofreebsd32_sigreturn(struct thread *td, struct ofreebsd32_sigreturn_args *uap)
sys/amd64/ia32/ia32_signal.c
764
freebsd4_freebsd32_sigreturn(struct thread *td,
sys/amd64/ia32/ia32_signal.c
839
freebsd32_sigreturn(struct thread *td, struct freebsd32_sigreturn_args *uap)
sys/amd64/ia32/ia32_signal.c
950
ia32_setregs(struct thread *td, struct image_params *imgp, uintptr_t stack)
sys/amd64/ia32/ia32_syscall.c
107
ia32_set_syscall_retval(struct thread *td, int error)
sys/amd64/ia32/ia32_syscall.c
114
ia32_fetch_syscall_args(struct thread *td)
sys/amd64/ia32/ia32_syscall.c
212
struct thread *td;
sys/amd64/include/fpu.h
55
void fpuexit(struct thread *td);
sys/amd64/include/fpu.h
57
int fpugetregs(struct thread *td);
sys/amd64/include/fpu.h
62
int fpusetregs(struct thread *td, struct savefpu *addr,
sys/amd64/include/fpu.h
64
int fpusetxstate(struct thread *td, char *xfpustate,
sys/amd64/include/fpu.h
69
void fpuuserinited(struct thread *td);
sys/amd64/include/fpu.h
73
void fpu_kern_enter(struct thread *td, struct fpu_kern_ctx *ctx,
sys/amd64/include/fpu.h
75
int fpu_kern_leave(struct thread *td, struct fpu_kern_ctx *ctx);
sys/amd64/include/iodev.h
41
int iodev_open(struct thread *td);
sys/amd64/include/iodev.h
42
int iodev_close(struct thread *td);
sys/amd64/include/md_var.h
101
void get_fpcontext(struct thread *td, struct __mcontext *mcp,
sys/amd64/include/md_var.h
103
int set_fpcontext(struct thread *td, struct __mcontext *mcp,
sys/amd64/include/md_var.h
75
void amd64_syscall(struct thread *td, int traced);
sys/amd64/include/md_var.h
95
void fpstate_drop(struct thread *td);
sys/amd64/include/md_var.h
98
struct savefpu *get_pcb_user_save_td(struct thread *td);
sys/amd64/include/pcpu_aux.h
52
static __inline __pure2 struct thread *
sys/amd64/include/pcpu_aux.h
55
struct thread *td;
sys/amd64/include/pmap.h
388
struct thread;
sys/amd64/include/pmap.h
391
void pmap_activate_sw(struct thread *);
sys/amd64/include/pmap.h
440
void pmap_thread_init_invl_gen(struct thread *td);
sys/amd64/include/proc.h
100
int sysarch_ldt(struct thread *td, struct sysarch_args *uap, int uap_space);
sys/amd64/include/proc.h
101
int amd64_set_ldt_data(struct thread *td, int start, int num,
sys/amd64/include/proc.h
98
void user_ldt_free(struct thread *);
sys/amd64/include/segments.h
104
void update_gdt_gsbase(struct thread *td, uint32_t base);
sys/amd64/include/segments.h
105
void update_gdt_fsbase(struct thread *td, uint32_t base);
sys/amd64/include/stack.h
14
struct thread *td = curthread; \
sys/amd64/include/stack.h
20
kstack_contains(struct thread *td, vm_offset_t va, size_t len)
sys/amd64/linux/linux.h
268
int linux_ptrace_getregs_machdep(struct thread *td, pid_t pid,
sys/amd64/linux/linux.h
270
int linux_ptrace_peekuser(struct thread *td, pid_t pid,
sys/amd64/linux/linux.h
272
int linux_ptrace_pokeuser(struct thread *td, pid_t pid,
sys/amd64/linux/linux_machdep.c
112
linux_arch_prctl(struct thread *td, struct linux_arch_prctl_args *args)
sys/amd64/linux/linux_machdep.c
160
linux_set_cloned_tls(struct thread *td, void *desc)
sys/amd64/linux/linux_machdep.c
315
linux_ptrace_getregs_machdep(struct thread *td, pid_t pid,
sys/amd64/linux/linux_machdep.c
349
linux_ptrace_peekuser(struct thread *td, pid_t pid, void *addr, void *data)
sys/amd64/linux/linux_machdep.c
415
linux_ptrace_pokeuser(struct thread *td, pid_t pid, void *addr, void *data)
sys/amd64/linux/linux_machdep.c
64
linux_set_upcall(struct thread *td, register_t stack)
sys/amd64/linux/linux_machdep.c
79
linux_iopl(struct thread *td, struct linux_iopl_args *args)
sys/amd64/linux/linux_machdep.c
98
linux_pause(struct thread *td, struct linux_pause_args *args)
sys/amd64/linux/linux_proto.h
1444
int linux_write(struct thread *, struct linux_write_args *);
sys/amd64/linux/linux_proto.h
1445
int linux_open(struct thread *, struct linux_open_args *);
sys/amd64/linux/linux_proto.h
1446
int linux_newstat(struct thread *, struct linux_newstat_args *);
sys/amd64/linux/linux_proto.h
1447
int linux_newfstat(struct thread *, struct linux_newfstat_args *);
sys/amd64/linux/linux_proto.h
1448
int linux_newlstat(struct thread *, struct linux_newlstat_args *);
sys/amd64/linux/linux_proto.h
1449
int linux_poll(struct thread *, struct linux_poll_args *);
sys/amd64/linux/linux_proto.h
1450
int linux_lseek(struct thread *, struct linux_lseek_args *);
sys/amd64/linux/linux_proto.h
1451
int linux_mmap2(struct thread *, struct linux_mmap2_args *);
sys/amd64/linux/linux_proto.h
1452
int linux_mprotect(struct thread *, struct linux_mprotect_args *);
sys/amd64/linux/linux_proto.h
1453
int linux_brk(struct thread *, struct linux_brk_args *);
sys/amd64/linux/linux_proto.h
1454
int linux_rt_sigaction(struct thread *, struct linux_rt_sigaction_args *);
sys/amd64/linux/linux_proto.h
1455
int linux_rt_sigprocmask(struct thread *, struct linux_rt_sigprocmask_args *);
sys/amd64/linux/linux_proto.h
1456
int linux_rt_sigreturn(struct thread *, struct linux_rt_sigreturn_args *);
sys/amd64/linux/linux_proto.h
1457
int linux_ioctl(struct thread *, struct linux_ioctl_args *);
sys/amd64/linux/linux_proto.h
1458
int linux_pread(struct thread *, struct linux_pread_args *);
sys/amd64/linux/linux_proto.h
1459
int linux_pwrite(struct thread *, struct linux_pwrite_args *);
sys/amd64/linux/linux_proto.h
1460
int linux_writev(struct thread *, struct linux_writev_args *);
sys/amd64/linux/linux_proto.h
1461
int linux_access(struct thread *, struct linux_access_args *);
sys/amd64/linux/linux_proto.h
1462
int linux_pipe(struct thread *, struct linux_pipe_args *);
sys/amd64/linux/linux_proto.h
1463
int linux_select(struct thread *, struct linux_select_args *);
sys/amd64/linux/linux_proto.h
1464
int linux_mremap(struct thread *, struct linux_mremap_args *);
sys/amd64/linux/linux_proto.h
1465
int linux_msync(struct thread *, struct linux_msync_args *);
sys/amd64/linux/linux_proto.h
1466
int linux_mincore(struct thread *, struct linux_mincore_args *);
sys/amd64/linux/linux_proto.h
1467
int linux_madvise(struct thread *, struct linux_madvise_args *);
sys/amd64/linux/linux_proto.h
1468
int linux_shmget(struct thread *, struct linux_shmget_args *);
sys/amd64/linux/linux_proto.h
1469
int linux_shmat(struct thread *, struct linux_shmat_args *);
sys/amd64/linux/linux_proto.h
1470
int linux_shmctl(struct thread *, struct linux_shmctl_args *);
sys/amd64/linux/linux_proto.h
1471
int linux_pause(struct thread *, struct linux_pause_args *);
sys/amd64/linux/linux_proto.h
1472
int linux_nanosleep(struct thread *, struct linux_nanosleep_args *);
sys/amd64/linux/linux_proto.h
1473
int linux_getitimer(struct thread *, struct linux_getitimer_args *);
sys/amd64/linux/linux_proto.h
1474
int linux_alarm(struct thread *, struct linux_alarm_args *);
sys/amd64/linux/linux_proto.h
1475
int linux_setitimer(struct thread *, struct linux_setitimer_args *);
sys/amd64/linux/linux_proto.h
1476
int linux_getpid(struct thread *, struct linux_getpid_args *);
sys/amd64/linux/linux_proto.h
1477
int linux_sendfile(struct thread *, struct linux_sendfile_args *);
sys/amd64/linux/linux_proto.h
1478
int linux_socket(struct thread *, struct linux_socket_args *);
sys/amd64/linux/linux_proto.h
1479
int linux_connect(struct thread *, struct linux_connect_args *);
sys/amd64/linux/linux_proto.h
1480
int linux_accept(struct thread *, struct linux_accept_args *);
sys/amd64/linux/linux_proto.h
1481
int linux_sendto(struct thread *, struct linux_sendto_args *);
sys/amd64/linux/linux_proto.h
1482
int linux_recvfrom(struct thread *, struct linux_recvfrom_args *);
sys/amd64/linux/linux_proto.h
1483
int linux_sendmsg(struct thread *, struct linux_sendmsg_args *);
sys/amd64/linux/linux_proto.h
1484
int linux_recvmsg(struct thread *, struct linux_recvmsg_args *);
sys/amd64/linux/linux_proto.h
1485
int linux_shutdown(struct thread *, struct linux_shutdown_args *);
sys/amd64/linux/linux_proto.h
1486
int linux_bind(struct thread *, struct linux_bind_args *);
sys/amd64/linux/linux_proto.h
1487
int linux_listen(struct thread *, struct linux_listen_args *);
sys/amd64/linux/linux_proto.h
1488
int linux_getsockname(struct thread *, struct linux_getsockname_args *);
sys/amd64/linux/linux_proto.h
1489
int linux_getpeername(struct thread *, struct linux_getpeername_args *);
sys/amd64/linux/linux_proto.h
1490
int linux_socketpair(struct thread *, struct linux_socketpair_args *);
sys/amd64/linux/linux_proto.h
1491
int linux_setsockopt(struct thread *, struct linux_setsockopt_args *);
sys/amd64/linux/linux_proto.h
1492
int linux_getsockopt(struct thread *, struct linux_getsockopt_args *);
sys/amd64/linux/linux_proto.h
1493
int linux_clone(struct thread *, struct linux_clone_args *);
sys/amd64/linux/linux_proto.h
1494
int linux_fork(struct thread *, struct linux_fork_args *);
sys/amd64/linux/linux_proto.h
1495
int linux_vfork(struct thread *, struct linux_vfork_args *);
sys/amd64/linux/linux_proto.h
1496
int linux_execve(struct thread *, struct linux_execve_args *);
sys/amd64/linux/linux_proto.h
1497
int linux_exit(struct thread *, struct linux_exit_args *);
sys/amd64/linux/linux_proto.h
1498
int linux_wait4(struct thread *, struct linux_wait4_args *);
sys/amd64/linux/linux_proto.h
1499
int linux_kill(struct thread *, struct linux_kill_args *);
sys/amd64/linux/linux_proto.h
1500
int linux_newuname(struct thread *, struct linux_newuname_args *);
sys/amd64/linux/linux_proto.h
1501
int linux_semget(struct thread *, struct linux_semget_args *);
sys/amd64/linux/linux_proto.h
1502
int linux_semctl(struct thread *, struct linux_semctl_args *);
sys/amd64/linux/linux_proto.h
1503
int linux_shmdt(struct thread *, struct linux_shmdt_args *);
sys/amd64/linux/linux_proto.h
1504
int linux_msgget(struct thread *, struct linux_msgget_args *);
sys/amd64/linux/linux_proto.h
1505
int linux_msgsnd(struct thread *, struct linux_msgsnd_args *);
sys/amd64/linux/linux_proto.h
1506
int linux_msgrcv(struct thread *, struct linux_msgrcv_args *);
sys/amd64/linux/linux_proto.h
1507
int linux_msgctl(struct thread *, struct linux_msgctl_args *);
sys/amd64/linux/linux_proto.h
1508
int linux_fcntl(struct thread *, struct linux_fcntl_args *);
sys/amd64/linux/linux_proto.h
1509
int linux_fdatasync(struct thread *, struct linux_fdatasync_args *);
sys/amd64/linux/linux_proto.h
1510
int linux_truncate(struct thread *, struct linux_truncate_args *);
sys/amd64/linux/linux_proto.h
1511
int linux_ftruncate(struct thread *, struct linux_ftruncate_args *);
sys/amd64/linux/linux_proto.h
1512
int linux_getdents(struct thread *, struct linux_getdents_args *);
sys/amd64/linux/linux_proto.h
1513
int linux_getcwd(struct thread *, struct linux_getcwd_args *);
sys/amd64/linux/linux_proto.h
1514
int linux_chdir(struct thread *, struct linux_chdir_args *);
sys/amd64/linux/linux_proto.h
1515
int linux_rename(struct thread *, struct linux_rename_args *);
sys/amd64/linux/linux_proto.h
1516
int linux_mkdir(struct thread *, struct linux_mkdir_args *);
sys/amd64/linux/linux_proto.h
1517
int linux_rmdir(struct thread *, struct linux_rmdir_args *);
sys/amd64/linux/linux_proto.h
1518
int linux_creat(struct thread *, struct linux_creat_args *);
sys/amd64/linux/linux_proto.h
1519
int linux_link(struct thread *, struct linux_link_args *);
sys/amd64/linux/linux_proto.h
1520
int linux_unlink(struct thread *, struct linux_unlink_args *);
sys/amd64/linux/linux_proto.h
1521
int linux_symlink(struct thread *, struct linux_symlink_args *);
sys/amd64/linux/linux_proto.h
1522
int linux_readlink(struct thread *, struct linux_readlink_args *);
sys/amd64/linux/linux_proto.h
1523
int linux_chmod(struct thread *, struct linux_chmod_args *);
sys/amd64/linux/linux_proto.h
1524
int linux_chown(struct thread *, struct linux_chown_args *);
sys/amd64/linux/linux_proto.h
1525
int linux_lchown(struct thread *, struct linux_lchown_args *);
sys/amd64/linux/linux_proto.h
1526
int linux_getrlimit(struct thread *, struct linux_getrlimit_args *);
sys/amd64/linux/linux_proto.h
1527
int linux_sysinfo(struct thread *, struct linux_sysinfo_args *);
sys/amd64/linux/linux_proto.h
1528
int linux_times(struct thread *, struct linux_times_args *);
sys/amd64/linux/linux_proto.h
1529
int linux_ptrace(struct thread *, struct linux_ptrace_args *);
sys/amd64/linux/linux_proto.h
1530
int linux_getuid(struct thread *, struct linux_getuid_args *);
sys/amd64/linux/linux_proto.h
1531
int linux_syslog(struct thread *, struct linux_syslog_args *);
sys/amd64/linux/linux_proto.h
1532
int linux_getgid(struct thread *, struct linux_getgid_args *);
sys/amd64/linux/linux_proto.h
1533
int linux_getppid(struct thread *, struct linux_getppid_args *);
sys/amd64/linux/linux_proto.h
1534
int linux_getgroups(struct thread *, struct linux_getgroups_args *);
sys/amd64/linux/linux_proto.h
1535
int linux_setgroups(struct thread *, struct linux_setgroups_args *);
sys/amd64/linux/linux_proto.h
1536
int linux_setfsuid(struct thread *, struct linux_setfsuid_args *);
sys/amd64/linux/linux_proto.h
1537
int linux_setfsgid(struct thread *, struct linux_setfsgid_args *);
sys/amd64/linux/linux_proto.h
1538
int linux_getsid(struct thread *, struct linux_getsid_args *);
sys/amd64/linux/linux_proto.h
1539
int linux_capget(struct thread *, struct linux_capget_args *);
sys/amd64/linux/linux_proto.h
1540
int linux_capset(struct thread *, struct linux_capset_args *);
sys/amd64/linux/linux_proto.h
1541
int linux_rt_sigpending(struct thread *, struct linux_rt_sigpending_args *);
sys/amd64/linux/linux_proto.h
1542
int linux_rt_sigtimedwait(struct thread *, struct linux_rt_sigtimedwait_args *);
sys/amd64/linux/linux_proto.h
1543
int linux_rt_sigqueueinfo(struct thread *, struct linux_rt_sigqueueinfo_args *);
sys/amd64/linux/linux_proto.h
1544
int linux_rt_sigsuspend(struct thread *, struct linux_rt_sigsuspend_args *);
sys/amd64/linux/linux_proto.h
1545
int linux_sigaltstack(struct thread *, struct linux_sigaltstack_args *);
sys/amd64/linux/linux_proto.h
1546
int linux_utime(struct thread *, struct linux_utime_args *);
sys/amd64/linux/linux_proto.h
1547
int linux_mknod(struct thread *, struct linux_mknod_args *);
sys/amd64/linux/linux_proto.h
1548
int linux_personality(struct thread *, struct linux_personality_args *);
sys/amd64/linux/linux_proto.h
1549
int linux_ustat(struct thread *, struct linux_ustat_args *);
sys/amd64/linux/linux_proto.h
1550
int linux_statfs(struct thread *, struct linux_statfs_args *);
sys/amd64/linux/linux_proto.h
1551
int linux_fstatfs(struct thread *, struct linux_fstatfs_args *);
sys/amd64/linux/linux_proto.h
1552
int linux_sysfs(struct thread *, struct linux_sysfs_args *);
sys/amd64/linux/linux_proto.h
1553
int linux_getpriority(struct thread *, struct linux_getpriority_args *);
sys/amd64/linux/linux_proto.h
1554
int linux_sched_setparam(struct thread *, struct linux_sched_setparam_args *);
sys/amd64/linux/linux_proto.h
1555
int linux_sched_getparam(struct thread *, struct linux_sched_getparam_args *);
sys/amd64/linux/linux_proto.h
1556
int linux_sched_setscheduler(struct thread *, struct linux_sched_setscheduler_args *);
sys/amd64/linux/linux_proto.h
1557
int linux_sched_getscheduler(struct thread *, struct linux_sched_getscheduler_args *);
sys/amd64/linux/linux_proto.h
1558
int linux_sched_get_priority_max(struct thread *, struct linux_sched_get_priority_max_args *);
sys/amd64/linux/linux_proto.h
1559
int linux_sched_get_priority_min(struct thread *, struct linux_sched_get_priority_min_args *);
sys/amd64/linux/linux_proto.h
1560
int linux_sched_rr_get_interval(struct thread *, struct linux_sched_rr_get_interval_args *);
sys/amd64/linux/linux_proto.h
1561
int linux_vhangup(struct thread *, struct linux_vhangup_args *);
sys/amd64/linux/linux_proto.h
1562
int linux_modify_ldt(struct thread *, struct linux_modify_ldt_args *);
sys/amd64/linux/linux_proto.h
1563
int linux_pivot_root(struct thread *, struct linux_pivot_root_args *);
sys/amd64/linux/linux_proto.h
1564
int linux_sysctl(struct thread *, struct linux_sysctl_args *);
sys/amd64/linux/linux_proto.h
1565
int linux_prctl(struct thread *, struct linux_prctl_args *);
sys/amd64/linux/linux_proto.h
1566
int linux_arch_prctl(struct thread *, struct linux_arch_prctl_args *);
sys/amd64/linux/linux_proto.h
1567
int linux_adjtimex(struct thread *, struct linux_adjtimex_args *);
sys/amd64/linux/linux_proto.h
1568
int linux_setrlimit(struct thread *, struct linux_setrlimit_args *);
sys/amd64/linux/linux_proto.h
1569
int linux_mount(struct thread *, struct linux_mount_args *);
sys/amd64/linux/linux_proto.h
1570
int linux_umount(struct thread *, struct linux_umount_args *);
sys/amd64/linux/linux_proto.h
1571
int linux_swapoff(struct thread *, struct linux_swapoff_args *);
sys/amd64/linux/linux_proto.h
1572
int linux_reboot(struct thread *, struct linux_reboot_args *);
sys/amd64/linux/linux_proto.h
1573
int linux_sethostname(struct thread *, struct linux_sethostname_args *);
sys/amd64/linux/linux_proto.h
1574
int linux_setdomainname(struct thread *, struct linux_setdomainname_args *);
sys/amd64/linux/linux_proto.h
1575
int linux_iopl(struct thread *, struct linux_iopl_args *);
sys/amd64/linux/linux_proto.h
1576
int linux_ioperm(struct thread *, struct linux_ioperm_args *);
sys/amd64/linux/linux_proto.h
1577
int linux_init_module(struct thread *, struct linux_init_module_args *);
sys/amd64/linux/linux_proto.h
1578
int linux_delete_module(struct thread *, struct linux_delete_module_args *);
sys/amd64/linux/linux_proto.h
1579
int linux_quotactl(struct thread *, struct linux_quotactl_args *);
sys/amd64/linux/linux_proto.h
1580
int linux_gettid(struct thread *, struct linux_gettid_args *);
sys/amd64/linux/linux_proto.h
1581
int linux_readahead(struct thread *, struct linux_readahead_args *);
sys/amd64/linux/linux_proto.h
1582
int linux_setxattr(struct thread *, struct linux_setxattr_args *);
sys/amd64/linux/linux_proto.h
1583
int linux_lsetxattr(struct thread *, struct linux_lsetxattr_args *);
sys/amd64/linux/linux_proto.h
1584
int linux_fsetxattr(struct thread *, struct linux_fsetxattr_args *);
sys/amd64/linux/linux_proto.h
1585
int linux_getxattr(struct thread *, struct linux_getxattr_args *);
sys/amd64/linux/linux_proto.h
1586
int linux_lgetxattr(struct thread *, struct linux_lgetxattr_args *);
sys/amd64/linux/linux_proto.h
1587
int linux_fgetxattr(struct thread *, struct linux_fgetxattr_args *);
sys/amd64/linux/linux_proto.h
1588
int linux_listxattr(struct thread *, struct linux_listxattr_args *);
sys/amd64/linux/linux_proto.h
1589
int linux_llistxattr(struct thread *, struct linux_llistxattr_args *);
sys/amd64/linux/linux_proto.h
1590
int linux_flistxattr(struct thread *, struct linux_flistxattr_args *);
sys/amd64/linux/linux_proto.h
1591
int linux_removexattr(struct thread *, struct linux_removexattr_args *);
sys/amd64/linux/linux_proto.h
1592
int linux_lremovexattr(struct thread *, struct linux_lremovexattr_args *);
sys/amd64/linux/linux_proto.h
1593
int linux_fremovexattr(struct thread *, struct linux_fremovexattr_args *);
sys/amd64/linux/linux_proto.h
1594
int linux_tkill(struct thread *, struct linux_tkill_args *);
sys/amd64/linux/linux_proto.h
1595
int linux_time(struct thread *, struct linux_time_args *);
sys/amd64/linux/linux_proto.h
1596
int linux_sys_futex(struct thread *, struct linux_sys_futex_args *);
sys/amd64/linux/linux_proto.h
1597
int linux_sched_setaffinity(struct thread *, struct linux_sched_setaffinity_args *);
sys/amd64/linux/linux_proto.h
1598
int linux_sched_getaffinity(struct thread *, struct linux_sched_getaffinity_args *);
sys/amd64/linux/linux_proto.h
1599
int linux_io_setup(struct thread *, struct linux_io_setup_args *);
sys/amd64/linux/linux_proto.h
1600
int linux_io_destroy(struct thread *, struct linux_io_destroy_args *);
sys/amd64/linux/linux_proto.h
1601
int linux_io_getevents(struct thread *, struct linux_io_getevents_args *);
sys/amd64/linux/linux_proto.h
1602
int linux_io_submit(struct thread *, struct linux_io_submit_args *);
sys/amd64/linux/linux_proto.h
1603
int linux_io_cancel(struct thread *, struct linux_io_cancel_args *);
sys/amd64/linux/linux_proto.h
1604
int linux_lookup_dcookie(struct thread *, struct linux_lookup_dcookie_args *);
sys/amd64/linux/linux_proto.h
1605
int linux_epoll_create(struct thread *, struct linux_epoll_create_args *);
sys/amd64/linux/linux_proto.h
1606
int linux_remap_file_pages(struct thread *, struct linux_remap_file_pages_args *);
sys/amd64/linux/linux_proto.h
1607
int linux_getdents64(struct thread *, struct linux_getdents64_args *);
sys/amd64/linux/linux_proto.h
1608
int linux_set_tid_address(struct thread *, struct linux_set_tid_address_args *);
sys/amd64/linux/linux_proto.h
1609
int linux_restart_syscall(struct thread *, struct linux_restart_syscall_args *);
sys/amd64/linux/linux_proto.h
1610
int linux_semtimedop(struct thread *, struct linux_semtimedop_args *);
sys/amd64/linux/linux_proto.h
1611
int linux_fadvise64(struct thread *, struct linux_fadvise64_args *);
sys/amd64/linux/linux_proto.h
1612
int linux_timer_create(struct thread *, struct linux_timer_create_args *);
sys/amd64/linux/linux_proto.h
1613
int linux_timer_settime(struct thread *, struct linux_timer_settime_args *);
sys/amd64/linux/linux_proto.h
1614
int linux_timer_gettime(struct thread *, struct linux_timer_gettime_args *);
sys/amd64/linux/linux_proto.h
1615
int linux_timer_getoverrun(struct thread *, struct linux_timer_getoverrun_args *);
sys/amd64/linux/linux_proto.h
1616
int linux_timer_delete(struct thread *, struct linux_timer_delete_args *);
sys/amd64/linux/linux_proto.h
1617
int linux_clock_settime(struct thread *, struct linux_clock_settime_args *);
sys/amd64/linux/linux_proto.h
1618
int linux_clock_gettime(struct thread *, struct linux_clock_gettime_args *);
sys/amd64/linux/linux_proto.h
1619
int linux_clock_getres(struct thread *, struct linux_clock_getres_args *);
sys/amd64/linux/linux_proto.h
1620
int linux_clock_nanosleep(struct thread *, struct linux_clock_nanosleep_args *);
sys/amd64/linux/linux_proto.h
1621
int linux_exit_group(struct thread *, struct linux_exit_group_args *);
sys/amd64/linux/linux_proto.h
1622
int linux_epoll_wait(struct thread *, struct linux_epoll_wait_args *);
sys/amd64/linux/linux_proto.h
1623
int linux_epoll_ctl(struct thread *, struct linux_epoll_ctl_args *);
sys/amd64/linux/linux_proto.h
1624
int linux_tgkill(struct thread *, struct linux_tgkill_args *);
sys/amd64/linux/linux_proto.h
1625
int linux_utimes(struct thread *, struct linux_utimes_args *);
sys/amd64/linux/linux_proto.h
1626
int linux_mbind(struct thread *, struct linux_mbind_args *);
sys/amd64/linux/linux_proto.h
1627
int linux_set_mempolicy(struct thread *, struct linux_set_mempolicy_args *);
sys/amd64/linux/linux_proto.h
1628
int linux_get_mempolicy(struct thread *, struct linux_get_mempolicy_args *);
sys/amd64/linux/linux_proto.h
1629
int linux_mq_open(struct thread *, struct linux_mq_open_args *);
sys/amd64/linux/linux_proto.h
1630
int linux_mq_unlink(struct thread *, struct linux_mq_unlink_args *);
sys/amd64/linux/linux_proto.h
1631
int linux_mq_timedsend(struct thread *, struct linux_mq_timedsend_args *);
sys/amd64/linux/linux_proto.h
1632
int linux_mq_timedreceive(struct thread *, struct linux_mq_timedreceive_args *);
sys/amd64/linux/linux_proto.h
1633
int linux_mq_notify(struct thread *, struct linux_mq_notify_args *);
sys/amd64/linux/linux_proto.h
1634
int linux_mq_getsetattr(struct thread *, struct linux_mq_getsetattr_args *);
sys/amd64/linux/linux_proto.h
1635
int linux_kexec_load(struct thread *, struct linux_kexec_load_args *);
sys/amd64/linux/linux_proto.h
1636
int linux_waitid(struct thread *, struct linux_waitid_args *);
sys/amd64/linux/linux_proto.h
1637
int linux_add_key(struct thread *, struct linux_add_key_args *);
sys/amd64/linux/linux_proto.h
1638
int linux_request_key(struct thread *, struct linux_request_key_args *);
sys/amd64/linux/linux_proto.h
1639
int linux_keyctl(struct thread *, struct linux_keyctl_args *);
sys/amd64/linux/linux_proto.h
1640
int linux_ioprio_set(struct thread *, struct linux_ioprio_set_args *);
sys/amd64/linux/linux_proto.h
1641
int linux_ioprio_get(struct thread *, struct linux_ioprio_get_args *);
sys/amd64/linux/linux_proto.h
1642
int linux_inotify_init(struct thread *, struct linux_inotify_init_args *);
sys/amd64/linux/linux_proto.h
1643
int linux_inotify_add_watch(struct thread *, struct linux_inotify_add_watch_args *);
sys/amd64/linux/linux_proto.h
1644
int linux_inotify_rm_watch(struct thread *, struct linux_inotify_rm_watch_args *);
sys/amd64/linux/linux_proto.h
1645
int linux_migrate_pages(struct thread *, struct linux_migrate_pages_args *);
sys/amd64/linux/linux_proto.h
1646
int linux_openat(struct thread *, struct linux_openat_args *);
sys/amd64/linux/linux_proto.h
1647
int linux_mkdirat(struct thread *, struct linux_mkdirat_args *);
sys/amd64/linux/linux_proto.h
1648
int linux_mknodat(struct thread *, struct linux_mknodat_args *);
sys/amd64/linux/linux_proto.h
1649
int linux_fchownat(struct thread *, struct linux_fchownat_args *);
sys/amd64/linux/linux_proto.h
1650
int linux_futimesat(struct thread *, struct linux_futimesat_args *);
sys/amd64/linux/linux_proto.h
1651
int linux_newfstatat(struct thread *, struct linux_newfstatat_args *);
sys/amd64/linux/linux_proto.h
1652
int linux_unlinkat(struct thread *, struct linux_unlinkat_args *);
sys/amd64/linux/linux_proto.h
1653
int linux_renameat(struct thread *, struct linux_renameat_args *);
sys/amd64/linux/linux_proto.h
1654
int linux_linkat(struct thread *, struct linux_linkat_args *);
sys/amd64/linux/linux_proto.h
1655
int linux_symlinkat(struct thread *, struct linux_symlinkat_args *);
sys/amd64/linux/linux_proto.h
1656
int linux_readlinkat(struct thread *, struct linux_readlinkat_args *);
sys/amd64/linux/linux_proto.h
1657
int linux_fchmodat(struct thread *, struct linux_fchmodat_args *);
sys/amd64/linux/linux_proto.h
1658
int linux_faccessat(struct thread *, struct linux_faccessat_args *);
sys/amd64/linux/linux_proto.h
1659
int linux_pselect6(struct thread *, struct linux_pselect6_args *);
sys/amd64/linux/linux_proto.h
1660
int linux_ppoll(struct thread *, struct linux_ppoll_args *);
sys/amd64/linux/linux_proto.h
1661
int linux_unshare(struct thread *, struct linux_unshare_args *);
sys/amd64/linux/linux_proto.h
1662
int linux_set_robust_list(struct thread *, struct linux_set_robust_list_args *);
sys/amd64/linux/linux_proto.h
1663
int linux_get_robust_list(struct thread *, struct linux_get_robust_list_args *);
sys/amd64/linux/linux_proto.h
1664
int linux_splice(struct thread *, struct linux_splice_args *);
sys/amd64/linux/linux_proto.h
1665
int linux_tee(struct thread *, struct linux_tee_args *);
sys/amd64/linux/linux_proto.h
1666
int linux_sync_file_range(struct thread *, struct linux_sync_file_range_args *);
sys/amd64/linux/linux_proto.h
1667
int linux_vmsplice(struct thread *, struct linux_vmsplice_args *);
sys/amd64/linux/linux_proto.h
1668
int linux_move_pages(struct thread *, struct linux_move_pages_args *);
sys/amd64/linux/linux_proto.h
1669
int linux_utimensat(struct thread *, struct linux_utimensat_args *);
sys/amd64/linux/linux_proto.h
1670
int linux_epoll_pwait(struct thread *, struct linux_epoll_pwait_args *);
sys/amd64/linux/linux_proto.h
1671
int linux_signalfd(struct thread *, struct linux_signalfd_args *);
sys/amd64/linux/linux_proto.h
1672
int linux_timerfd_create(struct thread *, struct linux_timerfd_create_args *);
sys/amd64/linux/linux_proto.h
1673
int linux_eventfd(struct thread *, struct linux_eventfd_args *);
sys/amd64/linux/linux_proto.h
1674
int linux_fallocate(struct thread *, struct linux_fallocate_args *);
sys/amd64/linux/linux_proto.h
1675
int linux_timerfd_settime(struct thread *, struct linux_timerfd_settime_args *);
sys/amd64/linux/linux_proto.h
1676
int linux_timerfd_gettime(struct thread *, struct linux_timerfd_gettime_args *);
sys/amd64/linux/linux_proto.h
1677
int linux_accept4(struct thread *, struct linux_accept4_args *);
sys/amd64/linux/linux_proto.h
1678
int linux_signalfd4(struct thread *, struct linux_signalfd4_args *);
sys/amd64/linux/linux_proto.h
1679
int linux_eventfd2(struct thread *, struct linux_eventfd2_args *);
sys/amd64/linux/linux_proto.h
1680
int linux_epoll_create1(struct thread *, struct linux_epoll_create1_args *);
sys/amd64/linux/linux_proto.h
1681
int linux_dup3(struct thread *, struct linux_dup3_args *);
sys/amd64/linux/linux_proto.h
1682
int linux_pipe2(struct thread *, struct linux_pipe2_args *);
sys/amd64/linux/linux_proto.h
1683
int linux_inotify_init1(struct thread *, struct linux_inotify_init1_args *);
sys/amd64/linux/linux_proto.h
1684
int linux_preadv(struct thread *, struct linux_preadv_args *);
sys/amd64/linux/linux_proto.h
1685
int linux_pwritev(struct thread *, struct linux_pwritev_args *);
sys/amd64/linux/linux_proto.h
1686
int linux_rt_tgsigqueueinfo(struct thread *, struct linux_rt_tgsigqueueinfo_args *);
sys/amd64/linux/linux_proto.h
1687
int linux_perf_event_open(struct thread *, struct linux_perf_event_open_args *);
sys/amd64/linux/linux_proto.h
1688
int linux_recvmmsg(struct thread *, struct linux_recvmmsg_args *);
sys/amd64/linux/linux_proto.h
1689
int linux_fanotify_init(struct thread *, struct linux_fanotify_init_args *);
sys/amd64/linux/linux_proto.h
1690
int linux_fanotify_mark(struct thread *, struct linux_fanotify_mark_args *);
sys/amd64/linux/linux_proto.h
1691
int linux_prlimit64(struct thread *, struct linux_prlimit64_args *);
sys/amd64/linux/linux_proto.h
1692
int linux_name_to_handle_at(struct thread *, struct linux_name_to_handle_at_args *);
sys/amd64/linux/linux_proto.h
1693
int linux_open_by_handle_at(struct thread *, struct linux_open_by_handle_at_args *);
sys/amd64/linux/linux_proto.h
1694
int linux_clock_adjtime(struct thread *, struct linux_clock_adjtime_args *);
sys/amd64/linux/linux_proto.h
1695
int linux_syncfs(struct thread *, struct linux_syncfs_args *);
sys/amd64/linux/linux_proto.h
1696
int linux_sendmmsg(struct thread *, struct linux_sendmmsg_args *);
sys/amd64/linux/linux_proto.h
1697
int linux_setns(struct thread *, struct linux_setns_args *);
sys/amd64/linux/linux_proto.h
1698
int linux_getcpu(struct thread *, struct linux_getcpu_args *);
sys/amd64/linux/linux_proto.h
1699
int linux_process_vm_readv(struct thread *, struct linux_process_vm_readv_args *);
sys/amd64/linux/linux_proto.h
1700
int linux_process_vm_writev(struct thread *, struct linux_process_vm_writev_args *);
sys/amd64/linux/linux_proto.h
1701
int linux_kcmp(struct thread *, struct linux_kcmp_args *);
sys/amd64/linux/linux_proto.h
1702
int linux_finit_module(struct thread *, struct linux_finit_module_args *);
sys/amd64/linux/linux_proto.h
1703
int linux_sched_setattr(struct thread *, struct linux_sched_setattr_args *);
sys/amd64/linux/linux_proto.h
1704
int linux_sched_getattr(struct thread *, struct linux_sched_getattr_args *);
sys/amd64/linux/linux_proto.h
1705
int linux_renameat2(struct thread *, struct linux_renameat2_args *);
sys/amd64/linux/linux_proto.h
1706
int linux_seccomp(struct thread *, struct linux_seccomp_args *);
sys/amd64/linux/linux_proto.h
1707
int linux_getrandom(struct thread *, struct linux_getrandom_args *);
sys/amd64/linux/linux_proto.h
1708
int linux_memfd_create(struct thread *, struct linux_memfd_create_args *);
sys/amd64/linux/linux_proto.h
1709
int linux_kexec_file_load(struct thread *, struct linux_kexec_file_load_args *);
sys/amd64/linux/linux_proto.h
1710
int linux_bpf(struct thread *, struct linux_bpf_args *);
sys/amd64/linux/linux_proto.h
1711
int linux_execveat(struct thread *, struct linux_execveat_args *);
sys/amd64/linux/linux_proto.h
1712
int linux_userfaultfd(struct thread *, struct linux_userfaultfd_args *);
sys/amd64/linux/linux_proto.h
1713
int linux_membarrier(struct thread *, struct linux_membarrier_args *);
sys/amd64/linux/linux_proto.h
1714
int linux_mlock2(struct thread *, struct linux_mlock2_args *);
sys/amd64/linux/linux_proto.h
1715
int linux_copy_file_range(struct thread *, struct linux_copy_file_range_args *);
sys/amd64/linux/linux_proto.h
1716
int linux_preadv2(struct thread *, struct linux_preadv2_args *);
sys/amd64/linux/linux_proto.h
1717
int linux_pwritev2(struct thread *, struct linux_pwritev2_args *);
sys/amd64/linux/linux_proto.h
1718
int linux_pkey_mprotect(struct thread *, struct linux_pkey_mprotect_args *);
sys/amd64/linux/linux_proto.h
1719
int linux_pkey_alloc(struct thread *, struct linux_pkey_alloc_args *);
sys/amd64/linux/linux_proto.h
1720
int linux_pkey_free(struct thread *, struct linux_pkey_free_args *);
sys/amd64/linux/linux_proto.h
1721
int linux_statx(struct thread *, struct linux_statx_args *);
sys/amd64/linux/linux_proto.h
1722
int linux_io_pgetevents(struct thread *, struct linux_io_pgetevents_args *);
sys/amd64/linux/linux_proto.h
1723
int linux_rseq(struct thread *, struct linux_rseq_args *);
sys/amd64/linux/linux_proto.h
1724
int linux_pidfd_send_signal(struct thread *, struct linux_pidfd_send_signal_args *);
sys/amd64/linux/linux_proto.h
1725
int linux_io_uring_setup(struct thread *, struct linux_io_uring_setup_args *);
sys/amd64/linux/linux_proto.h
1726
int linux_io_uring_enter(struct thread *, struct linux_io_uring_enter_args *);
sys/amd64/linux/linux_proto.h
1727
int linux_io_uring_register(struct thread *, struct linux_io_uring_register_args *);
sys/amd64/linux/linux_proto.h
1728
int linux_open_tree(struct thread *, struct linux_open_tree_args *);
sys/amd64/linux/linux_proto.h
1729
int linux_move_mount(struct thread *, struct linux_move_mount_args *);
sys/amd64/linux/linux_proto.h
1730
int linux_fsopen(struct thread *, struct linux_fsopen_args *);
sys/amd64/linux/linux_proto.h
1731
int linux_fsconfig(struct thread *, struct linux_fsconfig_args *);
sys/amd64/linux/linux_proto.h
1732
int linux_fsmount(struct thread *, struct linux_fsmount_args *);
sys/amd64/linux/linux_proto.h
1733
int linux_fspick(struct thread *, struct linux_fspick_args *);
sys/amd64/linux/linux_proto.h
1734
int linux_pidfd_open(struct thread *, struct linux_pidfd_open_args *);
sys/amd64/linux/linux_proto.h
1735
int linux_clone3(struct thread *, struct linux_clone3_args *);
sys/amd64/linux/linux_proto.h
1736
int linux_close_range(struct thread *, struct linux_close_range_args *);
sys/amd64/linux/linux_proto.h
1737
int linux_openat2(struct thread *, struct linux_openat2_args *);
sys/amd64/linux/linux_proto.h
1738
int linux_pidfd_getfd(struct thread *, struct linux_pidfd_getfd_args *);
sys/amd64/linux/linux_proto.h
1739
int linux_faccessat2(struct thread *, struct linux_faccessat2_args *);
sys/amd64/linux/linux_proto.h
1740
int linux_process_madvise(struct thread *, struct linux_process_madvise_args *);
sys/amd64/linux/linux_proto.h
1741
int linux_epoll_pwait2(struct thread *, struct linux_epoll_pwait2_args *);
sys/amd64/linux/linux_proto.h
1742
int linux_mount_setattr(struct thread *, struct linux_mount_setattr_args *);
sys/amd64/linux/linux_proto.h
1743
int linux_quotactl_fd(struct thread *, struct linux_quotactl_fd_args *);
sys/amd64/linux/linux_proto.h
1744
int linux_landlock_create_ruleset(struct thread *, struct linux_landlock_create_ruleset_args *);
sys/amd64/linux/linux_proto.h
1745
int linux_landlock_add_rule(struct thread *, struct linux_landlock_add_rule_args *);
sys/amd64/linux/linux_proto.h
1746
int linux_landlock_restrict_self(struct thread *, struct linux_landlock_restrict_self_args *);
sys/amd64/linux/linux_proto.h
1747
int linux_memfd_secret(struct thread *, struct linux_memfd_secret_args *);
sys/amd64/linux/linux_proto.h
1748
int linux_process_mrelease(struct thread *, struct linux_process_mrelease_args *);
sys/amd64/linux/linux_proto.h
1749
int linux_futex_waitv(struct thread *, struct linux_futex_waitv_args *);
sys/amd64/linux/linux_proto.h
1750
int linux_set_mempolicy_home_node(struct thread *, struct linux_set_mempolicy_home_node_args *);
sys/amd64/linux/linux_proto.h
1751
int linux_cachestat(struct thread *, struct linux_cachestat_args *);
sys/amd64/linux/linux_proto.h
1752
int linux_fchmodat2(struct thread *, struct linux_fchmodat2_args *);
sys/amd64/linux/linux_proto.h
1753
int linux_map_shadow_stack(struct thread *, struct linux_map_shadow_stack_args *);
sys/amd64/linux/linux_proto.h
23
struct thread;
sys/amd64/linux/linux_sysvec.c
106
static void linux_set_syscall_retval(struct thread *td, int error);
sys/amd64/linux/linux_sysvec.c
107
static int linux_fetch_syscall_args(struct thread *td);
sys/amd64/linux/linux_sysvec.c
108
static void linux_exec_setregs(struct thread *td, struct image_params *imgp,
sys/amd64/linux/linux_sysvec.c
113
static void linux_set_fork_retval(struct thread *td);
sys/amd64/linux/linux_sysvec.c
114
static int linux_vsyscall(struct thread *td);
sys/amd64/linux/linux_sysvec.c
140
linux_fetch_syscall_args(struct thread *td)
sys/amd64/linux/linux_sysvec.c
175
linux_set_syscall_retval(struct thread *td, int error)
sys/amd64/linux/linux_sysvec.c
214
linux_set_fork_retval(struct thread *td)
sys/amd64/linux/linux_sysvec.c
235
linux_exec_setregs(struct thread *td, struct image_params *imgp,
sys/amd64/linux/linux_sysvec.c
277
linux_fxrstor(struct thread *td, mcontext_t *mcp, struct l_sigcontext *sc)
sys/amd64/linux/linux_sysvec.c
290
linux_xrstor(struct thread *td, mcontext_t *mcp, struct l_sigcontext *sc)
sys/amd64/linux/linux_sysvec.c
338
linux_copyin_fpstate(struct thread *td, struct l_ucontext *uc)
sys/amd64/linux/linux_sysvec.c
356
linux_rt_sigreturn(struct thread *td, struct linux_rt_sigreturn_args *args)
sys/amd64/linux/linux_sysvec.c
487
linux_copyout_fpstate(struct thread *td, struct l_ucontext *uc, char **sp)
sys/amd64/linux/linux_sysvec.c
522
struct thread *td;
sys/amd64/linux/linux_sysvec.c
641
linux_vsyscall(struct thread *td)
sys/amd64/linux32/linux.h
426
int linux_ptrace_peekuser(struct thread *td, pid_t pid,
sys/amd64/linux32/linux.h
428
int linux_ptrace_pokeuser(struct thread *td, pid_t pid,
sys/amd64/linux32/linux32_machdep.c
100
linux_readv(struct thread *td, struct linux_readv_args *uap)
sys/amd64/linux32/linux32_machdep.c
119
linux_ipc(struct thread *td, struct linux_ipc_args *args)
sys/amd64/linux32/linux32_machdep.c
250
linux_old_select(struct thread *td, struct linux_old_select_args *args)
sys/amd64/linux32/linux32_machdep.c
269
linux_set_cloned_tls(struct thread *td, void *desc)
sys/amd64/linux32/linux32_machdep.c
295
linux_set_upcall(struct thread *td, register_t stack)
sys/amd64/linux32/linux32_machdep.c
310
linux_mmap(struct thread *td, struct linux_mmap_args *args)
sys/amd64/linux32/linux32_machdep.c
325
linux_iopl(struct thread *td, struct linux_iopl_args *args)
sys/amd64/linux32/linux32_machdep.c
342
linux_sigaction(struct thread *td, struct linux_sigaction_args *args)
sys/amd64/linux32/linux32_machdep.c
379
linux_sigsuspend(struct thread *td, struct linux_sigsuspend_args *args)
sys/amd64/linux32/linux32_machdep.c
391
linux_pause(struct thread *td, struct linux_pause_args *args)
sys/amd64/linux32/linux32_machdep.c
403
linux_gettimeofday(struct thread *td, struct linux_gettimeofday_args *uap)
sys/amd64/linux32/linux32_machdep.c
425
linux_settimeofday(struct thread *td, struct linux_settimeofday_args *uap)
sys/amd64/linux32/linux32_machdep.c
452
linux_getrusage(struct thread *td, struct linux_getrusage_args *uap)
sys/amd64/linux32/linux32_machdep.c
466
linux_set_thread_area(struct thread *td,
sys/amd64/linux32/linux32_machdep.c
599
linux_ptrace_peekuser(struct thread *td, pid_t pid, void *addr, void *data)
sys/amd64/linux32/linux32_machdep.c
608
linux_ptrace_pokeuser(struct thread *td, pid_t pid, void *addr, void *data)
sys/amd64/linux32/linux32_proto.h
1742
int linux_exit(struct thread *, struct linux_exit_args *);
sys/amd64/linux32/linux32_proto.h
1743
int linux_fork(struct thread *, struct linux_fork_args *);
sys/amd64/linux32/linux32_proto.h
1744
int linux_write(struct thread *, struct linux_write_args *);
sys/amd64/linux32/linux32_proto.h
1745
int linux_open(struct thread *, struct linux_open_args *);
sys/amd64/linux32/linux32_proto.h
1746
int linux_waitpid(struct thread *, struct linux_waitpid_args *);
sys/amd64/linux32/linux32_proto.h
1747
int linux_creat(struct thread *, struct linux_creat_args *);
sys/amd64/linux32/linux32_proto.h
1748
int linux_link(struct thread *, struct linux_link_args *);
sys/amd64/linux32/linux32_proto.h
1749
int linux_unlink(struct thread *, struct linux_unlink_args *);
sys/amd64/linux32/linux32_proto.h
1750
int linux_execve(struct thread *, struct linux_execve_args *);
sys/amd64/linux32/linux32_proto.h
1751
int linux_chdir(struct thread *, struct linux_chdir_args *);
sys/amd64/linux32/linux32_proto.h
1752
int linux_time(struct thread *, struct linux_time_args *);
sys/amd64/linux32/linux32_proto.h
1753
int linux_mknod(struct thread *, struct linux_mknod_args *);
sys/amd64/linux32/linux32_proto.h
1754
int linux_chmod(struct thread *, struct linux_chmod_args *);
sys/amd64/linux32/linux32_proto.h
1755
int linux_lchown16(struct thread *, struct linux_lchown16_args *);
sys/amd64/linux32/linux32_proto.h
1756
int linux_stat(struct thread *, struct linux_stat_args *);
sys/amd64/linux32/linux32_proto.h
1757
int linux_lseek(struct thread *, struct linux_lseek_args *);
sys/amd64/linux32/linux32_proto.h
1758
int linux_getpid(struct thread *, struct linux_getpid_args *);
sys/amd64/linux32/linux32_proto.h
1759
int linux_mount(struct thread *, struct linux_mount_args *);
sys/amd64/linux32/linux32_proto.h
1760
int linux_oldumount(struct thread *, struct linux_oldumount_args *);
sys/amd64/linux32/linux32_proto.h
1761
int linux_setuid16(struct thread *, struct linux_setuid16_args *);
sys/amd64/linux32/linux32_proto.h
1762
int linux_getuid16(struct thread *, struct linux_getuid16_args *);
sys/amd64/linux32/linux32_proto.h
1763
int linux_stime(struct thread *, struct linux_stime_args *);
sys/amd64/linux32/linux32_proto.h
1764
int linux_ptrace(struct thread *, struct linux_ptrace_args *);
sys/amd64/linux32/linux32_proto.h
1765
int linux_alarm(struct thread *, struct linux_alarm_args *);
sys/amd64/linux32/linux32_proto.h
1766
int linux_pause(struct thread *, struct linux_pause_args *);
sys/amd64/linux32/linux32_proto.h
1767
int linux_utime(struct thread *, struct linux_utime_args *);
sys/amd64/linux32/linux32_proto.h
1768
int linux_access(struct thread *, struct linux_access_args *);
sys/amd64/linux32/linux32_proto.h
1769
int linux_nice(struct thread *, struct linux_nice_args *);
sys/amd64/linux32/linux32_proto.h
1770
int linux_kill(struct thread *, struct linux_kill_args *);
sys/amd64/linux32/linux32_proto.h
1771
int linux_rename(struct thread *, struct linux_rename_args *);
sys/amd64/linux32/linux32_proto.h
1772
int linux_mkdir(struct thread *, struct linux_mkdir_args *);
sys/amd64/linux32/linux32_proto.h
1773
int linux_rmdir(struct thread *, struct linux_rmdir_args *);
sys/amd64/linux32/linux32_proto.h
1774
int linux_pipe(struct thread *, struct linux_pipe_args *);
sys/amd64/linux32/linux32_proto.h
1775
int linux_times(struct thread *, struct linux_times_args *);
sys/amd64/linux32/linux32_proto.h
1776
int linux_brk(struct thread *, struct linux_brk_args *);
sys/amd64/linux32/linux32_proto.h
1777
int linux_setgid16(struct thread *, struct linux_setgid16_args *);
sys/amd64/linux32/linux32_proto.h
1778
int linux_getgid16(struct thread *, struct linux_getgid16_args *);
sys/amd64/linux32/linux32_proto.h
1779
int linux_signal(struct thread *, struct linux_signal_args *);
sys/amd64/linux32/linux32_proto.h
1780
int linux_geteuid16(struct thread *, struct linux_geteuid16_args *);
sys/amd64/linux32/linux32_proto.h
1781
int linux_getegid16(struct thread *, struct linux_getegid16_args *);
sys/amd64/linux32/linux32_proto.h
1782
int linux_umount(struct thread *, struct linux_umount_args *);
sys/amd64/linux32/linux32_proto.h
1783
int linux_ioctl(struct thread *, struct linux_ioctl_args *);
sys/amd64/linux32/linux32_proto.h
1784
int linux_fcntl(struct thread *, struct linux_fcntl_args *);
sys/amd64/linux32/linux32_proto.h
1785
int linux_olduname(struct thread *, struct linux_olduname_args *);
sys/amd64/linux32/linux32_proto.h
1786
int linux_ustat(struct thread *, struct linux_ustat_args *);
sys/amd64/linux32/linux32_proto.h
1787
int linux_getppid(struct thread *, struct linux_getppid_args *);
sys/amd64/linux32/linux32_proto.h
1788
int linux_sigaction(struct thread *, struct linux_sigaction_args *);
sys/amd64/linux32/linux32_proto.h
1789
int linux_sgetmask(struct thread *, struct linux_sgetmask_args *);
sys/amd64/linux32/linux32_proto.h
1790
int linux_ssetmask(struct thread *, struct linux_ssetmask_args *);
sys/amd64/linux32/linux32_proto.h
1791
int linux_setreuid16(struct thread *, struct linux_setreuid16_args *);
sys/amd64/linux32/linux32_proto.h
1792
int linux_setregid16(struct thread *, struct linux_setregid16_args *);
sys/amd64/linux32/linux32_proto.h
1793
int linux_sigsuspend(struct thread *, struct linux_sigsuspend_args *);
sys/amd64/linux32/linux32_proto.h
1794
int linux_sigpending(struct thread *, struct linux_sigpending_args *);
sys/amd64/linux32/linux32_proto.h
1795
int linux_sethostname(struct thread *, struct linux_sethostname_args *);
sys/amd64/linux32/linux32_proto.h
1796
int linux_setrlimit(struct thread *, struct linux_setrlimit_args *);
sys/amd64/linux32/linux32_proto.h
1797
int linux_old_getrlimit(struct thread *, struct linux_old_getrlimit_args *);
sys/amd64/linux32/linux32_proto.h
1798
int linux_getrusage(struct thread *, struct linux_getrusage_args *);
sys/amd64/linux32/linux32_proto.h
1799
int linux_gettimeofday(struct thread *, struct linux_gettimeofday_args *);
sys/amd64/linux32/linux32_proto.h
1800
int linux_settimeofday(struct thread *, struct linux_settimeofday_args *);
sys/amd64/linux32/linux32_proto.h
1801
int linux_getgroups16(struct thread *, struct linux_getgroups16_args *);
sys/amd64/linux32/linux32_proto.h
1802
int linux_setgroups16(struct thread *, struct linux_setgroups16_args *);
sys/amd64/linux32/linux32_proto.h
1803
int linux_old_select(struct thread *, struct linux_old_select_args *);
sys/amd64/linux32/linux32_proto.h
1804
int linux_symlink(struct thread *, struct linux_symlink_args *);
sys/amd64/linux32/linux32_proto.h
1805
int linux_lstat(struct thread *, struct linux_lstat_args *);
sys/amd64/linux32/linux32_proto.h
1806
int linux_readlink(struct thread *, struct linux_readlink_args *);
sys/amd64/linux32/linux32_proto.h
1807
int linux_reboot(struct thread *, struct linux_reboot_args *);
sys/amd64/linux32/linux32_proto.h
1808
int linux_readdir(struct thread *, struct linux_readdir_args *);
sys/amd64/linux32/linux32_proto.h
1809
int linux_mmap(struct thread *, struct linux_mmap_args *);
sys/amd64/linux32/linux32_proto.h
1810
int linux_truncate(struct thread *, struct linux_truncate_args *);
sys/amd64/linux32/linux32_proto.h
1811
int linux_ftruncate(struct thread *, struct linux_ftruncate_args *);
sys/amd64/linux32/linux32_proto.h
1812
int linux_getpriority(struct thread *, struct linux_getpriority_args *);
sys/amd64/linux32/linux32_proto.h
1813
int linux_statfs(struct thread *, struct linux_statfs_args *);
sys/amd64/linux32/linux32_proto.h
1814
int linux_fstatfs(struct thread *, struct linux_fstatfs_args *);
sys/amd64/linux32/linux32_proto.h
1815
int linux_socketcall(struct thread *, struct linux_socketcall_args *);
sys/amd64/linux32/linux32_proto.h
1816
int linux_syslog(struct thread *, struct linux_syslog_args *);
sys/amd64/linux32/linux32_proto.h
1817
int linux_setitimer(struct thread *, struct linux_setitimer_args *);
sys/amd64/linux32/linux32_proto.h
1818
int linux_getitimer(struct thread *, struct linux_getitimer_args *);
sys/amd64/linux32/linux32_proto.h
1819
int linux_newstat(struct thread *, struct linux_newstat_args *);
sys/amd64/linux32/linux32_proto.h
1820
int linux_newlstat(struct thread *, struct linux_newlstat_args *);
sys/amd64/linux32/linux32_proto.h
1821
int linux_newfstat(struct thread *, struct linux_newfstat_args *);
sys/amd64/linux32/linux32_proto.h
1822
int linux_uname(struct thread *, struct linux_uname_args *);
sys/amd64/linux32/linux32_proto.h
1823
int linux_iopl(struct thread *, struct linux_iopl_args *);
sys/amd64/linux32/linux32_proto.h
1824
int linux_vhangup(struct thread *, struct linux_vhangup_args *);
sys/amd64/linux32/linux32_proto.h
1825
int linux_wait4(struct thread *, struct linux_wait4_args *);
sys/amd64/linux32/linux32_proto.h
1826
int linux_swapoff(struct thread *, struct linux_swapoff_args *);
sys/amd64/linux32/linux32_proto.h
1827
int linux_sysinfo(struct thread *, struct linux_sysinfo_args *);
sys/amd64/linux32/linux32_proto.h
1828
int linux_ipc(struct thread *, struct linux_ipc_args *);
sys/amd64/linux32/linux32_proto.h
1829
int linux_sigreturn(struct thread *, struct linux_sigreturn_args *);
sys/amd64/linux32/linux32_proto.h
1830
int linux_clone(struct thread *, struct linux_clone_args *);
sys/amd64/linux32/linux32_proto.h
1831
int linux_setdomainname(struct thread *, struct linux_setdomainname_args *);
sys/amd64/linux32/linux32_proto.h
1832
int linux_newuname(struct thread *, struct linux_newuname_args *);
sys/amd64/linux32/linux32_proto.h
1833
int linux_adjtimex(struct thread *, struct linux_adjtimex_args *);
sys/amd64/linux32/linux32_proto.h
1834
int linux_mprotect(struct thread *, struct linux_mprotect_args *);
sys/amd64/linux32/linux32_proto.h
1835
int linux_sigprocmask(struct thread *, struct linux_sigprocmask_args *);
sys/amd64/linux32/linux32_proto.h
1836
int linux_init_module(struct thread *, struct linux_init_module_args *);
sys/amd64/linux32/linux32_proto.h
1837
int linux_delete_module(struct thread *, struct linux_delete_module_args *);
sys/amd64/linux32/linux32_proto.h
1838
int linux_quotactl(struct thread *, struct linux_quotactl_args *);
sys/amd64/linux32/linux32_proto.h
1839
int linux_bdflush(struct thread *, struct linux_bdflush_args *);
sys/amd64/linux32/linux32_proto.h
1840
int linux_sysfs(struct thread *, struct linux_sysfs_args *);
sys/amd64/linux32/linux32_proto.h
1841
int linux_personality(struct thread *, struct linux_personality_args *);
sys/amd64/linux32/linux32_proto.h
1842
int linux_setfsuid16(struct thread *, struct linux_setfsuid16_args *);
sys/amd64/linux32/linux32_proto.h
1843
int linux_setfsgid16(struct thread *, struct linux_setfsgid16_args *);
sys/amd64/linux32/linux32_proto.h
1844
int linux_llseek(struct thread *, struct linux_llseek_args *);
sys/amd64/linux32/linux32_proto.h
1845
int linux_getdents(struct thread *, struct linux_getdents_args *);
sys/amd64/linux32/linux32_proto.h
1846
int linux_select(struct thread *, struct linux_select_args *);
sys/amd64/linux32/linux32_proto.h
1847
int linux_msync(struct thread *, struct linux_msync_args *);
sys/amd64/linux32/linux32_proto.h
1848
int linux_readv(struct thread *, struct linux_readv_args *);
sys/amd64/linux32/linux32_proto.h
1849
int linux_writev(struct thread *, struct linux_writev_args *);
sys/amd64/linux32/linux32_proto.h
1850
int linux_getsid(struct thread *, struct linux_getsid_args *);
sys/amd64/linux32/linux32_proto.h
1851
int linux_fdatasync(struct thread *, struct linux_fdatasync_args *);
sys/amd64/linux32/linux32_proto.h
1852
int linux_sysctl(struct thread *, struct linux_sysctl_args *);
sys/amd64/linux32/linux32_proto.h
1853
int linux_sched_setparam(struct thread *, struct linux_sched_setparam_args *);
sys/amd64/linux32/linux32_proto.h
1854
int linux_sched_getparam(struct thread *, struct linux_sched_getparam_args *);
sys/amd64/linux32/linux32_proto.h
1855
int linux_sched_setscheduler(struct thread *, struct linux_sched_setscheduler_args *);
sys/amd64/linux32/linux32_proto.h
1856
int linux_sched_getscheduler(struct thread *, struct linux_sched_getscheduler_args *);
sys/amd64/linux32/linux32_proto.h
1857
int linux_sched_get_priority_max(struct thread *, struct linux_sched_get_priority_max_args *);
sys/amd64/linux32/linux32_proto.h
1858
int linux_sched_get_priority_min(struct thread *, struct linux_sched_get_priority_min_args *);
sys/amd64/linux32/linux32_proto.h
1859
int linux_sched_rr_get_interval(struct thread *, struct linux_sched_rr_get_interval_args *);
sys/amd64/linux32/linux32_proto.h
1860
int linux_nanosleep(struct thread *, struct linux_nanosleep_args *);
sys/amd64/linux32/linux32_proto.h
1861
int linux_mremap(struct thread *, struct linux_mremap_args *);
sys/amd64/linux32/linux32_proto.h
1862
int linux_setresuid16(struct thread *, struct linux_setresuid16_args *);
sys/amd64/linux32/linux32_proto.h
1863
int linux_getresuid16(struct thread *, struct linux_getresuid16_args *);
sys/amd64/linux32/linux32_proto.h
1864
int linux_poll(struct thread *, struct linux_poll_args *);
sys/amd64/linux32/linux32_proto.h
1865
int linux_setresgid16(struct thread *, struct linux_setresgid16_args *);
sys/amd64/linux32/linux32_proto.h
1866
int linux_getresgid16(struct thread *, struct linux_getresgid16_args *);
sys/amd64/linux32/linux32_proto.h
1867
int linux_prctl(struct thread *, struct linux_prctl_args *);
sys/amd64/linux32/linux32_proto.h
1868
int linux_rt_sigreturn(struct thread *, struct linux_rt_sigreturn_args *);
sys/amd64/linux32/linux32_proto.h
1869
int linux_rt_sigaction(struct thread *, struct linux_rt_sigaction_args *);
sys/amd64/linux32/linux32_proto.h
1870
int linux_rt_sigprocmask(struct thread *, struct linux_rt_sigprocmask_args *);
sys/amd64/linux32/linux32_proto.h
1871
int linux_rt_sigpending(struct thread *, struct linux_rt_sigpending_args *);
sys/amd64/linux32/linux32_proto.h
1872
int linux_rt_sigtimedwait(struct thread *, struct linux_rt_sigtimedwait_args *);
sys/amd64/linux32/linux32_proto.h
1873
int linux_rt_sigqueueinfo(struct thread *, struct linux_rt_sigqueueinfo_args *);
sys/amd64/linux32/linux32_proto.h
1874
int linux_rt_sigsuspend(struct thread *, struct linux_rt_sigsuspend_args *);
sys/amd64/linux32/linux32_proto.h
1875
int linux_pread(struct thread *, struct linux_pread_args *);
sys/amd64/linux32/linux32_proto.h
1876
int linux_pwrite(struct thread *, struct linux_pwrite_args *);
sys/amd64/linux32/linux32_proto.h
1877
int linux_chown16(struct thread *, struct linux_chown16_args *);
sys/amd64/linux32/linux32_proto.h
1878
int linux_getcwd(struct thread *, struct linux_getcwd_args *);
sys/amd64/linux32/linux32_proto.h
1879
int linux_capget(struct thread *, struct linux_capget_args *);
sys/amd64/linux32/linux32_proto.h
1880
int linux_capset(struct thread *, struct linux_capset_args *);
sys/amd64/linux32/linux32_proto.h
1881
int linux_sigaltstack(struct thread *, struct linux_sigaltstack_args *);
sys/amd64/linux32/linux32_proto.h
1882
int linux_sendfile(struct thread *, struct linux_sendfile_args *);
sys/amd64/linux32/linux32_proto.h
1883
int linux_vfork(struct thread *, struct linux_vfork_args *);
sys/amd64/linux32/linux32_proto.h
1884
int linux_getrlimit(struct thread *, struct linux_getrlimit_args *);
sys/amd64/linux32/linux32_proto.h
1885
int linux_mmap2(struct thread *, struct linux_mmap2_args *);
sys/amd64/linux32/linux32_proto.h
1886
int linux_truncate64(struct thread *, struct linux_truncate64_args *);
sys/amd64/linux32/linux32_proto.h
1887
int linux_ftruncate64(struct thread *, struct linux_ftruncate64_args *);
sys/amd64/linux32/linux32_proto.h
1888
int linux_stat64(struct thread *, struct linux_stat64_args *);
sys/amd64/linux32/linux32_proto.h
1889
int linux_lstat64(struct thread *, struct linux_lstat64_args *);
sys/amd64/linux32/linux32_proto.h
1890
int linux_fstat64(struct thread *, struct linux_fstat64_args *);
sys/amd64/linux32/linux32_proto.h
1891
int linux_lchown(struct thread *, struct linux_lchown_args *);
sys/amd64/linux32/linux32_proto.h
1892
int linux_getuid(struct thread *, struct linux_getuid_args *);
sys/amd64/linux32/linux32_proto.h
1893
int linux_getgid(struct thread *, struct linux_getgid_args *);
sys/amd64/linux32/linux32_proto.h
1894
int linux_getgroups(struct thread *, struct linux_getgroups_args *);
sys/amd64/linux32/linux32_proto.h
1895
int linux_setgroups(struct thread *, struct linux_setgroups_args *);
sys/amd64/linux32/linux32_proto.h
1896
int linux_chown(struct thread *, struct linux_chown_args *);
sys/amd64/linux32/linux32_proto.h
1897
int linux_setfsuid(struct thread *, struct linux_setfsuid_args *);
sys/amd64/linux32/linux32_proto.h
1898
int linux_setfsgid(struct thread *, struct linux_setfsgid_args *);
sys/amd64/linux32/linux32_proto.h
1899
int linux_pivot_root(struct thread *, struct linux_pivot_root_args *);
sys/amd64/linux32/linux32_proto.h
1900
int linux_mincore(struct thread *, struct linux_mincore_args *);
sys/amd64/linux32/linux32_proto.h
1901
int linux_madvise(struct thread *, struct linux_madvise_args *);
sys/amd64/linux32/linux32_proto.h
1902
int linux_getdents64(struct thread *, struct linux_getdents64_args *);
sys/amd64/linux32/linux32_proto.h
1903
int linux_fcntl64(struct thread *, struct linux_fcntl64_args *);
sys/amd64/linux32/linux32_proto.h
1904
int linux_gettid(struct thread *, struct linux_gettid_args *);
sys/amd64/linux32/linux32_proto.h
1905
int linux_setxattr(struct thread *, struct linux_setxattr_args *);
sys/amd64/linux32/linux32_proto.h
1906
int linux_lsetxattr(struct thread *, struct linux_lsetxattr_args *);
sys/amd64/linux32/linux32_proto.h
1907
int linux_fsetxattr(struct thread *, struct linux_fsetxattr_args *);
sys/amd64/linux32/linux32_proto.h
1908
int linux_getxattr(struct thread *, struct linux_getxattr_args *);
sys/amd64/linux32/linux32_proto.h
1909
int linux_lgetxattr(struct thread *, struct linux_lgetxattr_args *);
sys/amd64/linux32/linux32_proto.h
1910
int linux_fgetxattr(struct thread *, struct linux_fgetxattr_args *);
sys/amd64/linux32/linux32_proto.h
1911
int linux_listxattr(struct thread *, struct linux_listxattr_args *);
sys/amd64/linux32/linux32_proto.h
1912
int linux_llistxattr(struct thread *, struct linux_llistxattr_args *);
sys/amd64/linux32/linux32_proto.h
1913
int linux_flistxattr(struct thread *, struct linux_flistxattr_args *);
sys/amd64/linux32/linux32_proto.h
1914
int linux_removexattr(struct thread *, struct linux_removexattr_args *);
sys/amd64/linux32/linux32_proto.h
1915
int linux_lremovexattr(struct thread *, struct linux_lremovexattr_args *);
sys/amd64/linux32/linux32_proto.h
1916
int linux_fremovexattr(struct thread *, struct linux_fremovexattr_args *);
sys/amd64/linux32/linux32_proto.h
1917
int linux_tkill(struct thread *, struct linux_tkill_args *);
sys/amd64/linux32/linux32_proto.h
1918
int linux_sendfile64(struct thread *, struct linux_sendfile64_args *);
sys/amd64/linux32/linux32_proto.h
1919
int linux_sys_futex(struct thread *, struct linux_sys_futex_args *);
sys/amd64/linux32/linux32_proto.h
1920
int linux_sched_setaffinity(struct thread *, struct linux_sched_setaffinity_args *);
sys/amd64/linux32/linux32_proto.h
1921
int linux_sched_getaffinity(struct thread *, struct linux_sched_getaffinity_args *);
sys/amd64/linux32/linux32_proto.h
1922
int linux_set_thread_area(struct thread *, struct linux_set_thread_area_args *);
sys/amd64/linux32/linux32_proto.h
1923
int linux_fadvise64(struct thread *, struct linux_fadvise64_args *);
sys/amd64/linux32/linux32_proto.h
1924
int linux_exit_group(struct thread *, struct linux_exit_group_args *);
sys/amd64/linux32/linux32_proto.h
1925
int linux_lookup_dcookie(struct thread *, struct linux_lookup_dcookie_args *);
sys/amd64/linux32/linux32_proto.h
1926
int linux_epoll_create(struct thread *, struct linux_epoll_create_args *);
sys/amd64/linux32/linux32_proto.h
1927
int linux_epoll_ctl(struct thread *, struct linux_epoll_ctl_args *);
sys/amd64/linux32/linux32_proto.h
1928
int linux_epoll_wait(struct thread *, struct linux_epoll_wait_args *);
sys/amd64/linux32/linux32_proto.h
1929
int linux_remap_file_pages(struct thread *, struct linux_remap_file_pages_args *);
sys/amd64/linux32/linux32_proto.h
1930
int linux_set_tid_address(struct thread *, struct linux_set_tid_address_args *);
sys/amd64/linux32/linux32_proto.h
1931
int linux_timer_create(struct thread *, struct linux_timer_create_args *);
sys/amd64/linux32/linux32_proto.h
1932
int linux_timer_settime(struct thread *, struct linux_timer_settime_args *);
sys/amd64/linux32/linux32_proto.h
1933
int linux_timer_gettime(struct thread *, struct linux_timer_gettime_args *);
sys/amd64/linux32/linux32_proto.h
1934
int linux_timer_getoverrun(struct thread *, struct linux_timer_getoverrun_args *);
sys/amd64/linux32/linux32_proto.h
1935
int linux_timer_delete(struct thread *, struct linux_timer_delete_args *);
sys/amd64/linux32/linux32_proto.h
1936
int linux_clock_settime(struct thread *, struct linux_clock_settime_args *);
sys/amd64/linux32/linux32_proto.h
1937
int linux_clock_gettime(struct thread *, struct linux_clock_gettime_args *);
sys/amd64/linux32/linux32_proto.h
1938
int linux_clock_getres(struct thread *, struct linux_clock_getres_args *);
sys/amd64/linux32/linux32_proto.h
1939
int linux_clock_nanosleep(struct thread *, struct linux_clock_nanosleep_args *);
sys/amd64/linux32/linux32_proto.h
1940
int linux_statfs64(struct thread *, struct linux_statfs64_args *);
sys/amd64/linux32/linux32_proto.h
1941
int linux_fstatfs64(struct thread *, struct linux_fstatfs64_args *);
sys/amd64/linux32/linux32_proto.h
1942
int linux_tgkill(struct thread *, struct linux_tgkill_args *);
sys/amd64/linux32/linux32_proto.h
1943
int linux_utimes(struct thread *, struct linux_utimes_args *);
sys/amd64/linux32/linux32_proto.h
1944
int linux_fadvise64_64(struct thread *, struct linux_fadvise64_64_args *);
sys/amd64/linux32/linux32_proto.h
1945
int linux_mbind(struct thread *, struct linux_mbind_args *);
sys/amd64/linux32/linux32_proto.h
1946
int linux_get_mempolicy(struct thread *, struct linux_get_mempolicy_args *);
sys/amd64/linux32/linux32_proto.h
1947
int linux_set_mempolicy(struct thread *, struct linux_set_mempolicy_args *);
sys/amd64/linux32/linux32_proto.h
1948
int linux_mq_open(struct thread *, struct linux_mq_open_args *);
sys/amd64/linux32/linux32_proto.h
1949
int linux_mq_unlink(struct thread *, struct linux_mq_unlink_args *);
sys/amd64/linux32/linux32_proto.h
1950
int linux_mq_timedsend(struct thread *, struct linux_mq_timedsend_args *);
sys/amd64/linux32/linux32_proto.h
1951
int linux_mq_timedreceive(struct thread *, struct linux_mq_timedreceive_args *);
sys/amd64/linux32/linux32_proto.h
1952
int linux_mq_notify(struct thread *, struct linux_mq_notify_args *);
sys/amd64/linux32/linux32_proto.h
1953
int linux_mq_getsetattr(struct thread *, struct linux_mq_getsetattr_args *);
sys/amd64/linux32/linux32_proto.h
1954
int linux_kexec_load(struct thread *, struct linux_kexec_load_args *);
sys/amd64/linux32/linux32_proto.h
1955
int linux_waitid(struct thread *, struct linux_waitid_args *);
sys/amd64/linux32/linux32_proto.h
1956
int linux_add_key(struct thread *, struct linux_add_key_args *);
sys/amd64/linux32/linux32_proto.h
1957
int linux_request_key(struct thread *, struct linux_request_key_args *);
sys/amd64/linux32/linux32_proto.h
1958
int linux_keyctl(struct thread *, struct linux_keyctl_args *);
sys/amd64/linux32/linux32_proto.h
1959
int linux_ioprio_set(struct thread *, struct linux_ioprio_set_args *);
sys/amd64/linux32/linux32_proto.h
1960
int linux_ioprio_get(struct thread *, struct linux_ioprio_get_args *);
sys/amd64/linux32/linux32_proto.h
1961
int linux_inotify_init(struct thread *, struct linux_inotify_init_args *);
sys/amd64/linux32/linux32_proto.h
1962
int linux_inotify_add_watch(struct thread *, struct linux_inotify_add_watch_args *);
sys/amd64/linux32/linux32_proto.h
1963
int linux_inotify_rm_watch(struct thread *, struct linux_inotify_rm_watch_args *);
sys/amd64/linux32/linux32_proto.h
1964
int linux_migrate_pages(struct thread *, struct linux_migrate_pages_args *);
sys/amd64/linux32/linux32_proto.h
1965
int linux_openat(struct thread *, struct linux_openat_args *);
sys/amd64/linux32/linux32_proto.h
1966
int linux_mkdirat(struct thread *, struct linux_mkdirat_args *);
sys/amd64/linux32/linux32_proto.h
1967
int linux_mknodat(struct thread *, struct linux_mknodat_args *);
sys/amd64/linux32/linux32_proto.h
1968
int linux_fchownat(struct thread *, struct linux_fchownat_args *);
sys/amd64/linux32/linux32_proto.h
1969
int linux_futimesat(struct thread *, struct linux_futimesat_args *);
sys/amd64/linux32/linux32_proto.h
1970
int linux_fstatat64(struct thread *, struct linux_fstatat64_args *);
sys/amd64/linux32/linux32_proto.h
1971
int linux_unlinkat(struct thread *, struct linux_unlinkat_args *);
sys/amd64/linux32/linux32_proto.h
1972
int linux_renameat(struct thread *, struct linux_renameat_args *);
sys/amd64/linux32/linux32_proto.h
1973
int linux_linkat(struct thread *, struct linux_linkat_args *);
sys/amd64/linux32/linux32_proto.h
1974
int linux_symlinkat(struct thread *, struct linux_symlinkat_args *);
sys/amd64/linux32/linux32_proto.h
1975
int linux_readlinkat(struct thread *, struct linux_readlinkat_args *);
sys/amd64/linux32/linux32_proto.h
1976
int linux_fchmodat(struct thread *, struct linux_fchmodat_args *);
sys/amd64/linux32/linux32_proto.h
1977
int linux_faccessat(struct thread *, struct linux_faccessat_args *);
sys/amd64/linux32/linux32_proto.h
1978
int linux_pselect6(struct thread *, struct linux_pselect6_args *);
sys/amd64/linux32/linux32_proto.h
1979
int linux_ppoll(struct thread *, struct linux_ppoll_args *);
sys/amd64/linux32/linux32_proto.h
1980
int linux_unshare(struct thread *, struct linux_unshare_args *);
sys/amd64/linux32/linux32_proto.h
1981
int linux_set_robust_list(struct thread *, struct linux_set_robust_list_args *);
sys/amd64/linux32/linux32_proto.h
1982
int linux_get_robust_list(struct thread *, struct linux_get_robust_list_args *);
sys/amd64/linux32/linux32_proto.h
1983
int linux_splice(struct thread *, struct linux_splice_args *);
sys/amd64/linux32/linux32_proto.h
1984
int linux_sync_file_range(struct thread *, struct linux_sync_file_range_args *);
sys/amd64/linux32/linux32_proto.h
1985
int linux_tee(struct thread *, struct linux_tee_args *);
sys/amd64/linux32/linux32_proto.h
1986
int linux_vmsplice(struct thread *, struct linux_vmsplice_args *);
sys/amd64/linux32/linux32_proto.h
1987
int linux_move_pages(struct thread *, struct linux_move_pages_args *);
sys/amd64/linux32/linux32_proto.h
1988
int linux_getcpu(struct thread *, struct linux_getcpu_args *);
sys/amd64/linux32/linux32_proto.h
1989
int linux_epoll_pwait(struct thread *, struct linux_epoll_pwait_args *);
sys/amd64/linux32/linux32_proto.h
1990
int linux_utimensat(struct thread *, struct linux_utimensat_args *);
sys/amd64/linux32/linux32_proto.h
1991
int linux_signalfd(struct thread *, struct linux_signalfd_args *);
sys/amd64/linux32/linux32_proto.h
1992
int linux_timerfd_create(struct thread *, struct linux_timerfd_create_args *);
sys/amd64/linux32/linux32_proto.h
1993
int linux_eventfd(struct thread *, struct linux_eventfd_args *);
sys/amd64/linux32/linux32_proto.h
1994
int linux_fallocate(struct thread *, struct linux_fallocate_args *);
sys/amd64/linux32/linux32_proto.h
1995
int linux_timerfd_settime(struct thread *, struct linux_timerfd_settime_args *);
sys/amd64/linux32/linux32_proto.h
1996
int linux_timerfd_gettime(struct thread *, struct linux_timerfd_gettime_args *);
sys/amd64/linux32/linux32_proto.h
1997
int linux_signalfd4(struct thread *, struct linux_signalfd4_args *);
sys/amd64/linux32/linux32_proto.h
1998
int linux_eventfd2(struct thread *, struct linux_eventfd2_args *);
sys/amd64/linux32/linux32_proto.h
1999
int linux_epoll_create1(struct thread *, struct linux_epoll_create1_args *);
sys/amd64/linux32/linux32_proto.h
2000
int linux_dup3(struct thread *, struct linux_dup3_args *);
sys/amd64/linux32/linux32_proto.h
2001
int linux_pipe2(struct thread *, struct linux_pipe2_args *);
sys/amd64/linux32/linux32_proto.h
2002
int linux_inotify_init1(struct thread *, struct linux_inotify_init1_args *);
sys/amd64/linux32/linux32_proto.h
2003
int linux_preadv(struct thread *, struct linux_preadv_args *);
sys/amd64/linux32/linux32_proto.h
2004
int linux_pwritev(struct thread *, struct linux_pwritev_args *);
sys/amd64/linux32/linux32_proto.h
2005
int linux_rt_tgsigqueueinfo(struct thread *, struct linux_rt_tgsigqueueinfo_args *);
sys/amd64/linux32/linux32_proto.h
2006
int linux_perf_event_open(struct thread *, struct linux_perf_event_open_args *);
sys/amd64/linux32/linux32_proto.h
2007
int linux_recvmmsg(struct thread *, struct linux_recvmmsg_args *);
sys/amd64/linux32/linux32_proto.h
2008
int linux_fanotify_init(struct thread *, struct linux_fanotify_init_args *);
sys/amd64/linux32/linux32_proto.h
2009
int linux_fanotify_mark(struct thread *, struct linux_fanotify_mark_args *);
sys/amd64/linux32/linux32_proto.h
2010
int linux_prlimit64(struct thread *, struct linux_prlimit64_args *);
sys/amd64/linux32/linux32_proto.h
2011
int linux_name_to_handle_at(struct thread *, struct linux_name_to_handle_at_args *);
sys/amd64/linux32/linux32_proto.h
2012
int linux_open_by_handle_at(struct thread *, struct linux_open_by_handle_at_args *);
sys/amd64/linux32/linux32_proto.h
2013
int linux_clock_adjtime(struct thread *, struct linux_clock_adjtime_args *);
sys/amd64/linux32/linux32_proto.h
2014
int linux_syncfs(struct thread *, struct linux_syncfs_args *);
sys/amd64/linux32/linux32_proto.h
2015
int linux_sendmmsg(struct thread *, struct linux_sendmmsg_args *);
sys/amd64/linux32/linux32_proto.h
2016
int linux_setns(struct thread *, struct linux_setns_args *);
sys/amd64/linux32/linux32_proto.h
2017
int linux_process_vm_readv(struct thread *, struct linux_process_vm_readv_args *);
sys/amd64/linux32/linux32_proto.h
2018
int linux_process_vm_writev(struct thread *, struct linux_process_vm_writev_args *);
sys/amd64/linux32/linux32_proto.h
2019
int linux_kcmp(struct thread *, struct linux_kcmp_args *);
sys/amd64/linux32/linux32_proto.h
2020
int linux_finit_module(struct thread *, struct linux_finit_module_args *);
sys/amd64/linux32/linux32_proto.h
2021
int linux_sched_setattr(struct thread *, struct linux_sched_setattr_args *);
sys/amd64/linux32/linux32_proto.h
2022
int linux_sched_getattr(struct thread *, struct linux_sched_getattr_args *);
sys/amd64/linux32/linux32_proto.h
2023
int linux_renameat2(struct thread *, struct linux_renameat2_args *);
sys/amd64/linux32/linux32_proto.h
2024
int linux_seccomp(struct thread *, struct linux_seccomp_args *);
sys/amd64/linux32/linux32_proto.h
2025
int linux_getrandom(struct thread *, struct linux_getrandom_args *);
sys/amd64/linux32/linux32_proto.h
2026
int linux_memfd_create(struct thread *, struct linux_memfd_create_args *);
sys/amd64/linux32/linux32_proto.h
2027
int linux_bpf(struct thread *, struct linux_bpf_args *);
sys/amd64/linux32/linux32_proto.h
2028
int linux_execveat(struct thread *, struct linux_execveat_args *);
sys/amd64/linux32/linux32_proto.h
2029
int linux_socket(struct thread *, struct linux_socket_args *);
sys/amd64/linux32/linux32_proto.h
2030
int linux_socketpair(struct thread *, struct linux_socketpair_args *);
sys/amd64/linux32/linux32_proto.h
2031
int linux_bind(struct thread *, struct linux_bind_args *);
sys/amd64/linux32/linux32_proto.h
2032
int linux_connect(struct thread *, struct linux_connect_args *);
sys/amd64/linux32/linux32_proto.h
2033
int linux_listen(struct thread *, struct linux_listen_args *);
sys/amd64/linux32/linux32_proto.h
2034
int linux_accept4(struct thread *, struct linux_accept4_args *);
sys/amd64/linux32/linux32_proto.h
2035
int linux_getsockopt(struct thread *, struct linux_getsockopt_args *);
sys/amd64/linux32/linux32_proto.h
2036
int linux_setsockopt(struct thread *, struct linux_setsockopt_args *);
sys/amd64/linux32/linux32_proto.h
2037
int linux_getsockname(struct thread *, struct linux_getsockname_args *);
sys/amd64/linux32/linux32_proto.h
2038
int linux_getpeername(struct thread *, struct linux_getpeername_args *);
sys/amd64/linux32/linux32_proto.h
2039
int linux_sendto(struct thread *, struct linux_sendto_args *);
sys/amd64/linux32/linux32_proto.h
2040
int linux_sendmsg(struct thread *, struct linux_sendmsg_args *);
sys/amd64/linux32/linux32_proto.h
2041
int linux_recvfrom(struct thread *, struct linux_recvfrom_args *);
sys/amd64/linux32/linux32_proto.h
2042
int linux_recvmsg(struct thread *, struct linux_recvmsg_args *);
sys/amd64/linux32/linux32_proto.h
2043
int linux_shutdown(struct thread *, struct linux_shutdown_args *);
sys/amd64/linux32/linux32_proto.h
2044
int linux_userfaultfd(struct thread *, struct linux_userfaultfd_args *);
sys/amd64/linux32/linux32_proto.h
2045
int linux_membarrier(struct thread *, struct linux_membarrier_args *);
sys/amd64/linux32/linux32_proto.h
2046
int linux_mlock2(struct thread *, struct linux_mlock2_args *);
sys/amd64/linux32/linux32_proto.h
2047
int linux_copy_file_range(struct thread *, struct linux_copy_file_range_args *);
sys/amd64/linux32/linux32_proto.h
2048
int linux_preadv2(struct thread *, struct linux_preadv2_args *);
sys/amd64/linux32/linux32_proto.h
2049
int linux_pwritev2(struct thread *, struct linux_pwritev2_args *);
sys/amd64/linux32/linux32_proto.h
2050
int linux_pkey_mprotect(struct thread *, struct linux_pkey_mprotect_args *);
sys/amd64/linux32/linux32_proto.h
2051
int linux_pkey_alloc(struct thread *, struct linux_pkey_alloc_args *);
sys/amd64/linux32/linux32_proto.h
2052
int linux_pkey_free(struct thread *, struct linux_pkey_free_args *);
sys/amd64/linux32/linux32_proto.h
2053
int linux_statx(struct thread *, struct linux_statx_args *);
sys/amd64/linux32/linux32_proto.h
2054
int linux_arch_prctl(struct thread *, struct linux_arch_prctl_args *);
sys/amd64/linux32/linux32_proto.h
2055
int linux_io_pgetevents(struct thread *, struct linux_io_pgetevents_args *);
sys/amd64/linux32/linux32_proto.h
2056
int linux_rseq(struct thread *, struct linux_rseq_args *);
sys/amd64/linux32/linux32_proto.h
2057
int linux_semget(struct thread *, struct linux_semget_args *);
sys/amd64/linux32/linux32_proto.h
2058
int linux_semctl(struct thread *, struct linux_semctl_args *);
sys/amd64/linux32/linux32_proto.h
2059
int linux_shmget(struct thread *, struct linux_shmget_args *);
sys/amd64/linux32/linux32_proto.h
2060
int linux_shmctl(struct thread *, struct linux_shmctl_args *);
sys/amd64/linux32/linux32_proto.h
2061
int linux_shmat(struct thread *, struct linux_shmat_args *);
sys/amd64/linux32/linux32_proto.h
2062
int linux_shmdt(struct thread *, struct linux_shmdt_args *);
sys/amd64/linux32/linux32_proto.h
2063
int linux_msgget(struct thread *, struct linux_msgget_args *);
sys/amd64/linux32/linux32_proto.h
2064
int linux_msgsnd(struct thread *, struct linux_msgsnd_args *);
sys/amd64/linux32/linux32_proto.h
2065
int linux_msgrcv(struct thread *, struct linux_msgrcv_args *);
sys/amd64/linux32/linux32_proto.h
2066
int linux_msgctl(struct thread *, struct linux_msgctl_args *);
sys/amd64/linux32/linux32_proto.h
2067
int linux_clock_gettime64(struct thread *, struct linux_clock_gettime64_args *);
sys/amd64/linux32/linux32_proto.h
2068
int linux_clock_settime64(struct thread *, struct linux_clock_settime64_args *);
sys/amd64/linux32/linux32_proto.h
2069
int linux_clock_adjtime64(struct thread *, struct linux_clock_adjtime64_args *);
sys/amd64/linux32/linux32_proto.h
2070
int linux_clock_getres_time64(struct thread *, struct linux_clock_getres_time64_args *);
sys/amd64/linux32/linux32_proto.h
2071
int linux_clock_nanosleep_time64(struct thread *, struct linux_clock_nanosleep_time64_args *);
sys/amd64/linux32/linux32_proto.h
2072
int linux_timer_gettime64(struct thread *, struct linux_timer_gettime64_args *);
sys/amd64/linux32/linux32_proto.h
2073
int linux_timer_settime64(struct thread *, struct linux_timer_settime64_args *);
sys/amd64/linux32/linux32_proto.h
2074
int linux_timerfd_gettime64(struct thread *, struct linux_timerfd_gettime64_args *);
sys/amd64/linux32/linux32_proto.h
2075
int linux_timerfd_settime64(struct thread *, struct linux_timerfd_settime64_args *);
sys/amd64/linux32/linux32_proto.h
2076
int linux_utimensat_time64(struct thread *, struct linux_utimensat_time64_args *);
sys/amd64/linux32/linux32_proto.h
2077
int linux_pselect6_time64(struct thread *, struct linux_pselect6_time64_args *);
sys/amd64/linux32/linux32_proto.h
2078
int linux_ppoll_time64(struct thread *, struct linux_ppoll_time64_args *);
sys/amd64/linux32/linux32_proto.h
2079
int linux_io_pgetevents_time64(struct thread *, struct linux_io_pgetevents_time64_args *);
sys/amd64/linux32/linux32_proto.h
2080
int linux_recvmmsg_time64(struct thread *, struct linux_recvmmsg_time64_args *);
sys/amd64/linux32/linux32_proto.h
2081
int linux_mq_timedsend_time64(struct thread *, struct linux_mq_timedsend_time64_args *);
sys/amd64/linux32/linux32_proto.h
2082
int linux_mq_timedreceive_time64(struct thread *, struct linux_mq_timedreceive_time64_args *);
sys/amd64/linux32/linux32_proto.h
2083
int linux_semtimedop_time64(struct thread *, struct linux_semtimedop_time64_args *);
sys/amd64/linux32/linux32_proto.h
2084
int linux_rt_sigtimedwait_time64(struct thread *, struct linux_rt_sigtimedwait_time64_args *);
sys/amd64/linux32/linux32_proto.h
2085
int linux_sys_futex_time64(struct thread *, struct linux_sys_futex_time64_args *);
sys/amd64/linux32/linux32_proto.h
2086
int linux_sched_rr_get_interval_time64(struct thread *, struct linux_sched_rr_get_interval_time64_args *);
sys/amd64/linux32/linux32_proto.h
2087
int linux_pidfd_send_signal(struct thread *, struct linux_pidfd_send_signal_args *);
sys/amd64/linux32/linux32_proto.h
2088
int linux_io_uring_setup(struct thread *, struct linux_io_uring_setup_args *);
sys/amd64/linux32/linux32_proto.h
2089
int linux_io_uring_enter(struct thread *, struct linux_io_uring_enter_args *);
sys/amd64/linux32/linux32_proto.h
2090
int linux_io_uring_register(struct thread *, struct linux_io_uring_register_args *);
sys/amd64/linux32/linux32_proto.h
2091
int linux_open_tree(struct thread *, struct linux_open_tree_args *);
sys/amd64/linux32/linux32_proto.h
2092
int linux_move_mount(struct thread *, struct linux_move_mount_args *);
sys/amd64/linux32/linux32_proto.h
2093
int linux_fsopen(struct thread *, struct linux_fsopen_args *);
sys/amd64/linux32/linux32_proto.h
2094
int linux_fsconfig(struct thread *, struct linux_fsconfig_args *);
sys/amd64/linux32/linux32_proto.h
2095
int linux_fsmount(struct thread *, struct linux_fsmount_args *);
sys/amd64/linux32/linux32_proto.h
2096
int linux_fspick(struct thread *, struct linux_fspick_args *);
sys/amd64/linux32/linux32_proto.h
2097
int linux_pidfd_open(struct thread *, struct linux_pidfd_open_args *);
sys/amd64/linux32/linux32_proto.h
2098
int linux_clone3(struct thread *, struct linux_clone3_args *);
sys/amd64/linux32/linux32_proto.h
2099
int linux_close_range(struct thread *, struct linux_close_range_args *);
sys/amd64/linux32/linux32_proto.h
2100
int linux_openat2(struct thread *, struct linux_openat2_args *);
sys/amd64/linux32/linux32_proto.h
2101
int linux_pidfd_getfd(struct thread *, struct linux_pidfd_getfd_args *);
sys/amd64/linux32/linux32_proto.h
2102
int linux_faccessat2(struct thread *, struct linux_faccessat2_args *);
sys/amd64/linux32/linux32_proto.h
2103
int linux_process_madvise(struct thread *, struct linux_process_madvise_args *);
sys/amd64/linux32/linux32_proto.h
2104
int linux_epoll_pwait2_64(struct thread *, struct linux_epoll_pwait2_64_args *);
sys/amd64/linux32/linux32_proto.h
2105
int linux_mount_setattr(struct thread *, struct linux_mount_setattr_args *);
sys/amd64/linux32/linux32_proto.h
2106
int linux_quotactl_fd(struct thread *, struct linux_quotactl_fd_args *);
sys/amd64/linux32/linux32_proto.h
2107
int linux_landlock_create_ruleset(struct thread *, struct linux_landlock_create_ruleset_args *);
sys/amd64/linux32/linux32_proto.h
2108
int linux_landlock_add_rule(struct thread *, struct linux_landlock_add_rule_args *);
sys/amd64/linux32/linux32_proto.h
2109
int linux_landlock_restrict_self(struct thread *, struct linux_landlock_restrict_self_args *);
sys/amd64/linux32/linux32_proto.h
2110
int linux_memfd_secret(struct thread *, struct linux_memfd_secret_args *);
sys/amd64/linux32/linux32_proto.h
2111
int linux_process_mrelease(struct thread *, struct linux_process_mrelease_args *);
sys/amd64/linux32/linux32_proto.h
2112
int linux_futex_waitv(struct thread *, struct linux_futex_waitv_args *);
sys/amd64/linux32/linux32_proto.h
2113
int linux_set_mempolicy_home_node(struct thread *, struct linux_set_mempolicy_home_node_args *);
sys/amd64/linux32/linux32_proto.h
2114
int linux_cachestat(struct thread *, struct linux_cachestat_args *);
sys/amd64/linux32/linux32_proto.h
2115
int linux_fchmodat2(struct thread *, struct linux_fchmodat2_args *);
sys/amd64/linux32/linux32_proto.h
23
struct thread;
sys/amd64/linux32/linux32_sysvec.c
105
static void linux_exec_setregs(struct thread *td,
sys/amd64/linux32/linux32_sysvec.c
114
static void linux32_set_fork_retval(struct thread *td);
sys/amd64/linux32/linux32_sysvec.c
115
static void linux32_set_syscall_retval(struct thread *td, int error);
sys/amd64/linux32/linux32_sysvec.c
148
struct thread *td = curthread;
sys/amd64/linux32/linux32_sysvec.c
258
struct thread *td = curthread;
sys/amd64/linux32/linux32_sysvec.c
360
linux_sigreturn(struct thread *td, struct linux_sigreturn_args *args)
sys/amd64/linux32/linux32_sysvec.c
432
linux_rt_sigreturn(struct thread *td, struct linux_rt_sigreturn_args *args)
sys/amd64/linux32/linux32_sysvec.c
513
linux32_fetch_syscall_args(struct thread *td)
sys/amd64/linux32/linux32_sysvec.c
545
linux32_set_syscall_retval(struct thread *td, int error)
sys/amd64/linux32/linux32_sysvec.c
558
linux32_set_fork_retval(struct thread *td)
sys/amd64/linux32/linux32_sysvec.c
570
linux_exec_setregs(struct thread *td, struct image_params *imgp,
sys/amd64/sgx/sgx.c
923
struct thread *td;
sys/amd64/sgx/sgx.c
992
struct thread *td)
sys/amd64/sgx/sgx_linux.c
55
sgx_linux_ioctl(struct thread *td, struct linux_ioctl_args *args)
sys/amd64/vmm/vmm.c
744
struct thread *td;
sys/amd64/vmm/vmm.c
961
struct thread *td;
sys/amd64/vmm/vmm_dev_machdep.c
177
int fflag, struct thread *td)
sys/arm/arm/db_trace.c
136
db_trace_thread(struct thread *thr, int count)
sys/arm/arm/elf_machdep.c
144
elf32_dump_thread(struct thread *td __unused, void *dst __unused,
sys/arm/arm/exec_machdep.c
123
set_vfpcontext(struct thread *td, mcontext_vfp_t *vfp)
sys/arm/arm/exec_machdep.c
143
arm_get_vfpstate(struct thread *td, void *args)
sys/arm/arm/exec_machdep.c
170
get_mcontext(struct thread *td, mcontext_t *mcp, int clear_ret)
sys/arm/arm/exec_machdep.c
212
set_mcontext(struct thread *td, mcontext_t *mcp)
sys/arm/arm/exec_machdep.c
274
struct thread *td;
sys/arm/arm/exec_machdep.c
375
sys_sigreturn(struct thread *td, struct sigreturn_args *uap)
sys/arm/arm/exec_machdep.c
77
exec_setregs(struct thread *td, struct image_params *imgp, uintptr_t stack)
sys/arm/arm/exec_machdep.c
96
get_vfpcontext(struct thread *td, mcontext_vfp_t *vfp)
sys/arm/arm/genassym.c
86
ASSYM(TD_PCB, offsetof(struct thread, td_pcb));
sys/arm/arm/genassym.c
87
ASSYM(TD_FLAGS, offsetof(struct thread, td_flags));
sys/arm/arm/genassym.c
88
ASSYM(TD_AST, offsetof(struct thread, td_ast));
sys/arm/arm/genassym.c
89
ASSYM(TD_PROC, offsetof(struct thread, td_proc));
sys/arm/arm/genassym.c
90
ASSYM(TD_MD, offsetof(struct thread, td_md));
sys/arm/arm/genassym.c
91
ASSYM(TD_LOCK, offsetof(struct thread, td_lock));
sys/arm/arm/machdep.c
311
struct thread *td;
sys/arm/arm/machdep.c
327
struct thread *td;
sys/arm/arm/machdep_kdb.c
104
fill_fpregs(struct thread *td, struct fpreg *regs)
sys/arm/arm/machdep_kdb.c
130
set_regs(struct thread *td, struct reg *regs)
sys/arm/arm/machdep_kdb.c
144
set_fpregs(struct thread *td, struct fpreg *regs)
sys/arm/arm/machdep_kdb.c
159
fill_dbregs(struct thread *td, struct dbreg *regs)
sys/arm/arm/machdep_kdb.c
167
set_dbregs(struct thread *td, struct dbreg *regs)
sys/arm/arm/machdep_kdb.c
92
fill_regs(struct thread *td, struct reg *regs)
sys/arm/arm/machdep_ptrace.c
109
ptrace_get_alternative_next(struct thread *td, uint32_t cur_instr,
sys/arm/arm/machdep_ptrace.c
126
ptrace_single_step(struct thread *td)
sys/arm/arm/machdep_ptrace.c
183
ptrace_clear_single_step(struct thread *td)
sys/arm/arm/machdep_ptrace.c
213
ptrace_set_pc(struct thread *td, unsigned long addr)
sys/arm/arm/machdep_ptrace.c
39
ptrace_read_int(struct thread *td, vm_offset_t addr, uint32_t *v)
sys/arm/arm/machdep_ptrace.c
48
ptrace_write_int(struct thread *td, vm_offset_t addr, uint32_t v)
sys/arm/arm/machdep_ptrace.c
60
struct thread *td = cookie;
sys/arm/arm/machdep_ptrace.c
86
struct thread *td = cookie;
sys/arm/arm/mem.c
173
caddr_t data __unused, int flags __unused, struct thread *td __unused)
sys/arm/arm/pmap-v6.c
6202
pmap_activate(struct thread *td)
sys/arm/arm/ptrace_machdep.c
39
get_arm_vfp(struct regset *rs, struct thread *td, void *buf, size_t *sizep)
sys/arm/arm/ptrace_machdep.c
51
set_arm_vfp(struct regset *rs, struct thread *td, void *buf,
sys/arm/arm/ptrace_machdep.c
69
get_arm_tls(struct regset *rs, struct thread *td, void *buf,
sys/arm/arm/ptrace_machdep.c
91
cpu_ptrace(struct thread *td, int req, void *addr, int data)
sys/arm/arm/stack_machdep.c
67
stack_save_td(struct stack *st, struct thread *td)
sys/arm/arm/sys_machdep.c
141
arm32_drain_writebuf(struct thread *td, void *args)
sys/arm/arm/sys_machdep.c
152
arm32_set_tp(struct thread *td, void *args)
sys/arm/arm/sys_machdep.c
160
arm32_get_tp(struct thread *td, void *args)
sys/arm/arm/sys_machdep.c
168
sysarch(struct thread *td, struct sysarch_args *uap)
sys/arm/arm/sys_machdep.c
60
static int arm32_sync_icache (struct thread *, void *);
sys/arm/arm/sys_machdep.c
61
static int arm32_drain_writebuf(struct thread *, void *);
sys/arm/arm/sys_machdep.c
97
arm32_sync_icache(struct thread *td, void *args)
sys/arm/arm/syscall.c
139
syscall(struct thread *td, struct trapframe *frame)
sys/arm/arm/syscall.c
149
struct thread *td = curthread;
sys/arm/arm/syscall.c
97
cpu_fetch_syscall_args(struct thread *td)
sys/arm/arm/trap-v6.c
165
call_trapsignal(struct thread *td, int sig, int code, vm_offset_t addr,
sys/arm/arm/trap-v6.c
247
struct thread *td;
sys/arm/arm/trap-v6.c
274
struct thread *td;
sys/arm/arm/trap-v6.c
543
u_int prefetch, struct thread *td, struct ksig *ksig)
sys/arm/arm/trap-v6.c
619
u_int prefetch, struct thread *td, struct ksig *ksig)
sys/arm/arm/trap-v6.c
656
u_int prefetch, struct thread *td, struct ksig *ksig)
sys/arm/arm/trap-v6.c
77
struct thread *, struct ksig *);
sys/arm/arm/undefined.c
151
struct thread *td;
sys/arm/arm/undefined.c
215
struct thread *td;
sys/arm/arm/unwind.c
369
struct thread *td = curthread;
sys/arm/arm/vfp.c
280
vfp_new_thread(struct thread *newtd, struct thread *oldtd, bool fork)
sys/arm/arm/vfp.c
374
vfp_discard(struct thread *td)
sys/arm/arm/vfp.c
387
vfp_save_state(struct thread *td, struct pcb *pcb)
sys/arm/arm/vfp.c
436
fpu_kern_enter(struct thread *td, struct fpu_kern_ctx *ctx, u_int flags)
sys/arm/arm/vfp.c
484
fpu_kern_leave(struct thread *td, struct fpu_kern_ctx *ctx)
sys/arm/arm/vm_machdep.c
146
cpu_set_syscall_retval(struct thread *td, int error)
sys/arm/arm/vm_machdep.c
184
cpu_copy_thread(struct thread *td, struct thread *td0)
sys/arm/arm/vm_machdep.c
212
cpu_set_upcall(struct thread *td, void (*entry)(void *), void *arg,
sys/arm/arm/vm_machdep.c
227
cpu_set_user_tls(struct thread *td, void *tls_base, int thr_flags __unused)
sys/arm/arm/vm_machdep.c
237
cpu_thread_exit(struct thread *td)
sys/arm/arm/vm_machdep.c
242
cpu_thread_alloc(struct thread *td)
sys/arm/arm/vm_machdep.c
247
cpu_thread_new_kstack(struct thread *td)
sys/arm/arm/vm_machdep.c
259
cpu_thread_free(struct thread *td)
sys/arm/arm/vm_machdep.c
264
cpu_thread_clean(struct thread *td)
sys/arm/arm/vm_machdep.c
275
cpu_fork_kthread_handler(struct thread *td, void (*func)(void *), void *arg)
sys/arm/arm/vm_machdep.c
282
cpu_update_pcb(struct thread *td)
sys/arm/arm/vm_machdep.c
289
cpu_exit(struct thread *td)
sys/arm/arm/vm_machdep.c
301
cpu_procctl(struct thread *td __unused, int idtype __unused, id_t id __unused,
sys/arm/arm/vm_machdep.c
91
cpu_fork(struct thread *td1, struct proc *p2, struct thread *td2, int flags)
sys/arm/broadcom/bcm2835/bcm2835_spivar.h
39
struct thread *sc_thread;
sys/arm/broadcom/bcm2835/bcm2835_vcio.c
53
struct thread *td)
sys/arm/include/machdep.h
32
int arm_get_vfpstate(struct thread *td, void *args);
sys/arm/include/pcpu.h
100
set_curthread(struct thread *td)
sys/arm/include/pcpu.h
90
static inline struct thread *
sys/arm/include/stack.h
70
struct thread *td = curthread; \
sys/arm/include/stack.h
76
kstack_contains(struct thread *td, vm_offset_t va, size_t len)
sys/arm/include/vfp.h
156
void get_vfpcontext(struct thread *, mcontext_vfp_t *);
sys/arm/include/vfp.h
157
void set_vfpcontext(struct thread *, mcontext_vfp_t *);
sys/arm/include/vfp.h
159
void vfp_new_thread(struct thread*, struct thread*, bool);
sys/arm/include/vfp.h
161
void vfp_discard(struct thread *);
sys/arm/include/vfp.h
163
void vfp_save_state(struct thread *, struct pcb *);
sys/arm/include/vfp.h
169
void fpu_kern_enter(struct thread *, struct fpu_kern_ctx *, u_int);
sys/arm/include/vfp.h
170
int fpu_kern_leave(struct thread *, struct fpu_kern_ctx *);
sys/arm/ti/am335x/am335x_dmtpps.c
315
struct thread *td)
sys/arm/ti/am335x/am335x_dmtpps.c
334
struct thread *td)
sys/arm/ti/am335x/am335x_dmtpps.c
352
int flags, struct thread *td)
sys/arm/ti/ti_pruss.c
180
ti_pruss_irq_open(struct cdev *dev, int oflags, int devtype, struct thread *td)
sys/arm/ti/ti_pruss.c
200
ti_pruss_irq_poll(struct cdev *dev, int events, struct thread *td)
sys/arm/ti/ti_pruss.c
772
int devtype __unused, struct thread *td __unused)
sys/arm/xilinx/zy7_devcfg.c
124
static int zy7_devcfg_open(struct cdev *, int, int, struct thread *);
sys/arm/xilinx/zy7_devcfg.c
126
static int zy7_devcfg_close(struct cdev *, int, int, struct thread *);
sys/arm/xilinx/zy7_devcfg.c
498
zy7_devcfg_open(struct cdev *dev, int oflags, int devtype, struct thread *td)
sys/arm/xilinx/zy7_devcfg.c
627
zy7_devcfg_close(struct cdev *dev, int fflag, int devtype, struct thread *td)
sys/arm64/arm64/db_trace.c
145
db_trace_thread(struct thread *thr, int count)
sys/arm64/arm64/db_trace.c
65
db_stack_trace_cmd(struct thread *td, struct unwind_state *frame)
sys/arm64/arm64/debug_monitor.c
668
dbg_monitor_enter(struct thread *thread)
sys/arm64/arm64/debug_monitor.c
675
} else if ((thread->td_pcb->pcb_dbg_regs.dbg_flags & DBGMON_ENABLED) != 0) {
sys/arm64/arm64/debug_monitor.c
693
dbg_monitor_exit(struct thread *thread, struct trapframe *frame)
sys/arm64/arm64/debug_monitor.c
702
if (!(SV_PROC_FLAG(thread->td_proc, SV_ILP32)))
sys/arm64/arm64/debug_monitor.c
704
if ((thread->td_pcb->pcb_dbg_regs.dbg_flags & DBGMON_ENABLED) != 0) {
sys/arm64/arm64/debug_monitor.c
706
dbg_register_sync(&thread->td_pcb->pcb_dbg_regs);
sys/arm64/arm64/debug_monitor.c
75
void dbg_monitor_enter(struct thread *);
sys/arm64/arm64/debug_monitor.c
76
void dbg_monitor_exit(struct thread *, struct trapframe *);
sys/arm64/arm64/elf32_machdep.c
192
freebsd32_fetch_syscall_args(struct thread *td)
sys/arm64/arm64/elf32_machdep.c
244
freebsd32_set_syscall_retval(struct thread *td, int error)
sys/arm64/arm64/elf32_machdep.c
275
freebsd32_setregs(struct thread *td, struct image_params *imgp,
sys/arm64/arm64/elf32_machdep.c
309
elf32_dump_thread(struct thread *td, void *dst, size_t *off)
sys/arm64/arm64/elf32_machdep.c
74
static int freebsd32_fetch_syscall_args(struct thread *td);
sys/arm64/arm64/elf32_machdep.c
75
static void freebsd32_setregs(struct thread *td, struct image_params *imgp,
sys/arm64/arm64/elf32_machdep.c
77
static void freebsd32_set_syscall_retval(struct thread *, int);
sys/arm64/arm64/elf_machdep.c
138
get_arm64_addr_mask(struct regset *rs, struct thread *td, void *buf,
sys/arm64/arm64/elf_machdep.c
166
elf64_dump_thread(struct thread *td __unused, void *dst __unused,
sys/arm64/arm64/exec_machdep.c
101
set_regs(struct thread *td, struct reg *regs)
sys/arm64/arm64/exec_machdep.c
152
fill_fpregs(struct thread *td, struct fpreg *regs)
sys/arm64/arm64/exec_machdep.c
180
set_fpregs(struct thread *td, struct fpreg *regs)
sys/arm64/arm64/exec_machdep.c
196
fill_dbregs(struct thread *td, struct dbreg *regs)
sys/arm64/arm64/exec_machdep.c
249
set_dbregs(struct thread *td, struct dbreg *regs)
sys/arm64/arm64/exec_machdep.c
346
fill_regs32(struct thread *td, struct reg32 *regs)
sys/arm64/arm64/exec_machdep.c
364
set_regs32(struct thread *td, struct reg32 *regs)
sys/arm64/arm64/exec_machdep.c
384
fill_fpregs32(struct thread *td, struct fpreg32 *regs)
sys/arm64/arm64/exec_machdep.c
392
set_fpregs32(struct thread *td, struct fpreg32 *regs)
sys/arm64/arm64/exec_machdep.c
399
fill_dbregs32(struct thread *td, struct dbreg32 *regs)
sys/arm64/arm64/exec_machdep.c
407
set_dbregs32(struct thread *td, struct dbreg32 *regs)
sys/arm64/arm64/exec_machdep.c
415
exec_setregs(struct thread *td, struct image_params *imgp, uintptr_t stack)
sys/arm64/arm64/exec_machdep.c
484
get_mcontext(struct thread *td, mcontext_t *mcp, int clear_ret)
sys/arm64/arm64/exec_machdep.c
513
set_mcontext(struct thread *td, mcontext_t *mcp)
sys/arm64/arm64/exec_machdep.c
632
get_fpcontext(struct thread *td, mcontext_t *mcp)
sys/arm64/arm64/exec_machdep.c
662
set_fpcontext(struct thread *td, mcontext_t *mcp)
sys/arm64/arm64/exec_machdep.c
691
sys_sigreturn(struct thread *td, struct sigreturn_args *uap)
sys/arm64/arm64/exec_machdep.c
71
static void get_fpcontext(struct thread *td, mcontext_t *mcp);
sys/arm64/arm64/exec_machdep.c
719
sendsig_ctx_end(struct thread *td, vm_offset_t *addrp)
sys/arm64/arm64/exec_machdep.c
72
static void set_fpcontext(struct thread *td, mcontext_t *mcp);
sys/arm64/arm64/exec_machdep.c
738
sendsig_ctx_sve(struct thread *td, vm_offset_t *addrp)
sys/arm64/arm64/exec_machdep.c
75
fill_regs(struct thread *td, struct reg *regs)
sys/arm64/arm64/exec_machdep.c
775
typedef bool(*ctx_func)(struct thread *, vm_offset_t *);
sys/arm64/arm64/exec_machdep.c
785
struct thread *td;
sys/arm64/arm64/freebsd32_machdep.c
131
get_fpcontext32(struct thread *td, mcontext32_vfp_t *mcp)
sys/arm64/arm64/freebsd32_machdep.c
167
set_fpcontext32(struct thread *td, mcontext32_vfp_t *mcp)
sys/arm64/arm64/freebsd32_machdep.c
189
get_mcontext32(struct thread *td, mcontext32_t *mcp, int flags)
sys/arm64/arm64/freebsd32_machdep.c
214
set_mcontext32(struct thread *td, mcontext32_t *mcp)
sys/arm64/arm64/freebsd32_machdep.c
261
freebsd32_getcontext(struct thread *td, struct freebsd32_getcontext_args *uap)
sys/arm64/arm64/freebsd32_machdep.c
280
freebsd32_setcontext(struct thread *td, struct freebsd32_setcontext_args *uap)
sys/arm64/arm64/freebsd32_machdep.c
300
freebsd32_sigreturn(struct thread *td, struct freebsd32_sigreturn_args *uap)
sys/arm64/arm64/freebsd32_machdep.c
321
freebsd32_swapcontext(struct thread *td, struct freebsd32_swapcontext_args *uap)
sys/arm64/arm64/freebsd32_machdep.c
350
struct thread *td;
sys/arm64/arm64/freebsd32_machdep.c
466
ofreebsd32_sigreturn(struct thread *td, struct ofreebsd32_sigreturn_args *uap)
sys/arm64/arm64/freebsd32_machdep.c
72
freebsd32_sysarch(struct thread *td, struct freebsd32_sysarch_args *uap)
sys/arm64/arm64/genassym.c
69
ASSYM(TD_PROC, offsetof(struct thread, td_proc));
sys/arm64/arm64/genassym.c
70
ASSYM(TD_PCB, offsetof(struct thread, td_pcb));
sys/arm64/arm64/genassym.c
71
ASSYM(TD_FLAGS, offsetof(struct thread, td_flags));
sys/arm64/arm64/genassym.c
72
ASSYM(TD_AST, offsetof(struct thread, td_ast));
sys/arm64/arm64/genassym.c
73
ASSYM(TD_FRAME, offsetof(struct thread, td_frame));
sys/arm64/arm64/genassym.c
74
ASSYM(TD_LOCK, offsetof(struct thread, td_lock));
sys/arm64/arm64/genassym.c
75
ASSYM(TD_MD_CANARY, offsetof(struct thread, td_md.md_canary));
sys/arm64/arm64/genassym.c
76
ASSYM(TD_MD_EFIRT_TMP, offsetof(struct thread, td_md.md_efirt_tmp));
sys/arm64/arm64/genassym.c
77
ASSYM(TD_MD_FLAGS, offsetof(struct thread, td_md.md_flags));
sys/arm64/arm64/genassym.c
79
ASSYM(TD_MD_SCTLR, offsetof(struct thread, td_md.md_sctlr));
sys/arm64/arm64/machdep.c
382
struct thread *td;
sys/arm64/arm64/machdep.c
398
struct thread *td;
sys/arm64/arm64/mem.c
140
caddr_t data __unused, int flags __unused, struct thread *td __unused)
sys/arm64/arm64/mte.c
140
mte_fork(struct thread *new_td, struct thread *orig_td)
sys/arm64/arm64/mte.c
151
mte_exec(struct thread *td)
sys/arm64/arm64/mte.c
161
mte_copy_thread(struct thread *new_td, struct thread *orig_td)
sys/arm64/arm64/mte.c
173
mte_thread_alloc(struct thread *td)
sys/arm64/arm64/mte.c
179
mte_thread0(struct thread *td)
sys/arm64/arm64/mte.c
184
struct thread *
sys/arm64/arm64/mte.c
185
mte_switch(struct thread *td)
sys/arm64/arm64/mte.c
50
struct thread *mte_switch(struct thread *);
sys/arm64/arm64/mte.c
76
mte_update_sctlr(struct thread *td, uint64_t sctlr)
sys/arm64/arm64/pmap.c
485
static bool pmap_activate_int(struct thread *td, pmap_t pmap);
sys/arm64/arm64/pmap.c
9380
pmap_activate_int(struct thread *td, pmap_t pmap)
sys/arm64/arm64/pmap.c
9445
pmap_activate(struct thread *td)
sys/arm64/arm64/pmap.c
9461
pmap_switch(struct thread *new)
sys/arm64/arm64/ptrace_machdep.c
113
get_arm64_tls(struct regset *rs, struct thread *td, void *buf,
sys/arm64/arm64/ptrace_machdep.c
136
get_arm_tls(struct regset *rs, struct thread *td, void *buf,
sys/arm64/arm64/ptrace_machdep.c
161
ptrace_set_pc(struct thread *td, u_long addr)
sys/arm64/arm64/ptrace_machdep.c
169
ptrace_single_step(struct thread *td)
sys/arm64/arm64/ptrace_machdep.c
181
ptrace_clear_single_step(struct thread *td)
sys/arm64/arm64/ptrace_machdep.c
52
cpu_ptrace(struct thread *td, int req, void *arg, int data)
sys/arm64/arm64/ptrace_machdep.c
82
get_arm_vfp(struct regset *rs, struct thread *td, void *buf, size_t *sizep)
sys/arm64/arm64/ptrace_machdep.c
94
set_arm_vfp(struct regset *rs, struct thread *td, void *buf,
sys/arm64/arm64/ptrauth.c
169
ptrauth_fork(struct thread *new_td, struct thread *orig_td)
sys/arm64/arm64/ptrauth.c
180
ptrauth_exec(struct thread *td)
sys/arm64/arm64/ptrauth.c
194
ptrauth_copy_thread(struct thread *new_td, struct thread *orig_td)
sys/arm64/arm64/ptrauth.c
205
ptrauth_thread_alloc(struct thread *td)
sys/arm64/arm64/ptrauth.c
226
ptrauth_thread0(struct thread *td)
sys/arm64/arm64/ptrauth.c
300
struct thread *
sys/arm64/arm64/ptrauth.c
301
ptrauth_switch(struct thread *td)
sys/arm64/arm64/ptrauth.c
313
ptrauth_exit_el0(struct thread *td)
sys/arm64/arm64/ptrauth.c
324
ptrauth_enter_el0(struct thread *td)
sys/arm64/arm64/ptrauth.c
56
struct thread *ptrauth_switch(struct thread *);
sys/arm64/arm64/ptrauth.c
57
void ptrauth_exit_el0(struct thread *);
sys/arm64/arm64/ptrauth.c
58
void ptrauth_enter_el0(struct thread *);
sys/arm64/arm64/stack_machdep.c
42
stack_capture(struct thread *td, struct stack *st, struct unwind_state *frame)
sys/arm64/arm64/stack_machdep.c
57
stack_save_td(struct stack *st, struct thread *td)
sys/arm64/arm64/sys_machdep.c
47
sysarch(struct thread *td, struct sysarch_args *uap)
sys/arm64/arm64/trap.c
125
call_trapsignal(struct thread *td, int sig, int code, void *addr, int trapno)
sys/arm64/arm64/trap.c
139
cpu_fetch_syscall_args(struct thread *td)
sys/arm64/arm64/trap.c
200
svc_handler(struct thread *td, struct trapframe *frame)
sys/arm64/arm64/trap.c
216
align_abort(struct thread *td, struct trapframe *frame, uint64_t esr,
sys/arm64/arm64/trap.c
243
external_abort(struct thread *td, struct trapframe *frame, uint64_t esr,
sys/arm64/arm64/trap.c
268
tag_check_abort(struct thread *td, struct trapframe *frame, uint64_t esr,
sys/arm64/arm64/trap.c
302
data_abort(struct thread *td, struct trapframe *frame, uint64_t esr,
sys/arm64/arm64/trap.c
506
fpe_trap(struct thread *td, void *addr, uint32_t exception)
sys/arm64/arm64/trap.c
528
handle_moe(struct thread *td, struct trapframe *frame, uint64_t esr)
sys/arm64/arm64/trap.c
591
do_el1h_sync(struct thread *td, struct trapframe *frame)
sys/arm64/arm64/trap.c
708
do_el0_sync(struct thread *td, struct trapframe *frame)
sys/arm64/arm64/trap.c
77
void do_el1h_sync(struct thread *, struct trapframe *);
sys/arm64/arm64/trap.c
78
void do_el0_sync(struct thread *, struct trapframe *);
sys/arm64/arm64/trap.c
91
typedef void (abort_handler)(struct thread *, struct trapframe *, uint64_t,
sys/arm64/arm64/undefined.c
161
struct thread *td = curthread;
sys/arm64/arm64/undefined.c
183
struct thread *td;
sys/arm64/arm64/unwind.c
36
unwind_frame(struct thread *td, struct unwind_state *frame)
sys/arm64/arm64/vfp.c
1085
fpu_kern_enter(struct thread *td, struct fpu_kern_ctx *ctx, u_int flags)
sys/arm64/arm64/vfp.c
1132
fpu_kern_leave(struct thread *td, struct fpu_kern_ctx *ctx)
sys/arm64/arm64/vfp.c
170
vfp_discard(struct thread *td)
sys/arm64/arm64/vfp.c
449
vfp_to_sve_sync(struct thread *td)
sys/arm64/arm64/vfp.c
479
sve_to_vfp_sync(struct thread *td)
sys/arm64/arm64/vfp.c
506
vfp_save_state_common(struct thread *td, struct pcb *pcb, bool full_save)
sys/arm64/arm64/vfp.c
566
vfp_save_state(struct thread *td, struct pcb *pcb)
sys/arm64/arm64/vfp.c
593
vfp_save_state_switch(struct thread *td)
sys/arm64/arm64/vfp.c
605
vfp_new_thread(struct thread *newtd, struct thread *oldtd, bool fork)
sys/arm64/arm64/vfp.c
651
vfp_reset_state(struct thread *td, struct pcb *pcb)
sys/arm64/arm64/vfp.c
674
vfp_restore_state_common(struct thread *td, int flags)
sys/arm64/arm64/vfp.c
738
struct thread *td;
sys/arm64/arm64/vfp.c
745
sve_restore_state(struct thread *td)
sys/arm64/arm64/vfp.c
859
sve_thread_dtor(void *arg __unused, struct thread *td)
sys/arm64/arm64/vfp.c
925
get_arm64_sve(struct regset *rs, struct thread *td, void *buf,
sys/arm64/arm64/vfp.c
97
sve_buf_size(struct thread *td)
sys/arm64/arm64/vfp.c
988
set_arm64_sve(struct regset *rs, struct thread *td, void *buf, size_t size)
sys/arm64/arm64/vm_machdep.c
144
cpu_set_syscall_retval(struct thread *td, int error)
sys/arm64/arm64/vm_machdep.c
178
cpu_copy_thread(struct thread *td, struct thread *td0)
sys/arm64/arm64/vm_machdep.c
212
cpu_set_upcall(struct thread *td, void (*entry)(void *), void *arg,
sys/arm64/arm64/vm_machdep.c
234
cpu_set_user_tls(struct thread *td, void *tls_base, int thr_flags __unused)
sys/arm64/arm64/vm_machdep.c
260
cpu_thread_exit(struct thread *td)
sys/arm64/arm64/vm_machdep.c
265
cpu_thread_alloc(struct thread *td)
sys/arm64/arm64/vm_machdep.c
273
cpu_thread_new_kstack(struct thread *td)
sys/arm64/arm64/vm_machdep.c
279
cpu_thread_free(struct thread *td)
sys/arm64/arm64/vm_machdep.c
285
cpu_thread_clean(struct thread *td)
sys/arm64/arm64/vm_machdep.c
296
cpu_fork_kthread_handler(struct thread *td, void (*func)(void *), void *arg)
sys/arm64/arm64/vm_machdep.c
304
cpu_update_pcb(struct thread *td)
sys/arm64/arm64/vm_machdep.c
312
cpu_exit(struct thread *td)
sys/arm64/arm64/vm_machdep.c
324
cpu_procctl(struct thread *td __unused, int idtype __unused, id_t id __unused,
sys/arm64/arm64/vm_machdep.c
72
cpu_fork(struct thread *td1, struct proc *p2, struct thread *td2, int flags)
sys/arm64/include/cpu.h
271
void ptrauth_fork(struct thread *, struct thread *);
sys/arm64/include/cpu.h
272
void ptrauth_exec(struct thread *);
sys/arm64/include/cpu.h
273
void ptrauth_copy_thread(struct thread *, struct thread *);
sys/arm64/include/cpu.h
274
void ptrauth_thread_alloc(struct thread *);
sys/arm64/include/cpu.h
275
void ptrauth_thread0(struct thread *);
sys/arm64/include/cpu.h
281
void mte_fork(struct thread *, struct thread *);
sys/arm64/include/cpu.h
282
void mte_exec(struct thread *);
sys/arm64/include/cpu.h
283
void mte_copy_thread(struct thread *, struct thread *);
sys/arm64/include/cpu.h
284
void mte_thread_alloc(struct thread *);
sys/arm64/include/cpu.h
285
void mte_thread0(struct thread *);
sys/arm64/include/pcpu.h
69
static inline struct thread *
sys/arm64/include/pcpu.h
72
struct thread *td;
sys/arm64/include/pmap.h
103
struct thread;
sys/arm64/include/pmap.h
185
struct pcb *pmap_switch(struct thread *);
sys/arm64/include/stack.h
38
bool unwind_frame(struct thread *, struct unwind_state *);
sys/arm64/include/stack.h
43
struct thread *td = curthread; \
sys/arm64/include/stack.h
49
kstack_contains(struct thread *td, vm_offset_t va, size_t len)
sys/arm64/include/vfp.h
102
void fpu_kern_enter(struct thread *, struct fpu_kern_ctx *, u_int);
sys/arm64/include/vfp.h
103
int fpu_kern_leave(struct thread *, struct fpu_kern_ctx *);
sys/arm64/include/vfp.h
117
void get_fpcontext32(struct thread *td, mcontext32_vfp_t *mcp);
sys/arm64/include/vfp.h
118
void set_fpcontext32(struct thread *td, mcontext32_vfp_t *mcp);
sys/arm64/include/vfp.h
69
struct thread;
sys/arm64/include/vfp.h
74
void vfp_discard(struct thread *);
sys/arm64/include/vfp.h
77
void vfp_new_thread(struct thread *, struct thread *, bool);
sys/arm64/include/vfp.h
78
void vfp_reset_state(struct thread *, struct pcb *);
sys/arm64/include/vfp.h
80
void vfp_save_state(struct thread *, struct pcb *);
sys/arm64/include/vfp.h
82
void vfp_save_state_switch(struct thread *);
sys/arm64/include/vfp.h
83
void vfp_to_sve_sync(struct thread *);
sys/arm64/include/vfp.h
84
void sve_to_vfp_sync(struct thread *);
sys/arm64/include/vfp.h
87
size_t sve_buf_size(struct thread *);
sys/arm64/include/vfp.h
88
bool sve_restore_state(struct thread *);
sys/arm64/intel/stratix10-soc-fpga-mgr.c
191
int fmt __unused, struct thread *td __unused)
sys/arm64/intel/stratix10-soc-fpga-mgr.c
223
struct thread *td)
sys/arm64/intel/stratix10-soc-fpga-mgr.c
77
int fmt __unused, struct thread *td __unused)
sys/arm64/linux/linux.h
204
int linux_ptrace_getregs_machdep(struct thread *td, pid_t pid,
sys/arm64/linux/linux.h
206
int linux_ptrace_peekuser(struct thread *td, pid_t pid,
sys/arm64/linux/linux.h
208
int linux_ptrace_pokeuser(struct thread *td, pid_t pid,
sys/arm64/linux/linux_machdep.c
108
linux_ptrace_getregs_machdep(struct thread *td __unused, pid_t pid __unused,
sys/arm64/linux/linux_machdep.c
116
linux_ptrace_peekuser(struct thread *td, pid_t pid, void *addr, void *data)
sys/arm64/linux/linux_machdep.c
125
linux_ptrace_pokeuser(struct thread *td, pid_t pid, void *addr, void *data)
sys/arm64/linux/linux_machdep.c
46
linux_set_upcall(struct thread *td, register_t stack)
sys/arm64/linux/linux_machdep.c
61
linux_set_cloned_tls(struct thread *td, void *desc)
sys/arm64/linux/linux_proto.h
1251
int linux_setxattr(struct thread *, struct linux_setxattr_args *);
sys/arm64/linux/linux_proto.h
1252
int linux_lsetxattr(struct thread *, struct linux_lsetxattr_args *);
sys/arm64/linux/linux_proto.h
1253
int linux_fsetxattr(struct thread *, struct linux_fsetxattr_args *);
sys/arm64/linux/linux_proto.h
1254
int linux_getxattr(struct thread *, struct linux_getxattr_args *);
sys/arm64/linux/linux_proto.h
1255
int linux_lgetxattr(struct thread *, struct linux_lgetxattr_args *);
sys/arm64/linux/linux_proto.h
1256
int linux_fgetxattr(struct thread *, struct linux_fgetxattr_args *);
sys/arm64/linux/linux_proto.h
1257
int linux_listxattr(struct thread *, struct linux_listxattr_args *);
sys/arm64/linux/linux_proto.h
1258
int linux_llistxattr(struct thread *, struct linux_llistxattr_args *);
sys/arm64/linux/linux_proto.h
1259
int linux_flistxattr(struct thread *, struct linux_flistxattr_args *);
sys/arm64/linux/linux_proto.h
1260
int linux_removexattr(struct thread *, struct linux_removexattr_args *);
sys/arm64/linux/linux_proto.h
1261
int linux_lremovexattr(struct thread *, struct linux_lremovexattr_args *);
sys/arm64/linux/linux_proto.h
1262
int linux_fremovexattr(struct thread *, struct linux_fremovexattr_args *);
sys/arm64/linux/linux_proto.h
1263
int linux_getcwd(struct thread *, struct linux_getcwd_args *);
sys/arm64/linux/linux_proto.h
1264
int linux_lookup_dcookie(struct thread *, struct linux_lookup_dcookie_args *);
sys/arm64/linux/linux_proto.h
1265
int linux_eventfd2(struct thread *, struct linux_eventfd2_args *);
sys/arm64/linux/linux_proto.h
1266
int linux_epoll_create1(struct thread *, struct linux_epoll_create1_args *);
sys/arm64/linux/linux_proto.h
1267
int linux_epoll_ctl(struct thread *, struct linux_epoll_ctl_args *);
sys/arm64/linux/linux_proto.h
1268
int linux_epoll_pwait(struct thread *, struct linux_epoll_pwait_args *);
sys/arm64/linux/linux_proto.h
1269
int linux_dup3(struct thread *, struct linux_dup3_args *);
sys/arm64/linux/linux_proto.h
1270
int linux_fcntl(struct thread *, struct linux_fcntl_args *);
sys/arm64/linux/linux_proto.h
1271
int linux_inotify_init1(struct thread *, struct linux_inotify_init1_args *);
sys/arm64/linux/linux_proto.h
1272
int linux_inotify_add_watch(struct thread *, struct linux_inotify_add_watch_args *);
sys/arm64/linux/linux_proto.h
1273
int linux_inotify_rm_watch(struct thread *, struct linux_inotify_rm_watch_args *);
sys/arm64/linux/linux_proto.h
1274
int linux_ioctl(struct thread *, struct linux_ioctl_args *);
sys/arm64/linux/linux_proto.h
1275
int linux_ioprio_set(struct thread *, struct linux_ioprio_set_args *);
sys/arm64/linux/linux_proto.h
1276
int linux_ioprio_get(struct thread *, struct linux_ioprio_get_args *);
sys/arm64/linux/linux_proto.h
1277
int linux_mknodat(struct thread *, struct linux_mknodat_args *);
sys/arm64/linux/linux_proto.h
1278
int linux_mkdirat(struct thread *, struct linux_mkdirat_args *);
sys/arm64/linux/linux_proto.h
1279
int linux_unlinkat(struct thread *, struct linux_unlinkat_args *);
sys/arm64/linux/linux_proto.h
1280
int linux_symlinkat(struct thread *, struct linux_symlinkat_args *);
sys/arm64/linux/linux_proto.h
1281
int linux_linkat(struct thread *, struct linux_linkat_args *);
sys/arm64/linux/linux_proto.h
1282
int linux_renameat(struct thread *, struct linux_renameat_args *);
sys/arm64/linux/linux_proto.h
1283
int linux_mount(struct thread *, struct linux_mount_args *);
sys/arm64/linux/linux_proto.h
1284
int linux_pivot_root(struct thread *, struct linux_pivot_root_args *);
sys/arm64/linux/linux_proto.h
1285
int linux_statfs(struct thread *, struct linux_statfs_args *);
sys/arm64/linux/linux_proto.h
1286
int linux_fstatfs(struct thread *, struct linux_fstatfs_args *);
sys/arm64/linux/linux_proto.h
1287
int linux_truncate(struct thread *, struct linux_truncate_args *);
sys/arm64/linux/linux_proto.h
1288
int linux_ftruncate(struct thread *, struct linux_ftruncate_args *);
sys/arm64/linux/linux_proto.h
1289
int linux_fallocate(struct thread *, struct linux_fallocate_args *);
sys/arm64/linux/linux_proto.h
1290
int linux_faccessat(struct thread *, struct linux_faccessat_args *);
sys/arm64/linux/linux_proto.h
1291
int linux_chdir(struct thread *, struct linux_chdir_args *);
sys/arm64/linux/linux_proto.h
1292
int linux_fchmodat(struct thread *, struct linux_fchmodat_args *);
sys/arm64/linux/linux_proto.h
1293
int linux_fchownat(struct thread *, struct linux_fchownat_args *);
sys/arm64/linux/linux_proto.h
1294
int linux_openat(struct thread *, struct linux_openat_args *);
sys/arm64/linux/linux_proto.h
1295
int linux_vhangup(struct thread *, struct linux_vhangup_args *);
sys/arm64/linux/linux_proto.h
1296
int linux_pipe2(struct thread *, struct linux_pipe2_args *);
sys/arm64/linux/linux_proto.h
1297
int linux_getdents64(struct thread *, struct linux_getdents64_args *);
sys/arm64/linux/linux_proto.h
1298
int linux_lseek(struct thread *, struct linux_lseek_args *);
sys/arm64/linux/linux_proto.h
1299
int linux_write(struct thread *, struct linux_write_args *);
sys/arm64/linux/linux_proto.h
1300
int linux_writev(struct thread *, struct linux_writev_args *);
sys/arm64/linux/linux_proto.h
1301
int linux_pread(struct thread *, struct linux_pread_args *);
sys/arm64/linux/linux_proto.h
1302
int linux_pwrite(struct thread *, struct linux_pwrite_args *);
sys/arm64/linux/linux_proto.h
1303
int linux_preadv(struct thread *, struct linux_preadv_args *);
sys/arm64/linux/linux_proto.h
1304
int linux_pwritev(struct thread *, struct linux_pwritev_args *);
sys/arm64/linux/linux_proto.h
1305
int linux_sendfile(struct thread *, struct linux_sendfile_args *);
sys/arm64/linux/linux_proto.h
1306
int linux_pselect6(struct thread *, struct linux_pselect6_args *);
sys/arm64/linux/linux_proto.h
1307
int linux_ppoll(struct thread *, struct linux_ppoll_args *);
sys/arm64/linux/linux_proto.h
1308
int linux_signalfd4(struct thread *, struct linux_signalfd4_args *);
sys/arm64/linux/linux_proto.h
1309
int linux_vmsplice(struct thread *, struct linux_vmsplice_args *);
sys/arm64/linux/linux_proto.h
1310
int linux_splice(struct thread *, struct linux_splice_args *);
sys/arm64/linux/linux_proto.h
1311
int linux_tee(struct thread *, struct linux_tee_args *);
sys/arm64/linux/linux_proto.h
1312
int linux_readlinkat(struct thread *, struct linux_readlinkat_args *);
sys/arm64/linux/linux_proto.h
1313
int linux_newfstatat(struct thread *, struct linux_newfstatat_args *);
sys/arm64/linux/linux_proto.h
1314
int linux_newfstat(struct thread *, struct linux_newfstat_args *);
sys/arm64/linux/linux_proto.h
1315
int linux_fdatasync(struct thread *, struct linux_fdatasync_args *);
sys/arm64/linux/linux_proto.h
1316
int linux_sync_file_range(struct thread *, struct linux_sync_file_range_args *);
sys/arm64/linux/linux_proto.h
1317
int linux_timerfd_create(struct thread *, struct linux_timerfd_create_args *);
sys/arm64/linux/linux_proto.h
1318
int linux_timerfd_settime(struct thread *, struct linux_timerfd_settime_args *);
sys/arm64/linux/linux_proto.h
1319
int linux_timerfd_gettime(struct thread *, struct linux_timerfd_gettime_args *);
sys/arm64/linux/linux_proto.h
1320
int linux_utimensat(struct thread *, struct linux_utimensat_args *);
sys/arm64/linux/linux_proto.h
1321
int linux_capget(struct thread *, struct linux_capget_args *);
sys/arm64/linux/linux_proto.h
1322
int linux_capset(struct thread *, struct linux_capset_args *);
sys/arm64/linux/linux_proto.h
1323
int linux_personality(struct thread *, struct linux_personality_args *);
sys/arm64/linux/linux_proto.h
1324
int linux_exit(struct thread *, struct linux_exit_args *);
sys/arm64/linux/linux_proto.h
1325
int linux_exit_group(struct thread *, struct linux_exit_group_args *);
sys/arm64/linux/linux_proto.h
1326
int linux_waitid(struct thread *, struct linux_waitid_args *);
sys/arm64/linux/linux_proto.h
1327
int linux_set_tid_address(struct thread *, struct linux_set_tid_address_args *);
sys/arm64/linux/linux_proto.h
1328
int linux_unshare(struct thread *, struct linux_unshare_args *);
sys/arm64/linux/linux_proto.h
1329
int linux_sys_futex(struct thread *, struct linux_sys_futex_args *);
sys/arm64/linux/linux_proto.h
1330
int linux_set_robust_list(struct thread *, struct linux_set_robust_list_args *);
sys/arm64/linux/linux_proto.h
1331
int linux_get_robust_list(struct thread *, struct linux_get_robust_list_args *);
sys/arm64/linux/linux_proto.h
1332
int linux_nanosleep(struct thread *, struct linux_nanosleep_args *);
sys/arm64/linux/linux_proto.h
1333
int linux_getitimer(struct thread *, struct linux_getitimer_args *);
sys/arm64/linux/linux_proto.h
1334
int linux_setitimer(struct thread *, struct linux_setitimer_args *);
sys/arm64/linux/linux_proto.h
1335
int linux_kexec_load(struct thread *, struct linux_kexec_load_args *);
sys/arm64/linux/linux_proto.h
1336
int linux_init_module(struct thread *, struct linux_init_module_args *);
sys/arm64/linux/linux_proto.h
1337
int linux_delete_module(struct thread *, struct linux_delete_module_args *);
sys/arm64/linux/linux_proto.h
1338
int linux_timer_create(struct thread *, struct linux_timer_create_args *);
sys/arm64/linux/linux_proto.h
1339
int linux_timer_gettime(struct thread *, struct linux_timer_gettime_args *);
sys/arm64/linux/linux_proto.h
1340
int linux_timer_getoverrun(struct thread *, struct linux_timer_getoverrun_args *);
sys/arm64/linux/linux_proto.h
1341
int linux_timer_settime(struct thread *, struct linux_timer_settime_args *);
sys/arm64/linux/linux_proto.h
1342
int linux_timer_delete(struct thread *, struct linux_timer_delete_args *);
sys/arm64/linux/linux_proto.h
1343
int linux_clock_settime(struct thread *, struct linux_clock_settime_args *);
sys/arm64/linux/linux_proto.h
1344
int linux_clock_gettime(struct thread *, struct linux_clock_gettime_args *);
sys/arm64/linux/linux_proto.h
1345
int linux_clock_getres(struct thread *, struct linux_clock_getres_args *);
sys/arm64/linux/linux_proto.h
1346
int linux_clock_nanosleep(struct thread *, struct linux_clock_nanosleep_args *);
sys/arm64/linux/linux_proto.h
1347
int linux_syslog(struct thread *, struct linux_syslog_args *);
sys/arm64/linux/linux_proto.h
1348
int linux_ptrace(struct thread *, struct linux_ptrace_args *);
sys/arm64/linux/linux_proto.h
1349
int linux_sched_setparam(struct thread *, struct linux_sched_setparam_args *);
sys/arm64/linux/linux_proto.h
1350
int linux_sched_setscheduler(struct thread *, struct linux_sched_setscheduler_args *);
sys/arm64/linux/linux_proto.h
1351
int linux_sched_getscheduler(struct thread *, struct linux_sched_getscheduler_args *);
sys/arm64/linux/linux_proto.h
1352
int linux_sched_getparam(struct thread *, struct linux_sched_getparam_args *);
sys/arm64/linux/linux_proto.h
1353
int linux_sched_setaffinity(struct thread *, struct linux_sched_setaffinity_args *);
sys/arm64/linux/linux_proto.h
1354
int linux_sched_getaffinity(struct thread *, struct linux_sched_getaffinity_args *);
sys/arm64/linux/linux_proto.h
1355
int linux_sched_get_priority_max(struct thread *, struct linux_sched_get_priority_max_args *);
sys/arm64/linux/linux_proto.h
1356
int linux_sched_get_priority_min(struct thread *, struct linux_sched_get_priority_min_args *);
sys/arm64/linux/linux_proto.h
1357
int linux_sched_rr_get_interval(struct thread *, struct linux_sched_rr_get_interval_args *);
sys/arm64/linux/linux_proto.h
1358
int linux_kill(struct thread *, struct linux_kill_args *);
sys/arm64/linux/linux_proto.h
1359
int linux_tkill(struct thread *, struct linux_tkill_args *);
sys/arm64/linux/linux_proto.h
1360
int linux_tgkill(struct thread *, struct linux_tgkill_args *);
sys/arm64/linux/linux_proto.h
1361
int linux_sigaltstack(struct thread *, struct linux_sigaltstack_args *);
sys/arm64/linux/linux_proto.h
1362
int linux_rt_sigsuspend(struct thread *, struct linux_rt_sigsuspend_args *);
sys/arm64/linux/linux_proto.h
1363
int linux_rt_sigaction(struct thread *, struct linux_rt_sigaction_args *);
sys/arm64/linux/linux_proto.h
1364
int linux_rt_sigprocmask(struct thread *, struct linux_rt_sigprocmask_args *);
sys/arm64/linux/linux_proto.h
1365
int linux_rt_sigpending(struct thread *, struct linux_rt_sigpending_args *);
sys/arm64/linux/linux_proto.h
1366
int linux_rt_sigtimedwait(struct thread *, struct linux_rt_sigtimedwait_args *);
sys/arm64/linux/linux_proto.h
1367
int linux_rt_sigqueueinfo(struct thread *, struct linux_rt_sigqueueinfo_args *);
sys/arm64/linux/linux_proto.h
1368
int linux_rt_sigreturn(struct thread *, struct linux_rt_sigreturn_args *);
sys/arm64/linux/linux_proto.h
1369
int linux_getpriority(struct thread *, struct linux_getpriority_args *);
sys/arm64/linux/linux_proto.h
1370
int linux_reboot(struct thread *, struct linux_reboot_args *);
sys/arm64/linux/linux_proto.h
1371
int linux_setfsuid(struct thread *, struct linux_setfsuid_args *);
sys/arm64/linux/linux_proto.h
1372
int linux_setfsgid(struct thread *, struct linux_setfsgid_args *);
sys/arm64/linux/linux_proto.h
1373
int linux_times(struct thread *, struct linux_times_args *);
sys/arm64/linux/linux_proto.h
1374
int linux_getsid(struct thread *, struct linux_getsid_args *);
sys/arm64/linux/linux_proto.h
1375
int linux_getgroups(struct thread *, struct linux_getgroups_args *);
sys/arm64/linux/linux_proto.h
1376
int linux_setgroups(struct thread *, struct linux_setgroups_args *);
sys/arm64/linux/linux_proto.h
1377
int linux_newuname(struct thread *, struct linux_newuname_args *);
sys/arm64/linux/linux_proto.h
1378
int linux_sethostname(struct thread *, struct linux_sethostname_args *);
sys/arm64/linux/linux_proto.h
1379
int linux_setdomainname(struct thread *, struct linux_setdomainname_args *);
sys/arm64/linux/linux_proto.h
1380
int linux_getrlimit(struct thread *, struct linux_getrlimit_args *);
sys/arm64/linux/linux_proto.h
1381
int linux_setrlimit(struct thread *, struct linux_setrlimit_args *);
sys/arm64/linux/linux_proto.h
1382
int linux_prctl(struct thread *, struct linux_prctl_args *);
sys/arm64/linux/linux_proto.h
1383
int linux_getcpu(struct thread *, struct linux_getcpu_args *);
sys/arm64/linux/linux_proto.h
1384
int linux_adjtimex(struct thread *, struct linux_adjtimex_args *);
sys/arm64/linux/linux_proto.h
1385
int linux_getpid(struct thread *, struct linux_getpid_args *);
sys/arm64/linux/linux_proto.h
1386
int linux_getppid(struct thread *, struct linux_getppid_args *);
sys/arm64/linux/linux_proto.h
1387
int linux_getuid(struct thread *, struct linux_getuid_args *);
sys/arm64/linux/linux_proto.h
1388
int linux_getgid(struct thread *, struct linux_getgid_args *);
sys/arm64/linux/linux_proto.h
1389
int linux_gettid(struct thread *, struct linux_gettid_args *);
sys/arm64/linux/linux_proto.h
1390
int linux_sysinfo(struct thread *, struct linux_sysinfo_args *);
sys/arm64/linux/linux_proto.h
1391
int linux_mq_open(struct thread *, struct linux_mq_open_args *);
sys/arm64/linux/linux_proto.h
1392
int linux_mq_unlink(struct thread *, struct linux_mq_unlink_args *);
sys/arm64/linux/linux_proto.h
1393
int linux_mq_timedsend(struct thread *, struct linux_mq_timedsend_args *);
sys/arm64/linux/linux_proto.h
1394
int linux_mq_timedreceive(struct thread *, struct linux_mq_timedreceive_args *);
sys/arm64/linux/linux_proto.h
1395
int linux_mq_notify(struct thread *, struct linux_mq_notify_args *);
sys/arm64/linux/linux_proto.h
1396
int linux_mq_getsetattr(struct thread *, struct linux_mq_getsetattr_args *);
sys/arm64/linux/linux_proto.h
1397
int linux_msgget(struct thread *, struct linux_msgget_args *);
sys/arm64/linux/linux_proto.h
1398
int linux_msgctl(struct thread *, struct linux_msgctl_args *);
sys/arm64/linux/linux_proto.h
1399
int linux_msgrcv(struct thread *, struct linux_msgrcv_args *);
sys/arm64/linux/linux_proto.h
1400
int linux_msgsnd(struct thread *, struct linux_msgsnd_args *);
sys/arm64/linux/linux_proto.h
1401
int linux_semget(struct thread *, struct linux_semget_args *);
sys/arm64/linux/linux_proto.h
1402
int linux_semctl(struct thread *, struct linux_semctl_args *);
sys/arm64/linux/linux_proto.h
1403
int linux_semtimedop(struct thread *, struct linux_semtimedop_args *);
sys/arm64/linux/linux_proto.h
1404
int linux_shmget(struct thread *, struct linux_shmget_args *);
sys/arm64/linux/linux_proto.h
1405
int linux_shmctl(struct thread *, struct linux_shmctl_args *);
sys/arm64/linux/linux_proto.h
1406
int linux_shmat(struct thread *, struct linux_shmat_args *);
sys/arm64/linux/linux_proto.h
1407
int linux_shmdt(struct thread *, struct linux_shmdt_args *);
sys/arm64/linux/linux_proto.h
1408
int linux_socket(struct thread *, struct linux_socket_args *);
sys/arm64/linux/linux_proto.h
1409
int linux_socketpair(struct thread *, struct linux_socketpair_args *);
sys/arm64/linux/linux_proto.h
1410
int linux_bind(struct thread *, struct linux_bind_args *);
sys/arm64/linux/linux_proto.h
1411
int linux_listen(struct thread *, struct linux_listen_args *);
sys/arm64/linux/linux_proto.h
1412
int linux_accept(struct thread *, struct linux_accept_args *);
sys/arm64/linux/linux_proto.h
1413
int linux_connect(struct thread *, struct linux_connect_args *);
sys/arm64/linux/linux_proto.h
1414
int linux_getsockname(struct thread *, struct linux_getsockname_args *);
sys/arm64/linux/linux_proto.h
1415
int linux_getpeername(struct thread *, struct linux_getpeername_args *);
sys/arm64/linux/linux_proto.h
1416
int linux_sendto(struct thread *, struct linux_sendto_args *);
sys/arm64/linux/linux_proto.h
1417
int linux_recvfrom(struct thread *, struct linux_recvfrom_args *);
sys/arm64/linux/linux_proto.h
1418
int linux_setsockopt(struct thread *, struct linux_setsockopt_args *);
sys/arm64/linux/linux_proto.h
1419
int linux_getsockopt(struct thread *, struct linux_getsockopt_args *);
sys/arm64/linux/linux_proto.h
1420
int linux_shutdown(struct thread *, struct linux_shutdown_args *);
sys/arm64/linux/linux_proto.h
1421
int linux_sendmsg(struct thread *, struct linux_sendmsg_args *);
sys/arm64/linux/linux_proto.h
1422
int linux_recvmsg(struct thread *, struct linux_recvmsg_args *);
sys/arm64/linux/linux_proto.h
1423
int linux_brk(struct thread *, struct linux_brk_args *);
sys/arm64/linux/linux_proto.h
1424
int linux_mremap(struct thread *, struct linux_mremap_args *);
sys/arm64/linux/linux_proto.h
1425
int linux_add_key(struct thread *, struct linux_add_key_args *);
sys/arm64/linux/linux_proto.h
1426
int linux_request_key(struct thread *, struct linux_request_key_args *);
sys/arm64/linux/linux_proto.h
1427
int linux_keyctl(struct thread *, struct linux_keyctl_args *);
sys/arm64/linux/linux_proto.h
1428
int linux_clone(struct thread *, struct linux_clone_args *);
sys/arm64/linux/linux_proto.h
1429
int linux_execve(struct thread *, struct linux_execve_args *);
sys/arm64/linux/linux_proto.h
1430
int linux_mmap2(struct thread *, struct linux_mmap2_args *);
sys/arm64/linux/linux_proto.h
1431
int linux_fadvise64(struct thread *, struct linux_fadvise64_args *);
sys/arm64/linux/linux_proto.h
1432
int linux_swapoff(struct thread *, struct linux_swapoff_args *);
sys/arm64/linux/linux_proto.h
1433
int linux_mprotect(struct thread *, struct linux_mprotect_args *);
sys/arm64/linux/linux_proto.h
1434
int linux_msync(struct thread *, struct linux_msync_args *);
sys/arm64/linux/linux_proto.h
1435
int linux_mincore(struct thread *, struct linux_mincore_args *);
sys/arm64/linux/linux_proto.h
1436
int linux_madvise(struct thread *, struct linux_madvise_args *);
sys/arm64/linux/linux_proto.h
1437
int linux_remap_file_pages(struct thread *, struct linux_remap_file_pages_args *);
sys/arm64/linux/linux_proto.h
1438
int linux_mbind(struct thread *, struct linux_mbind_args *);
sys/arm64/linux/linux_proto.h
1439
int linux_get_mempolicy(struct thread *, struct linux_get_mempolicy_args *);
sys/arm64/linux/linux_proto.h
1440
int linux_set_mempolicy(struct thread *, struct linux_set_mempolicy_args *);
sys/arm64/linux/linux_proto.h
1441
int linux_migrate_pages(struct thread *, struct linux_migrate_pages_args *);
sys/arm64/linux/linux_proto.h
1442
int linux_move_pages(struct thread *, struct linux_move_pages_args *);
sys/arm64/linux/linux_proto.h
1443
int linux_rt_tgsigqueueinfo(struct thread *, struct linux_rt_tgsigqueueinfo_args *);
sys/arm64/linux/linux_proto.h
1444
int linux_perf_event_open(struct thread *, struct linux_perf_event_open_args *);
sys/arm64/linux/linux_proto.h
1445
int linux_accept4(struct thread *, struct linux_accept4_args *);
sys/arm64/linux/linux_proto.h
1446
int linux_recvmmsg(struct thread *, struct linux_recvmmsg_args *);
sys/arm64/linux/linux_proto.h
1447
int linux_wait4(struct thread *, struct linux_wait4_args *);
sys/arm64/linux/linux_proto.h
1448
int linux_prlimit64(struct thread *, struct linux_prlimit64_args *);
sys/arm64/linux/linux_proto.h
1449
int linux_fanotify_init(struct thread *, struct linux_fanotify_init_args *);
sys/arm64/linux/linux_proto.h
1450
int linux_fanotify_mark(struct thread *, struct linux_fanotify_mark_args *);
sys/arm64/linux/linux_proto.h
1451
int linux_name_to_handle_at(struct thread *, struct linux_name_to_handle_at_args *);
sys/arm64/linux/linux_proto.h
1452
int linux_open_by_handle_at(struct thread *, struct linux_open_by_handle_at_args *);
sys/arm64/linux/linux_proto.h
1453
int linux_clock_adjtime(struct thread *, struct linux_clock_adjtime_args *);
sys/arm64/linux/linux_proto.h
1454
int linux_syncfs(struct thread *, struct linux_syncfs_args *);
sys/arm64/linux/linux_proto.h
1455
int linux_setns(struct thread *, struct linux_setns_args *);
sys/arm64/linux/linux_proto.h
1456
int linux_sendmmsg(struct thread *, struct linux_sendmmsg_args *);
sys/arm64/linux/linux_proto.h
1457
int linux_process_vm_readv(struct thread *, struct linux_process_vm_readv_args *);
sys/arm64/linux/linux_proto.h
1458
int linux_process_vm_writev(struct thread *, struct linux_process_vm_writev_args *);
sys/arm64/linux/linux_proto.h
1459
int linux_kcmp(struct thread *, struct linux_kcmp_args *);
sys/arm64/linux/linux_proto.h
1460
int linux_finit_module(struct thread *, struct linux_finit_module_args *);
sys/arm64/linux/linux_proto.h
1461
int linux_sched_setattr(struct thread *, struct linux_sched_setattr_args *);
sys/arm64/linux/linux_proto.h
1462
int linux_sched_getattr(struct thread *, struct linux_sched_getattr_args *);
sys/arm64/linux/linux_proto.h
1463
int linux_renameat2(struct thread *, struct linux_renameat2_args *);
sys/arm64/linux/linux_proto.h
1464
int linux_seccomp(struct thread *, struct linux_seccomp_args *);
sys/arm64/linux/linux_proto.h
1465
int linux_getrandom(struct thread *, struct linux_getrandom_args *);
sys/arm64/linux/linux_proto.h
1466
int linux_memfd_create(struct thread *, struct linux_memfd_create_args *);
sys/arm64/linux/linux_proto.h
1467
int linux_bpf(struct thread *, struct linux_bpf_args *);
sys/arm64/linux/linux_proto.h
1468
int linux_execveat(struct thread *, struct linux_execveat_args *);
sys/arm64/linux/linux_proto.h
1469
int linux_userfaultfd(struct thread *, struct linux_userfaultfd_args *);
sys/arm64/linux/linux_proto.h
1470
int linux_membarrier(struct thread *, struct linux_membarrier_args *);
sys/arm64/linux/linux_proto.h
1471
int linux_mlock2(struct thread *, struct linux_mlock2_args *);
sys/arm64/linux/linux_proto.h
1472
int linux_copy_file_range(struct thread *, struct linux_copy_file_range_args *);
sys/arm64/linux/linux_proto.h
1473
int linux_preadv2(struct thread *, struct linux_preadv2_args *);
sys/arm64/linux/linux_proto.h
1474
int linux_pwritev2(struct thread *, struct linux_pwritev2_args *);
sys/arm64/linux/linux_proto.h
1475
int linux_pkey_mprotect(struct thread *, struct linux_pkey_mprotect_args *);
sys/arm64/linux/linux_proto.h
1476
int linux_pkey_alloc(struct thread *, struct linux_pkey_alloc_args *);
sys/arm64/linux/linux_proto.h
1477
int linux_pkey_free(struct thread *, struct linux_pkey_free_args *);
sys/arm64/linux/linux_proto.h
1478
int linux_statx(struct thread *, struct linux_statx_args *);
sys/arm64/linux/linux_proto.h
1479
int linux_io_pgetevents(struct thread *, struct linux_io_pgetevents_args *);
sys/arm64/linux/linux_proto.h
1480
int linux_rseq(struct thread *, struct linux_rseq_args *);
sys/arm64/linux/linux_proto.h
1481
int linux_kexec_file_load(struct thread *, struct linux_kexec_file_load_args *);
sys/arm64/linux/linux_proto.h
1482
int linux_pidfd_send_signal(struct thread *, struct linux_pidfd_send_signal_args *);
sys/arm64/linux/linux_proto.h
1483
int linux_io_uring_setup(struct thread *, struct linux_io_uring_setup_args *);
sys/arm64/linux/linux_proto.h
1484
int linux_io_uring_enter(struct thread *, struct linux_io_uring_enter_args *);
sys/arm64/linux/linux_proto.h
1485
int linux_io_uring_register(struct thread *, struct linux_io_uring_register_args *);
sys/arm64/linux/linux_proto.h
1486
int linux_open_tree(struct thread *, struct linux_open_tree_args *);
sys/arm64/linux/linux_proto.h
1487
int linux_move_mount(struct thread *, struct linux_move_mount_args *);
sys/arm64/linux/linux_proto.h
1488
int linux_fsopen(struct thread *, struct linux_fsopen_args *);
sys/arm64/linux/linux_proto.h
1489
int linux_fsconfig(struct thread *, struct linux_fsconfig_args *);
sys/arm64/linux/linux_proto.h
1490
int linux_fsmount(struct thread *, struct linux_fsmount_args *);
sys/arm64/linux/linux_proto.h
1491
int linux_fspick(struct thread *, struct linux_fspick_args *);
sys/arm64/linux/linux_proto.h
1492
int linux_pidfd_open(struct thread *, struct linux_pidfd_open_args *);
sys/arm64/linux/linux_proto.h
1493
int linux_clone3(struct thread *, struct linux_clone3_args *);
sys/arm64/linux/linux_proto.h
1494
int linux_close_range(struct thread *, struct linux_close_range_args *);
sys/arm64/linux/linux_proto.h
1495
int linux_openat2(struct thread *, struct linux_openat2_args *);
sys/arm64/linux/linux_proto.h
1496
int linux_pidfd_getfd(struct thread *, struct linux_pidfd_getfd_args *);
sys/arm64/linux/linux_proto.h
1497
int linux_faccessat2(struct thread *, struct linux_faccessat2_args *);
sys/arm64/linux/linux_proto.h
1498
int linux_process_madvise(struct thread *, struct linux_process_madvise_args *);
sys/arm64/linux/linux_proto.h
1499
int linux_epoll_pwait2(struct thread *, struct linux_epoll_pwait2_args *);
sys/arm64/linux/linux_proto.h
1500
int linux_mount_setattr(struct thread *, struct linux_mount_setattr_args *);
sys/arm64/linux/linux_proto.h
1501
int linux_quotactl_fd(struct thread *, struct linux_quotactl_fd_args *);
sys/arm64/linux/linux_proto.h
1502
int linux_landlock_create_ruleset(struct thread *, struct linux_landlock_create_ruleset_args *);
sys/arm64/linux/linux_proto.h
1503
int linux_landlock_add_rule(struct thread *, struct linux_landlock_add_rule_args *);
sys/arm64/linux/linux_proto.h
1504
int linux_landlock_restrict_self(struct thread *, struct linux_landlock_restrict_self_args *);
sys/arm64/linux/linux_proto.h
1505
int linux_memfd_secret(struct thread *, struct linux_memfd_secret_args *);
sys/arm64/linux/linux_proto.h
1506
int linux_process_mrelease(struct thread *, struct linux_process_mrelease_args *);
sys/arm64/linux/linux_proto.h
1507
int linux_futex_waitv(struct thread *, struct linux_futex_waitv_args *);
sys/arm64/linux/linux_proto.h
1508
int linux_set_mempolicy_home_node(struct thread *, struct linux_set_mempolicy_home_node_args *);
sys/arm64/linux/linux_proto.h
1509
int linux_cachestat(struct thread *, struct linux_cachestat_args *);
sys/arm64/linux/linux_proto.h
1510
int linux_fchmodat2(struct thread *, struct linux_fchmodat2_args *);
sys/arm64/linux/linux_proto.h
23
struct thread;
sys/arm64/linux/linux_sysvec.c
100
static int linux_fetch_syscall_args(struct thread *td);
sys/arm64/linux/linux_sysvec.c
101
static void linux_exec_setregs(struct thread *td, struct image_params *imgp,
sys/arm64/linux/linux_sysvec.c
112
linux_fetch_syscall_args(struct thread *td)
sys/arm64/linux/linux_sysvec.c
140
linux_set_syscall_retval(struct thread *td, int error)
sys/arm64/linux/linux_sysvec.c
168
linux_exec_setregs(struct thread *td, struct image_params *imgp,
sys/arm64/linux/linux_sysvec.c
193
linux_parse_sigreturn_ctx(struct thread *td, struct l_sigcontext *sc)
sys/arm64/linux/linux_sysvec.c
253
linux_rt_sigreturn(struct thread *td, struct linux_rt_sigreturn_args *args)
sys/arm64/linux/linux_sysvec.c
300
struct thread *td;
sys/arm64/linux/linux_sysvec.c
99
static void linux_set_syscall_retval(struct thread *td, int error);
sys/arm64/spe/arm_spe_dev.h
82
struct thread *hwt_td;
sys/arm64/vmm/vmm.c
950
struct thread *td;
sys/arm64/vmm/vmm_dev_machdep.c
69
int fflag, struct thread *td)
sys/cam/cam_compat.c
133
struct thread *td, d_ioctl_t *cbfnp)
sys/cam/cam_compat.c
271
struct thread *td, d_ioctl_t *cbfnp)
sys/cam/cam_compat.c
439
struct thread *td, d_ioctl_t *cbfnp)
sys/cam/cam_compat.c
53
int flag, struct thread *td, d_ioctl_t *cbfnp);
sys/cam/cam_compat.c
55
int flag, struct thread *td, d_ioctl_t *cbfnp);
sys/cam/cam_compat.c
57
int flag, struct thread *td, d_ioctl_t *cbfnp);
sys/cam/cam_compat.c
62
struct thread *td, d_ioctl_t *cbfnp)
sys/cam/cam_compat.h
38
struct thread *td, int(*cbfnp)(struct cdev *, u_long, caddr_t, int,
sys/cam/cam_compat.h
39
struct thread *));
sys/cam/cam_xpt.c
365
xptopen(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/cam/cam_xpt.c
386
xptclose(struct cdev *dev, int flag, int fmt, struct thread *td)
sys/cam/cam_xpt.c
399
xptioctl(struct cdev *dev, u_long cmd, caddr_t addr, int flag, struct thread *td)
sys/cam/cam_xpt.c
410
xptdoioctl(struct cdev *dev, u_long cmd, caddr_t addr, int flag, struct thread *td)
sys/cam/ctl/ctl.c
14384
thr->thread = NULL;
sys/cam/ctl/ctl.c
2014
&softc->ctl_proc, &thr->thread, 0, 0, "ctl", "work%d", i);
sys/cam/ctl/ctl.c
2054
while (thr->thread != NULL) {
sys/cam/ctl/ctl.c
2056
if (thr->thread != NULL)
sys/cam/ctl/ctl.c
2102
ctl_open(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/cam/ctl/ctl.c
2108
ctl_close(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/cam/ctl/ctl.c
2573
struct thread *td)
sys/cam/ctl/ctl.c
396
static int ctl_open(struct cdev *dev, int flags, int fmt, struct thread *td);
sys/cam/ctl/ctl.c
397
static int ctl_close(struct cdev *dev, int flags, int fmt, struct thread *td);
sys/cam/ctl/ctl.c
403
struct thread *td);
sys/cam/ctl/ctl.h
189
struct thread *td);
sys/cam/ctl/ctl_backend.h
179
struct thread *td);
sys/cam/ctl/ctl_backend_block.c
2171
int flag, struct thread *td)
sys/cam/ctl/ctl_backend_block.c
266
int flag, struct thread *td);
sys/cam/ctl/ctl_backend_ramdisk.c
1012
int flag, struct thread *td)
sys/cam/ctl/ctl_backend_ramdisk.c
147
caddr_t addr, int flag, struct thread *td);
sys/cam/ctl/ctl_frontend.h
59
struct thread *td);
sys/cam/ctl/ctl_frontend_ioctl.c
305
struct thread *td)
sys/cam/ctl/ctl_frontend_ioctl.c
588
struct thread *td)
sys/cam/ctl/ctl_frontend_ioctl.c
91
struct thread *td);
sys/cam/ctl/ctl_frontend_iscsi.c
161
u_long cmd, caddr_t addr, int flag, struct thread *td);
sys/cam/ctl/ctl_frontend_iscsi.c
2294
u_long cmd, caddr_t addr, int flag, struct thread *td)
sys/cam/ctl/ctl_ha.c
367
struct thread *td = curthread;
sys/cam/ctl/ctl_ha.c
430
struct thread *td = curthread;
sys/cam/ctl/ctl_private.h
380
struct thread *thread;
sys/cam/ctl/ctl_private.h
421
struct thread *thresh_thread;
sys/cam/nvme/nvme_da.c
451
struct thread *td)
sys/cam/scsi/scsi_cd.c
1742
cdioctl(struct disk *dp, u_long cmd, void *addr, int flag, struct thread *td)
sys/cam/scsi/scsi_ch.c
457
chopen(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/cam/scsi/scsi_ch.c
503
chclose(struct cdev *dev, int flag, int fmt, struct thread *td)
sys/cam/scsi/scsi_ch.c
739
chioctl(struct cdev *dev, u_long cmd, caddr_t addr, int flag, struct thread *td)
sys/cam/scsi/scsi_enc.c
275
enc_open(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/cam/scsi/scsi_enc.c
309
enc_close(struct cdev *dev, int flag, int fmt, struct thread *td)
sys/cam/scsi/scsi_enc.c
350
struct thread *td)
sys/cam/scsi/scsi_pass.c
1769
passioctl(struct cdev *dev, u_long cmd, caddr_t addr, int flag, struct thread *td)
sys/cam/scsi/scsi_pass.c
1828
passdoioctl(struct cdev *dev, u_long cmd, caddr_t addr, int flag, struct thread *td)
sys/cam/scsi/scsi_pass.c
2175
passpoll(struct cdev *dev, int poll_events, struct thread *td)
sys/cam/scsi/scsi_pass.c
719
passopen(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/cam/scsi/scsi_pass.c
776
passclose(struct cdev *dev, int flag, int fmt, struct thread *td)
sys/cam/scsi/scsi_pt.c
133
ptopen(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/cam/scsi/scsi_pt.c
167
ptclose(struct cdev *dev, int flag, int fmt, struct thread *td)
sys/cam/scsi/scsi_pt.c
565
ptioctl(struct cdev *dev, u_long cmd, caddr_t addr, int flag, struct thread *td)
sys/cam/scsi/scsi_sa.c
1561
saioctl(struct cdev *dev, u_long cmd, caddr_t arg, int flag, struct thread *td)
sys/cam/scsi/scsi_sa.c
711
saopen(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/cam/scsi/scsi_sa.c
787
saclose(struct cdev *dev, int flag, int fmt, struct thread *td)
sys/cam/scsi/scsi_sg.c
426
sgopen(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/cam/scsi/scsi_sg.c
462
sgclose(struct cdev *dev, int flag, int fmt, struct thread *td)
sys/cam/scsi/scsi_sg.c
495
sgioctl(struct cdev *dev, u_long cmd, caddr_t arg, int flag, struct thread *td)
sys/cam/scsi/scsi_target.c
202
targopen(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/cam/scsi/scsi_target.c
225
targioctl(struct cdev *dev, u_long cmd, caddr_t addr, int flag, struct thread *td)
sys/cam/scsi/scsi_target.c
294
targpoll(struct cdev *dev, int poll_events, struct thread *td)
sys/cddl/compat/opensolaris/kern/opensolaris_taskq.c
105
taskq_member(taskq_t *tq, kthread_t *thread)
sys/cddl/compat/opensolaris/kern/opensolaris_taskq.c
108
return (taskqueue_member(tq->tq_queue, thread));
sys/cddl/compat/opensolaris/sys/sig.h
45
struct thread *td = curthread;
sys/cddl/compat/opensolaris/sys/zone.h
41
#define INGLOBALZONE(thread) (!jailed((thread)->td_ucred))
sys/cddl/dev/dtrace/aarch64/dtrace_subr.c
64
struct thread *td;
sys/cddl/dev/dtrace/amd64/dtrace_isa.c
364
struct thread *td;
sys/cddl/dev/dtrace/amd64/dtrace_isa.c
60
struct thread *td;
sys/cddl/dev/dtrace/amd64/dtrace_subr.c
68
struct thread *td;
sys/cddl/dev/dtrace/arm/dtrace_subr.c
69
struct thread *td;
sys/cddl/dev/dtrace/dtrace_ioctl.c
31
struct thread *td)
sys/cddl/dev/dtrace/dtrace_ioctl.c
95
int flags __unused, struct thread *td)
sys/cddl/dev/dtrace/i386/dtrace_subr.c
70
struct thread *td;
sys/cddl/dev/dtrace/powerpc/dtrace_subr.c
64
struct thread *td;
sys/cddl/dev/dtrace/riscv/dtrace_subr.c
67
struct thread *td;
sys/cddl/dev/kinst/kinst.c
168
struct thread *td __unused)
sys/cddl/dev/kinst/kinst.c
175
struct thread *td __unused)
sys/cddl/dev/kinst/kinst.c
199
int flags __unused, struct thread *td __unused)
sys/cddl/dev/kinst/trampoline.c
230
kinst_thread_ctor(void *arg __unused, struct thread *td)
sys/cddl/dev/kinst/trampoline.c
236
kinst_thread_dtor(void *arg __unused, struct thread *td)
sys/cddl/dev/kinst/trampoline.c
256
struct thread *td;
sys/cddl/dev/kinst/trampoline.c
324
struct thread *td;
sys/cddl/dev/profile/profile.c
232
struct thread *td;
sys/cddl/dev/prototype.c
133
prototype_open(struct cdev *dev __unused, int oflags __unused, int devtype __unused, struct thread *td __unused)
sys/compat/freebsd32/freebsd32_abort2.c
38
freebsd32_abort2(struct thread *td, struct freebsd32_abort2_args *uap)
sys/compat/freebsd32/freebsd32_capability.c
140
freebsd32_cap_ioctls_limit(struct thread *td,
sys/compat/freebsd32/freebsd32_capability.c
148
freebsd32_cap_ioctls_get(struct thread *td,
sys/compat/freebsd32/freebsd32_capability.c
52
freebsd32_cap_ioctls_limit(struct thread *td,
sys/compat/freebsd32/freebsd32_capability.c
85
freebsd32_cap_ioctls_get(struct thread *td,
sys/compat/freebsd32/freebsd32_ioctl.c
123
freebsd32_ioctl_sg(struct thread *td,
sys/compat/freebsd32/freebsd32_ioctl.c
188
freebsd32_ioctl(struct thread *td, struct freebsd32_ioctl_args *uap)
sys/compat/freebsd32/freebsd32_ioctl.c
58
freebsd32_ioctl_memrange(struct thread *td,
sys/compat/freebsd32/freebsd32_ioctl.c
89
freebsd32_ioctl_barmmap(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
1019
freebsd32_ptrace(struct thread *td, struct freebsd32_ptrace_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
1305
freebsd32_readv(struct thread *td, struct freebsd32_readv_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
1319
freebsd32_writev(struct thread *td, struct freebsd32_writev_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
1333
freebsd32_preadv(struct thread *td, struct freebsd32_preadv_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
1347
freebsd32_pwritev(struct thread *td, struct freebsd32_pwritev_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
1576
freebsd32_recvmsg(struct thread *td, struct freebsd32_recvmsg_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
1621
ofreebsd32_recvmsg(struct thread *td, struct ofreebsd32_recvmsg_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
1730
freebsd32_sendmsg(struct thread *td, struct freebsd32_sendmsg_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
1782
ofreebsd32_sendmsg(struct thread *td, struct ofreebsd32_sendmsg_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
1790
freebsd32_settimeofday(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
1818
freebsd32_utimes(struct thread *td, struct freebsd32_utimes_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
1840
freebsd32_lutimes(struct thread *td, struct freebsd32_lutimes_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
1861
freebsd32_futimes(struct thread *td, struct freebsd32_futimes_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
1882
freebsd32_futimesat(struct thread *td, struct freebsd32_futimesat_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
1904
freebsd32_futimens(struct thread *td, struct freebsd32_futimens_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
1925
freebsd32_utimensat(struct thread *td, struct freebsd32_utimensat_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
1947
freebsd32_adjtime(struct thread *td, struct freebsd32_adjtime_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
1973
freebsd4_freebsd32_statfs(struct thread *td, struct freebsd4_freebsd32_statfs_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
199
static int freebsd32_user_clock_nanosleep(struct thread *td, clockid_t clock_id,
sys/compat/freebsd32/freebsd32_misc.c
1992
freebsd4_freebsd32_fstatfs(struct thread *td, struct freebsd4_freebsd32_fstatfs_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
2011
freebsd4_freebsd32_fhstatfs(struct thread *td, struct freebsd4_freebsd32_fhstatfs_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
2032
freebsd32_pread(struct thread *td, struct freebsd32_pread_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
2040
freebsd32_pwrite(struct thread *td, struct freebsd32_pwrite_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
2049
ofreebsd32_lseek(struct thread *td, struct ofreebsd32_lseek_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
2057
freebsd32_lseek(struct thread *td, struct freebsd32_lseek_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
2072
freebsd32_truncate(struct thread *td, struct freebsd32_truncate_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
2081
ofreebsd32_truncate(struct thread *td, struct ofreebsd32_truncate_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
2088
freebsd32_ftruncate(struct thread *td, struct freebsd32_ftruncate_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
2096
ofreebsd32_ftruncate(struct thread *td, struct ofreebsd32_ftruncate_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
2102
ofreebsd32_getdirentries(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
2125
freebsd11_freebsd32_getdirentries(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
2147
freebsd6_freebsd32_pread(struct thread *td, struct freebsd6_freebsd32_pread_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
2155
freebsd6_freebsd32_pwrite(struct thread *td, struct freebsd6_freebsd32_pwrite_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
2163
freebsd6_freebsd32_lseek(struct thread *td, struct freebsd6_freebsd32_lseek_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
2178
freebsd6_freebsd32_truncate(struct thread *td, struct freebsd6_freebsd32_truncate_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
2186
freebsd6_freebsd32_ftruncate(struct thread *td, struct freebsd6_freebsd32_ftruncate_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
2201
freebsd32_do_sendfile(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
226
freebsd32_wait4(struct thread *td, struct freebsd32_wait4_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
2280
freebsd4_freebsd32_sendfile(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
2289
freebsd32_sendfile(struct thread *td, struct freebsd32_sendfile_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
2364
ofreebsd32_stat(struct thread *td, struct ofreebsd32_stat_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
2380
freebsd32_fstat(struct thread *td, struct freebsd32_fstat_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
2396
ofreebsd32_fstat(struct thread *td, struct ofreebsd32_fstat_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
2412
freebsd32_fstatat(struct thread *td, struct freebsd32_fstatat_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
2429
ofreebsd32_lstat(struct thread *td, struct ofreebsd32_lstat_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
2446
freebsd32_fhstat(struct thread *td, struct freebsd32_fhstat_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
247
freebsd32_wait6(struct thread *td, struct freebsd32_wait6_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
2547
freebsd11_freebsd32_stat(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
2564
freebsd11_freebsd32_fstat(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
2581
freebsd11_freebsd32_fstatat(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
2599
freebsd11_freebsd32_lstat(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
2617
freebsd11_freebsd32_fhstat(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
2672
freebsd11_freebsd32_nstat(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
2689
freebsd11_freebsd32_nlstat(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
2707
freebsd11_freebsd32_nfstat(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
2725
freebsd32___sysctl(struct thread *td, struct freebsd32___sysctl_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
2755
freebsd32___sysctlbyname(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
2780
freebsd32_jail(struct thread *td, struct freebsd32_jail_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
281
freebsd32_pdwait(struct thread *td, struct freebsd32_pdwait_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
2841
freebsd32_jail_set(struct thread *td, struct freebsd32_jail_set_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
2859
freebsd32_jail_get(struct thread *td, struct freebsd32_jail_get_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
2886
freebsd32_sigaction(struct thread *td, struct freebsd32_sigaction_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
2914
freebsd4_freebsd32_sigaction(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
2952
ofreebsd32_sigaction(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
2989
ofreebsd32_sigvec(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
3028
ofreebsd32_sigstack(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
3063
freebsd32_nanosleep(struct thread *td, struct freebsd32_nanosleep_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
3071
freebsd32_clock_nanosleep(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
3082
freebsd32_user_clock_nanosleep(struct thread *td, clockid_t clock_id,
sys/compat/freebsd32/freebsd32_misc.c
3109
freebsd32_clock_gettime(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
3126
freebsd32_clock_settime(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
3143
freebsd32_clock_getres(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
3161
int freebsd32_ktimer_create(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
3189
freebsd32_ktimer_settime(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
3210
freebsd32_ktimer_gettime(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
3226
freebsd32_timerfd_gettime(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
3247
freebsd32_timerfd_settime(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
3280
freebsd32_clock_getcpuclockid2(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
3294
freebsd32_thr_new(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
3327
freebsd32_thr_suspend(struct thread *td, struct freebsd32_thr_suspend_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
3371
freebsd32_sigqueue(struct thread *td, struct freebsd32_sigqueue_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
3390
freebsd32_sigtimedwait(struct thread *td, struct freebsd32_sigtimedwait_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
343
freebsd32_getfsstat(struct thread *td, struct freebsd32_getfsstat_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
3432
freebsd32_sigwaitinfo(struct thread *td, struct freebsd32_sigwaitinfo_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
3457
freebsd32_cpuset_setid(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
3466
freebsd32_cpuset_getid(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
3533
freebsd32_cpuset_getaffinity(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
3543
freebsd32_cpuset_setaffinity(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
3553
freebsd32_cpuset_getdomain(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
3563
freebsd32_cpuset_setdomain(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
3573
freebsd32_nmount(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
359
freebsd4_freebsd32_getfsstat(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
3620
freebsd32_xxx(struct thread *td, struct freebsd32_xxx_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
3830
freebsd32_kldstat(struct thread *td, struct freebsd32_kldstat_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
3863
freebsd32_posix_fallocate(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
3874
freebsd32_posix_fadvise(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
390
freebsd11_freebsd32_getfsstat(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
3911
freebsd32_procctl(struct thread *td, struct freebsd32_procctl_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
399
freebsd32_sigaltstack(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
4020
freebsd32_fcntl(struct thread *td, struct freebsd32_fcntl_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
4049
freebsd32_ppoll(struct thread *td, struct freebsd32_ppoll_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
4077
freebsd32_sched_rr_get_interval(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
4138
freebsd32_ntp_adjtime(struct thread *td, struct freebsd32_ntp_adjtime_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
4164
freebsd32_ffclock_setestimate(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
4198
freebsd32_ffclock_getestimate(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
4225
freebsd32_ffclock_setestimate(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
4232
freebsd32_ffclock_getestimate(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
4241
ofreebsd32_sethostid(struct thread *td, struct ofreebsd32_sethostid_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
4253
freebsd32_setcred(struct thread *td, struct freebsd32_setcred_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
499
freebsd32_execve(struct thread *td, struct freebsd32_execve_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
518
freebsd32_fexecve(struct thread *td, struct freebsd32_fexecve_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
538
freebsd32_mknodat(struct thread *td, struct freebsd32_mknodat_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
546
freebsd32_mprotect(struct thread *td, struct freebsd32_mprotect_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
560
freebsd32_mmap(struct thread *td, struct freebsd32_mmap_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
582
freebsd6_freebsd32_mmap(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
606
ofreebsd32_mmap(struct thread *td, struct ofreebsd32_mmap_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
614
freebsd32_setitimer(struct thread *td, struct freebsd32_setitimer_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
638
freebsd32_getitimer(struct thread *td, struct freebsd32_getitimer_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
653
freebsd32_select(struct thread *td, struct freebsd32_select_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
676
freebsd32_pselect(struct thread *td, struct freebsd32_pselect_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
803
freebsd32_kevent(struct thread *td, struct freebsd32_kevent_args *uap)
sys/compat/freebsd32/freebsd32_misc.c
899
freebsd11_freebsd32_kevent(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
942
freebsd32_gettimeofday(struct thread *td,
sys/compat/freebsd32/freebsd32_misc.c
965
freebsd32_getrusage(struct thread *td, struct freebsd32_getrusage_args *uap)
sys/compat/freebsd32/freebsd32_proto.h
1026
int freebsd6_freebsd32_pread(struct thread *, struct freebsd6_freebsd32_pread_args *);
sys/compat/freebsd32/freebsd32_proto.h
1027
int freebsd6_freebsd32_pwrite(struct thread *, struct freebsd6_freebsd32_pwrite_args *);
sys/compat/freebsd32/freebsd32_proto.h
1028
int freebsd6_freebsd32_mmap(struct thread *, struct freebsd6_freebsd32_mmap_args *);
sys/compat/freebsd32/freebsd32_proto.h
1029
int freebsd6_freebsd32_lseek(struct thread *, struct freebsd6_freebsd32_lseek_args *);
sys/compat/freebsd32/freebsd32_proto.h
1030
int freebsd6_freebsd32_truncate(struct thread *, struct freebsd6_freebsd32_truncate_args *);
sys/compat/freebsd32/freebsd32_proto.h
1031
int freebsd6_freebsd32_ftruncate(struct thread *, struct freebsd6_freebsd32_ftruncate_args *);
sys/compat/freebsd32/freebsd32_proto.h
1032
int freebsd6_freebsd32_aio_read(struct thread *, struct freebsd6_freebsd32_aio_read_args *);
sys/compat/freebsd32/freebsd32_proto.h
1033
int freebsd6_freebsd32_aio_write(struct thread *, struct freebsd6_freebsd32_aio_write_args *);
sys/compat/freebsd32/freebsd32_proto.h
1034
int freebsd6_freebsd32_lio_listio(struct thread *, struct freebsd6_freebsd32_lio_listio_args *);
sys/compat/freebsd32/freebsd32_proto.h
1057
int freebsd7_freebsd32___semctl(struct thread *, struct freebsd7_freebsd32___semctl_args *);
sys/compat/freebsd32/freebsd32_proto.h
1058
int freebsd7_freebsd32_msgctl(struct thread *, struct freebsd7_freebsd32_msgctl_args *);
sys/compat/freebsd32/freebsd32_proto.h
1059
int freebsd7_freebsd32_shmctl(struct thread *, struct freebsd7_freebsd32_shmctl_args *);
sys/compat/freebsd32/freebsd32_proto.h
1072
int freebsd10_freebsd32__umtx_lock(struct thread *, struct freebsd10_freebsd32__umtx_lock_args *);
sys/compat/freebsd32/freebsd32_proto.h
1073
int freebsd10_freebsd32__umtx_unlock(struct thread *, struct freebsd10_freebsd32__umtx_unlock_args *);
sys/compat/freebsd32/freebsd32_proto.h
1133
int freebsd11_freebsd32_stat(struct thread *, struct freebsd11_freebsd32_stat_args *);
sys/compat/freebsd32/freebsd32_proto.h
1134
int freebsd11_freebsd32_fstat(struct thread *, struct freebsd11_freebsd32_fstat_args *);
sys/compat/freebsd32/freebsd32_proto.h
1135
int freebsd11_freebsd32_lstat(struct thread *, struct freebsd11_freebsd32_lstat_args *);
sys/compat/freebsd32/freebsd32_proto.h
1136
int freebsd11_freebsd32_getdirentries(struct thread *, struct freebsd11_freebsd32_getdirentries_args *);
sys/compat/freebsd32/freebsd32_proto.h
1137
int freebsd11_freebsd32_nstat(struct thread *, struct freebsd11_freebsd32_nstat_args *);
sys/compat/freebsd32/freebsd32_proto.h
1138
int freebsd11_freebsd32_nfstat(struct thread *, struct freebsd11_freebsd32_nfstat_args *);
sys/compat/freebsd32/freebsd32_proto.h
1139
int freebsd11_freebsd32_nlstat(struct thread *, struct freebsd11_freebsd32_nlstat_args *);
sys/compat/freebsd32/freebsd32_proto.h
1140
int freebsd11_freebsd32_fhstat(struct thread *, struct freebsd11_freebsd32_fhstat_args *);
sys/compat/freebsd32/freebsd32_proto.h
1141
int freebsd11_freebsd32_kevent(struct thread *, struct freebsd11_freebsd32_kevent_args *);
sys/compat/freebsd32/freebsd32_proto.h
1142
int freebsd11_freebsd32_getfsstat(struct thread *, struct freebsd11_freebsd32_getfsstat_args *);
sys/compat/freebsd32/freebsd32_proto.h
1143
int freebsd11_freebsd32_fstatat(struct thread *, struct freebsd11_freebsd32_fstatat_args *);
sys/compat/freebsd32/freebsd32_proto.h
23
struct thread;
sys/compat/freebsd32/freebsd32_proto.h
709
int freebsd32_wait4(struct thread *, struct freebsd32_wait4_args *);
sys/compat/freebsd32/freebsd32_proto.h
710
int freebsd32_ptrace(struct thread *, struct freebsd32_ptrace_args *);
sys/compat/freebsd32/freebsd32_proto.h
711
int freebsd32_recvmsg(struct thread *, struct freebsd32_recvmsg_args *);
sys/compat/freebsd32/freebsd32_proto.h
712
int freebsd32_sendmsg(struct thread *, struct freebsd32_sendmsg_args *);
sys/compat/freebsd32/freebsd32_proto.h
713
int freebsd32_sigaltstack(struct thread *, struct freebsd32_sigaltstack_args *);
sys/compat/freebsd32/freebsd32_proto.h
714
int freebsd32_ioctl(struct thread *, struct freebsd32_ioctl_args *);
sys/compat/freebsd32/freebsd32_proto.h
715
int freebsd32_execve(struct thread *, struct freebsd32_execve_args *);
sys/compat/freebsd32/freebsd32_proto.h
716
int freebsd32_mprotect(struct thread *, struct freebsd32_mprotect_args *);
sys/compat/freebsd32/freebsd32_proto.h
717
int freebsd32_setitimer(struct thread *, struct freebsd32_setitimer_args *);
sys/compat/freebsd32/freebsd32_proto.h
718
int freebsd32_getitimer(struct thread *, struct freebsd32_getitimer_args *);
sys/compat/freebsd32/freebsd32_proto.h
719
int freebsd32_fcntl(struct thread *, struct freebsd32_fcntl_args *);
sys/compat/freebsd32/freebsd32_proto.h
720
int freebsd32_select(struct thread *, struct freebsd32_select_args *);
sys/compat/freebsd32/freebsd32_proto.h
721
int freebsd32_gettimeofday(struct thread *, struct freebsd32_gettimeofday_args *);
sys/compat/freebsd32/freebsd32_proto.h
722
int freebsd32_getrusage(struct thread *, struct freebsd32_getrusage_args *);
sys/compat/freebsd32/freebsd32_proto.h
723
int freebsd32_readv(struct thread *, struct freebsd32_readv_args *);
sys/compat/freebsd32/freebsd32_proto.h
724
int freebsd32_writev(struct thread *, struct freebsd32_writev_args *);
sys/compat/freebsd32/freebsd32_proto.h
725
int freebsd32_settimeofday(struct thread *, struct freebsd32_settimeofday_args *);
sys/compat/freebsd32/freebsd32_proto.h
726
int freebsd32_utimes(struct thread *, struct freebsd32_utimes_args *);
sys/compat/freebsd32/freebsd32_proto.h
727
int freebsd32_adjtime(struct thread *, struct freebsd32_adjtime_args *);
sys/compat/freebsd32/freebsd32_proto.h
728
int freebsd32_sysarch(struct thread *, struct freebsd32_sysarch_args *);
sys/compat/freebsd32/freebsd32_proto.h
729
int freebsd32_semsys(struct thread *, struct freebsd32_semsys_args *);
sys/compat/freebsd32/freebsd32_proto.h
730
int freebsd32_msgsys(struct thread *, struct freebsd32_msgsys_args *);
sys/compat/freebsd32/freebsd32_proto.h
731
int freebsd32_shmsys(struct thread *, struct freebsd32_shmsys_args *);
sys/compat/freebsd32/freebsd32_proto.h
732
int freebsd32_ntp_adjtime(struct thread *, struct freebsd32_ntp_adjtime_args *);
sys/compat/freebsd32/freebsd32_proto.h
733
int freebsd32___sysctl(struct thread *, struct freebsd32___sysctl_args *);
sys/compat/freebsd32/freebsd32_proto.h
734
int freebsd32_futimes(struct thread *, struct freebsd32_futimes_args *);
sys/compat/freebsd32/freebsd32_proto.h
735
int freebsd32_msgsnd(struct thread *, struct freebsd32_msgsnd_args *);
sys/compat/freebsd32/freebsd32_proto.h
736
int freebsd32_msgrcv(struct thread *, struct freebsd32_msgrcv_args *);
sys/compat/freebsd32/freebsd32_proto.h
737
int freebsd32_clock_gettime(struct thread *, struct freebsd32_clock_gettime_args *);
sys/compat/freebsd32/freebsd32_proto.h
738
int freebsd32_clock_settime(struct thread *, struct freebsd32_clock_settime_args *);
sys/compat/freebsd32/freebsd32_proto.h
739
int freebsd32_clock_getres(struct thread *, struct freebsd32_clock_getres_args *);
sys/compat/freebsd32/freebsd32_proto.h
740
int freebsd32_ktimer_create(struct thread *, struct freebsd32_ktimer_create_args *);
sys/compat/freebsd32/freebsd32_proto.h
741
int freebsd32_ktimer_settime(struct thread *, struct freebsd32_ktimer_settime_args *);
sys/compat/freebsd32/freebsd32_proto.h
742
int freebsd32_ktimer_gettime(struct thread *, struct freebsd32_ktimer_gettime_args *);
sys/compat/freebsd32/freebsd32_proto.h
743
int freebsd32_nanosleep(struct thread *, struct freebsd32_nanosleep_args *);
sys/compat/freebsd32/freebsd32_proto.h
744
int freebsd32_ffclock_setestimate(struct thread *, struct freebsd32_ffclock_setestimate_args *);
sys/compat/freebsd32/freebsd32_proto.h
745
int freebsd32_ffclock_getestimate(struct thread *, struct freebsd32_ffclock_getestimate_args *);
sys/compat/freebsd32/freebsd32_proto.h
746
int freebsd32_clock_nanosleep(struct thread *, struct freebsd32_clock_nanosleep_args *);
sys/compat/freebsd32/freebsd32_proto.h
747
int freebsd32_clock_getcpuclockid2(struct thread *, struct freebsd32_clock_getcpuclockid2_args *);
sys/compat/freebsd32/freebsd32_proto.h
748
int freebsd32_aio_read(struct thread *, struct freebsd32_aio_read_args *);
sys/compat/freebsd32/freebsd32_proto.h
749
int freebsd32_aio_write(struct thread *, struct freebsd32_aio_write_args *);
sys/compat/freebsd32/freebsd32_proto.h
750
int freebsd32_lio_listio(struct thread *, struct freebsd32_lio_listio_args *);
sys/compat/freebsd32/freebsd32_proto.h
751
int freebsd32_lutimes(struct thread *, struct freebsd32_lutimes_args *);
sys/compat/freebsd32/freebsd32_proto.h
752
int freebsd32_preadv(struct thread *, struct freebsd32_preadv_args *);
sys/compat/freebsd32/freebsd32_proto.h
753
int freebsd32_pwritev(struct thread *, struct freebsd32_pwritev_args *);
sys/compat/freebsd32/freebsd32_proto.h
754
int freebsd32_modstat(struct thread *, struct freebsd32_modstat_args *);
sys/compat/freebsd32/freebsd32_proto.h
755
int freebsd32_kldstat(struct thread *, struct freebsd32_kldstat_args *);
sys/compat/freebsd32/freebsd32_proto.h
756
int freebsd32_aio_return(struct thread *, struct freebsd32_aio_return_args *);
sys/compat/freebsd32/freebsd32_proto.h
757
int freebsd32_aio_suspend(struct thread *, struct freebsd32_aio_suspend_args *);
sys/compat/freebsd32/freebsd32_proto.h
758
int freebsd32_aio_error(struct thread *, struct freebsd32_aio_error_args *);
sys/compat/freebsd32/freebsd32_proto.h
759
int freebsd32_sched_rr_get_interval(struct thread *, struct freebsd32_sched_rr_get_interval_args *);
sys/compat/freebsd32/freebsd32_proto.h
760
int freebsd32_jail(struct thread *, struct freebsd32_jail_args *);
sys/compat/freebsd32/freebsd32_proto.h
761
int freebsd32_sigtimedwait(struct thread *, struct freebsd32_sigtimedwait_args *);
sys/compat/freebsd32/freebsd32_proto.h
762
int freebsd32_sigwaitinfo(struct thread *, struct freebsd32_sigwaitinfo_args *);
sys/compat/freebsd32/freebsd32_proto.h
763
int freebsd32_aio_waitcomplete(struct thread *, struct freebsd32_aio_waitcomplete_args *);
sys/compat/freebsd32/freebsd32_proto.h
764
int freebsd32_nmount(struct thread *, struct freebsd32_nmount_args *);
sys/compat/freebsd32/freebsd32_proto.h
765
int freebsd32_sendfile(struct thread *, struct freebsd32_sendfile_args *);
sys/compat/freebsd32/freebsd32_proto.h
766
int freebsd32_ksem_init(struct thread *, struct freebsd32_ksem_init_args *);
sys/compat/freebsd32/freebsd32_proto.h
767
int freebsd32_ksem_open(struct thread *, struct freebsd32_ksem_open_args *);
sys/compat/freebsd32/freebsd32_proto.h
768
int freebsd32_sigaction(struct thread *, struct freebsd32_sigaction_args *);
sys/compat/freebsd32/freebsd32_proto.h
769
int freebsd32_sigreturn(struct thread *, struct freebsd32_sigreturn_args *);
sys/compat/freebsd32/freebsd32_proto.h
770
int freebsd32_getcontext(struct thread *, struct freebsd32_getcontext_args *);
sys/compat/freebsd32/freebsd32_proto.h
771
int freebsd32_setcontext(struct thread *, struct freebsd32_setcontext_args *);
sys/compat/freebsd32/freebsd32_proto.h
772
int freebsd32_swapcontext(struct thread *, struct freebsd32_swapcontext_args *);
sys/compat/freebsd32/freebsd32_proto.h
773
int freebsd32_ksem_timedwait(struct thread *, struct freebsd32_ksem_timedwait_args *);
sys/compat/freebsd32/freebsd32_proto.h
774
int freebsd32_thr_suspend(struct thread *, struct freebsd32_thr_suspend_args *);
sys/compat/freebsd32/freebsd32_proto.h
775
int freebsd32__umtx_op(struct thread *, struct freebsd32__umtx_op_args *);
sys/compat/freebsd32/freebsd32_proto.h
776
int freebsd32_thr_new(struct thread *, struct freebsd32_thr_new_args *);
sys/compat/freebsd32/freebsd32_proto.h
777
int freebsd32_sigqueue(struct thread *, struct freebsd32_sigqueue_args *);
sys/compat/freebsd32/freebsd32_proto.h
778
int freebsd32_kmq_open(struct thread *, struct freebsd32_kmq_open_args *);
sys/compat/freebsd32/freebsd32_proto.h
779
int freebsd32_kmq_setattr(struct thread *, struct freebsd32_kmq_setattr_args *);
sys/compat/freebsd32/freebsd32_proto.h
780
int freebsd32_kmq_timedreceive(struct thread *, struct freebsd32_kmq_timedreceive_args *);
sys/compat/freebsd32/freebsd32_proto.h
781
int freebsd32_kmq_timedsend(struct thread *, struct freebsd32_kmq_timedsend_args *);
sys/compat/freebsd32/freebsd32_proto.h
782
int freebsd32_kmq_notify(struct thread *, struct freebsd32_kmq_notify_args *);
sys/compat/freebsd32/freebsd32_proto.h
783
int freebsd32_abort2(struct thread *, struct freebsd32_abort2_args *);
sys/compat/freebsd32/freebsd32_proto.h
784
int freebsd32_aio_fsync(struct thread *, struct freebsd32_aio_fsync_args *);
sys/compat/freebsd32/freebsd32_proto.h
785
int freebsd32_pread(struct thread *, struct freebsd32_pread_args *);
sys/compat/freebsd32/freebsd32_proto.h
786
int freebsd32_pwrite(struct thread *, struct freebsd32_pwrite_args *);
sys/compat/freebsd32/freebsd32_proto.h
787
int freebsd32_mmap(struct thread *, struct freebsd32_mmap_args *);
sys/compat/freebsd32/freebsd32_proto.h
788
int freebsd32_lseek(struct thread *, struct freebsd32_lseek_args *);
sys/compat/freebsd32/freebsd32_proto.h
789
int freebsd32_truncate(struct thread *, struct freebsd32_truncate_args *);
sys/compat/freebsd32/freebsd32_proto.h
790
int freebsd32_ftruncate(struct thread *, struct freebsd32_ftruncate_args *);
sys/compat/freebsd32/freebsd32_proto.h
791
int freebsd32_cpuset_setid(struct thread *, struct freebsd32_cpuset_setid_args *);
sys/compat/freebsd32/freebsd32_proto.h
792
int freebsd32_cpuset_getid(struct thread *, struct freebsd32_cpuset_getid_args *);
sys/compat/freebsd32/freebsd32_proto.h
793
int freebsd32_cpuset_getaffinity(struct thread *, struct freebsd32_cpuset_getaffinity_args *);
sys/compat/freebsd32/freebsd32_proto.h
794
int freebsd32_cpuset_setaffinity(struct thread *, struct freebsd32_cpuset_setaffinity_args *);
sys/compat/freebsd32/freebsd32_proto.h
795
int freebsd32_fexecve(struct thread *, struct freebsd32_fexecve_args *);
sys/compat/freebsd32/freebsd32_proto.h
796
int freebsd32_futimesat(struct thread *, struct freebsd32_futimesat_args *);
sys/compat/freebsd32/freebsd32_proto.h
797
int freebsd32_jail_get(struct thread *, struct freebsd32_jail_get_args *);
sys/compat/freebsd32/freebsd32_proto.h
798
int freebsd32_jail_set(struct thread *, struct freebsd32_jail_set_args *);
sys/compat/freebsd32/freebsd32_proto.h
799
int freebsd32___semctl(struct thread *, struct freebsd32___semctl_args *);
sys/compat/freebsd32/freebsd32_proto.h
800
int freebsd32_msgctl(struct thread *, struct freebsd32_msgctl_args *);
sys/compat/freebsd32/freebsd32_proto.h
801
int freebsd32_shmctl(struct thread *, struct freebsd32_shmctl_args *);
sys/compat/freebsd32/freebsd32_proto.h
802
int freebsd32_pselect(struct thread *, struct freebsd32_pselect_args *);
sys/compat/freebsd32/freebsd32_proto.h
803
int freebsd32_posix_fallocate(struct thread *, struct freebsd32_posix_fallocate_args *);
sys/compat/freebsd32/freebsd32_proto.h
804
int freebsd32_posix_fadvise(struct thread *, struct freebsd32_posix_fadvise_args *);
sys/compat/freebsd32/freebsd32_proto.h
805
int freebsd32_wait6(struct thread *, struct freebsd32_wait6_args *);
sys/compat/freebsd32/freebsd32_proto.h
806
int freebsd32_cap_ioctls_limit(struct thread *, struct freebsd32_cap_ioctls_limit_args *);
sys/compat/freebsd32/freebsd32_proto.h
807
int freebsd32_cap_ioctls_get(struct thread *, struct freebsd32_cap_ioctls_get_args *);
sys/compat/freebsd32/freebsd32_proto.h
808
int freebsd32_aio_mlock(struct thread *, struct freebsd32_aio_mlock_args *);
sys/compat/freebsd32/freebsd32_proto.h
809
int freebsd32_procctl(struct thread *, struct freebsd32_procctl_args *);
sys/compat/freebsd32/freebsd32_proto.h
810
int freebsd32_ppoll(struct thread *, struct freebsd32_ppoll_args *);
sys/compat/freebsd32/freebsd32_proto.h
811
int freebsd32_futimens(struct thread *, struct freebsd32_futimens_args *);
sys/compat/freebsd32/freebsd32_proto.h
812
int freebsd32_utimensat(struct thread *, struct freebsd32_utimensat_args *);
sys/compat/freebsd32/freebsd32_proto.h
813
int freebsd32_fstat(struct thread *, struct freebsd32_fstat_args *);
sys/compat/freebsd32/freebsd32_proto.h
814
int freebsd32_fstatat(struct thread *, struct freebsd32_fstatat_args *);
sys/compat/freebsd32/freebsd32_proto.h
815
int freebsd32_fhstat(struct thread *, struct freebsd32_fhstat_args *);
sys/compat/freebsd32/freebsd32_proto.h
816
int freebsd32_getfsstat(struct thread *, struct freebsd32_getfsstat_args *);
sys/compat/freebsd32/freebsd32_proto.h
817
int freebsd32_mknodat(struct thread *, struct freebsd32_mknodat_args *);
sys/compat/freebsd32/freebsd32_proto.h
818
int freebsd32_kevent(struct thread *, struct freebsd32_kevent_args *);
sys/compat/freebsd32/freebsd32_proto.h
819
int freebsd32_cpuset_getdomain(struct thread *, struct freebsd32_cpuset_getdomain_args *);
sys/compat/freebsd32/freebsd32_proto.h
820
int freebsd32_cpuset_setdomain(struct thread *, struct freebsd32_cpuset_setdomain_args *);
sys/compat/freebsd32/freebsd32_proto.h
821
int freebsd32___sysctlbyname(struct thread *, struct freebsd32___sysctlbyname_args *);
sys/compat/freebsd32/freebsd32_proto.h
822
int freebsd32_aio_writev(struct thread *, struct freebsd32_aio_writev_args *);
sys/compat/freebsd32/freebsd32_proto.h
823
int freebsd32_aio_readv(struct thread *, struct freebsd32_aio_readv_args *);
sys/compat/freebsd32/freebsd32_proto.h
824
int freebsd32_timerfd_gettime(struct thread *, struct freebsd32_timerfd_gettime_args *);
sys/compat/freebsd32/freebsd32_proto.h
825
int freebsd32_timerfd_settime(struct thread *, struct freebsd32_timerfd_settime_args *);
sys/compat/freebsd32/freebsd32_proto.h
826
int freebsd32_setcred(struct thread *, struct freebsd32_setcred_args *);
sys/compat/freebsd32/freebsd32_proto.h
827
int freebsd32_pdwait(struct thread *, struct freebsd32_pdwait_args *);
sys/compat/freebsd32/freebsd32_proto.h
900
int ofreebsd32_lseek(struct thread *, struct ofreebsd32_lseek_args *);
sys/compat/freebsd32/freebsd32_proto.h
901
int ofreebsd32_stat(struct thread *, struct ofreebsd32_stat_args *);
sys/compat/freebsd32/freebsd32_proto.h
902
int ofreebsd32_lstat(struct thread *, struct ofreebsd32_lstat_args *);
sys/compat/freebsd32/freebsd32_proto.h
903
int ofreebsd32_sigaction(struct thread *, struct ofreebsd32_sigaction_args *);
sys/compat/freebsd32/freebsd32_proto.h
904
int ofreebsd32_fstat(struct thread *, struct ofreebsd32_fstat_args *);
sys/compat/freebsd32/freebsd32_proto.h
905
int ofreebsd32_mmap(struct thread *, struct ofreebsd32_mmap_args *);
sys/compat/freebsd32/freebsd32_proto.h
906
int ofreebsd32_sigreturn(struct thread *, struct ofreebsd32_sigreturn_args *);
sys/compat/freebsd32/freebsd32_proto.h
907
int ofreebsd32_sigvec(struct thread *, struct ofreebsd32_sigvec_args *);
sys/compat/freebsd32/freebsd32_proto.h
908
int ofreebsd32_sigstack(struct thread *, struct ofreebsd32_sigstack_args *);
sys/compat/freebsd32/freebsd32_proto.h
909
int ofreebsd32_recvmsg(struct thread *, struct ofreebsd32_recvmsg_args *);
sys/compat/freebsd32/freebsd32_proto.h
910
int ofreebsd32_sendmsg(struct thread *, struct ofreebsd32_sendmsg_args *);
sys/compat/freebsd32/freebsd32_proto.h
911
int ofreebsd32_truncate(struct thread *, struct ofreebsd32_truncate_args *);
sys/compat/freebsd32/freebsd32_proto.h
912
int ofreebsd32_ftruncate(struct thread *, struct ofreebsd32_ftruncate_args *);
sys/compat/freebsd32/freebsd32_proto.h
913
int ofreebsd32_sethostid(struct thread *, struct ofreebsd32_sethostid_args *);
sys/compat/freebsd32/freebsd32_proto.h
914
int ofreebsd32_getdirentries(struct thread *, struct ofreebsd32_getdirentries_args *);
sys/compat/freebsd32/freebsd32_proto.h
956
int freebsd4_freebsd32_getfsstat(struct thread *, struct freebsd4_freebsd32_getfsstat_args *);
sys/compat/freebsd32/freebsd32_proto.h
957
int freebsd4_freebsd32_statfs(struct thread *, struct freebsd4_freebsd32_statfs_args *);
sys/compat/freebsd32/freebsd32_proto.h
958
int freebsd4_freebsd32_fstatfs(struct thread *, struct freebsd4_freebsd32_fstatfs_args *);
sys/compat/freebsd32/freebsd32_proto.h
959
int freebsd4_freebsd32_fhstatfs(struct thread *, struct freebsd4_freebsd32_fhstatfs_args *);
sys/compat/freebsd32/freebsd32_proto.h
960
int freebsd4_freebsd32_sendfile(struct thread *, struct freebsd4_freebsd32_sendfile_args *);
sys/compat/freebsd32/freebsd32_proto.h
961
int freebsd4_freebsd32_sigaction(struct thread *, struct freebsd4_freebsd32_sigaction_args *);
sys/compat/freebsd32/freebsd32_proto.h
962
int freebsd4_freebsd32_sigreturn(struct thread *, struct freebsd4_freebsd32_sigreturn_args *);
sys/compat/ia32/ia32_signal.h
189
void ia32_setregs(struct thread *td, struct image_params *imgp,
sys/compat/ia32/ia32_sysvec.c
187
elf32_dump_thread(struct thread *td, void *dst, size_t *off)
sys/compat/ia32/ia32_util.h
53
int ia32_fetch_syscall_args(struct thread *td);
sys/compat/ia32/ia32_util.h
54
void ia32_set_syscall_retval(struct thread *, int);
sys/compat/linprocfs/linprocfs.c
1065
struct thread *td2;
sys/compat/linprocfs/linprocfs.c
823
linprocfs_osbuild(struct thread *td, struct sbuf *sb)
sys/compat/linprocfs/linprocfs.c
849
linprocfs_osbuilder(struct thread *td, struct sbuf *sb)
sys/compat/linux/linux.c
536
linux_to_bsd_poll_events(struct thread *td, int fd, short lev,
sys/compat/linux/linux_common.h
35
struct thread;
sys/compat/linux/linux_common.h
40
int ifname_linux_to_bsd(struct thread *, const char *, char *);
sys/compat/linux/linux_common.h
53
void linux_to_bsd_poll_events(struct thread *td, int fd,
sys/compat/linux/linux_elf.c
104
__linuxN(prepare_notes)(struct thread *td, struct note_info_list *list,
sys/compat/linux/linux_elf.c
108
struct thread *thr;
sys/compat/linux/linux_elf.c
218
struct thread *td;
sys/compat/linux/linux_elf.c
252
struct thread *td;
sys/compat/linux/linux_elf.c
277
struct thread *td;
sys/compat/linux/linux_elf.c
492
struct thread *td = curthread;
sys/compat/linux/linux_elf.h
43
void __linuxN(prepare_notes)(struct thread *, struct note_info_list *,
sys/compat/linux/linux_emul.c
117
linux_set_default_stacksize(struct thread *td, struct proc *p)
sys/compat/linux/linux_emul.c
137
linux_proc_init(struct thread *td, struct thread *newtd, bool init_thread)
sys/compat/linux/linux_emul.c
193
struct thread *td = curthread;
sys/compat/linux/linux_emul.c
212
linux_common_execve(struct thread *td, struct image_args *eargs)
sys/compat/linux/linux_emul.c
259
struct thread *td;
sys/compat/linux/linux_emul.c
260
struct thread *othertd;
sys/compat/linux/linux_emul.c
317
linux_thread_dtor(struct thread *td)
sys/compat/linux/linux_emul.c
332
linux_schedtail(struct thread *td)
sys/compat/linux/linux_emul.c
62
em_find(struct thread *td)
sys/compat/linux/linux_emul.c
94
linux_set_default_openfiles(struct thread *td, struct proc *p)
sys/compat/linux/linux_emul.h
49
struct linux_emuldata *em_find(struct thread *);
sys/compat/linux/linux_emul.h
51
void linux_proc_init(struct thread *, struct thread *, bool);
sys/compat/linux/linux_emul.h
53
void linux_schedtail(struct thread *);
sys/compat/linux/linux_emul.h
55
void linux_thread_dtor(struct thread *);
sys/compat/linux/linux_emul.h
56
int linux_common_execve(struct thread *, struct image_args *);
sys/compat/linux/linux_event.c
104
epoll_create_common(struct thread *td, int flags)
sys/compat/linux/linux_event.c
112
linux_epoll_create(struct thread *td, struct linux_epoll_create_args *args)
sys/compat/linux/linux_event.c
127
linux_epoll_create1(struct thread *td, struct linux_epoll_create1_args *args)
sys/compat/linux/linux_event.c
143
epoll_to_kevent(struct thread *td, int fd, struct epoll_event *l_event,
sys/compat/linux/linux_event.c
283
linux_epoll_ctl(struct thread *td, struct linux_epoll_ctl_args *args)
sys/compat/linux/linux_event.c
370
linux_epoll_wait_ts(struct thread *td, int epfd, struct epoll_event *events,
sys/compat/linux/linux_event.c
432
linux_epoll_wait_common(struct thread *td, int epfd, struct epoll_event *events,
sys/compat/linux/linux_event.c
456
linux_epoll_wait(struct thread *td, struct linux_epoll_wait_args *args)
sys/compat/linux/linux_event.c
465
linux_epoll_pwait(struct thread *td, struct linux_epoll_pwait_args *args)
sys/compat/linux/linux_event.c
481
linux_epoll_pwait2_64(struct thread *td, struct linux_epoll_pwait2_64_args *args)
sys/compat/linux/linux_event.c
505
linux_epoll_pwait2(struct thread *td, struct linux_epoll_pwait2_args *args)
sys/compat/linux/linux_event.c
530
epoll_register_kevent(struct thread *td, struct file *epfp, int fd, int filter,
sys/compat/linux/linux_event.c
546
epoll_fd_registered(struct thread *td, struct file *epfp, int fd)
sys/compat/linux/linux_event.c
564
epoll_delete_all_events(struct thread *td, struct file *epfp, int fd)
sys/compat/linux/linux_event.c
577
linux_eventfd(struct thread *td, struct linux_eventfd_args *args)
sys/compat/linux/linux_event.c
588
linux_eventfd2(struct thread *td, struct linux_eventfd2_args *args)
sys/compat/linux/linux_event.c
611
linux_timerfd_create(struct thread *td, struct linux_timerfd_create_args *args)
sys/compat/linux/linux_event.c
629
linux_timerfd_gettime(struct thread *td, struct linux_timerfd_gettime_args *args)
sys/compat/linux/linux_event.c
647
linux_timerfd_settime(struct thread *td, struct linux_timerfd_settime_args *args)
sys/compat/linux/linux_event.c
674
linux_timerfd_gettime64(struct thread *td, struct linux_timerfd_gettime64_args *args)
sys/compat/linux/linux_event.c
692
linux_timerfd_settime64(struct thread *td, struct linux_timerfd_settime64_args *args)
sys/compat/linux/linux_event.c
79
static int epoll_to_kevent(struct thread *td, int fd,
sys/compat/linux/linux_event.c
85
static int epoll_register_kevent(struct thread *td, struct file *epfp,
sys/compat/linux/linux_event.c
87
static int epoll_fd_registered(struct thread *td, struct file *epfp,
sys/compat/linux/linux_event.c
89
static int epoll_delete_all_events(struct thread *td, struct file *epfp,
sys/compat/linux/linux_file.c
1003
linux_sync_file_range(struct thread *td, struct linux_sync_file_range_args *uap)
sys/compat/linux/linux_file.c
101
linux_creat(struct thread *td, struct linux_creat_args *args)
sys/compat/linux/linux_file.c
1026
linux_pread(struct thread *td, struct linux_pread_args *uap)
sys/compat/linux/linux_file.c
1052
linux_pwrite(struct thread *td, struct linux_pwrite_args *uap)
sys/compat/linux/linux_file.c
1076
linux_preadv(struct thread *td, struct linux_preadv_args *uap)
sys/compat/linux/linux_file.c
1103
linux_pwritev(struct thread *td, struct linux_pwritev_args *uap)
sys/compat/linux/linux_file.c
1130
linux_mount(struct thread *td, struct linux_mount_args *args)
sys/compat/linux/linux_file.c
1216
linux_oldumount(struct thread *td, struct linux_oldumount_args *args)
sys/compat/linux/linux_file.c
1225
linux_umount(struct thread *td, struct linux_umount_args *args)
sys/compat/linux/linux_file.c
1362
fcntl_common(struct thread *td, struct linux_fcntl_args *args)
sys/compat/linux/linux_file.c
1528
linux_fcntl(struct thread *td, struct linux_fcntl_args *args)
sys/compat/linux/linux_file.c
1536
linux_fcntl64(struct thread *td, struct linux_fcntl64_args *args)
sys/compat/linux/linux_file.c
158
linux_common_open(struct thread *td, int dirfd, const char *path, int l_flags,
sys/compat/linux/linux_file.c
1585
linux_chown(struct thread *td, struct linux_chown_args *args)
sys/compat/linux/linux_file.c
1594
linux_fchownat(struct thread *td, struct linux_fchownat_args *args)
sys/compat/linux/linux_file.c
1616
linux_lchown(struct thread *td, struct linux_lchown_args *args)
sys/compat/linux/linux_file.c
1646
linux_fadvise64(struct thread *td, struct linux_fadvise64_args *args)
sys/compat/linux/linux_file.c
1665
linux_fadvise64_64(struct thread *td, struct linux_fadvise64_64_args *args)
sys/compat/linux/linux_file.c
1687
linux_pipe(struct thread *td, struct linux_pipe_args *args)
sys/compat/linux/linux_file.c
1707
linux_pipe2(struct thread *td, struct linux_pipe2_args *args)
sys/compat/linux/linux_file.c
1734
linux_dup3(struct thread *td, struct linux_dup3_args *args)
sys/compat/linux/linux_file.c
1753
linux_fallocate(struct thread *td, struct linux_fallocate_args *args)
sys/compat/linux/linux_file.c
1776
linux_copy_file_range(struct thread *td, struct linux_copy_file_range_args
sys/compat/linux/linux_file.c
1818
linux_memfd_create(struct thread *td, struct linux_memfd_create_args *args)
sys/compat/linux/linux_file.c
1860
linux_splice(struct thread *td, struct linux_splice_args *args)
sys/compat/linux/linux_file.c
1874
linux_close_range(struct thread *td, struct linux_close_range_args *args)
sys/compat/linux/linux_file.c
1900
linux_enobufs2eagain(struct thread *td, int fd, int error)
sys/compat/linux/linux_file.c
1915
linux_write(struct thread *td, struct linux_write_args *args)
sys/compat/linux/linux_file.c
1927
linux_writev(struct thread *td, struct linux_writev_args *args)
sys/compat/linux/linux_file.c
1962
inotify_init_common(struct thread *td, int flags)
sys/compat/linux/linux_file.c
1972
linux_inotify_init(struct thread *td, struct linux_inotify_init_args *args)
sys/compat/linux/linux_file.c
1979
linux_inotify_init1(struct thread *td, struct linux_inotify_init1_args *args)
sys/compat/linux/linux_file.c
2038
linux_inotify_add_watch(struct thread *td,
sys/compat/linux/linux_file.c
2051
linux_inotify_rm_watch(struct thread *td,
sys/compat/linux/linux_file.c
209
linux_openat(struct thread *td, struct linux_openat_args *args)
sys/compat/linux/linux_file.c
220
linux_open(struct thread *td, struct linux_open_args *args)
sys/compat/linux/linux_file.c
229
linux_name_to_handle_at(struct thread *td,
sys/compat/linux/linux_file.c
296
linux_open_by_handle_at(struct thread *td,
sys/compat/linux/linux_file.c
315
linux_lseek(struct thread *td, struct linux_lseek_args *args)
sys/compat/linux/linux_file.c
323
linux_llseek(struct thread *td, struct linux_llseek_args *args)
sys/compat/linux/linux_file.c
356
linux_getdents_error(struct thread *td, int fd, int err)
sys/compat/linux/linux_file.c
407
linux_getdirentries(struct thread *td, int fd, caddr_t *bufp, int buflen,
sys/compat/linux/linux_file.c
441
linux_getdents(struct thread *td, struct linux_getdents_args *args)
sys/compat/linux/linux_file.c
520
linux_getdents64(struct thread *td, struct linux_getdents64_args *args)
sys/compat/linux/linux_file.c
595
linux_readdir(struct thread *td, struct linux_readdir_args *args)
sys/compat/linux/linux_file.c
63
static int linux_common_open(struct thread *, int, const char *, int, int,
sys/compat/linux/linux_file.c
644
linux_access(struct thread *td, struct linux_access_args *args)
sys/compat/linux/linux_file.c
65
static int linux_do_accessat(struct thread *t, int, const char *, int, int);
sys/compat/linux/linux_file.c
657
linux_do_accessat(struct thread *td, int ldfd, const char *filename,
sys/compat/linux/linux_file.c
66
static int linux_getdents_error(struct thread *, int, int);
sys/compat/linux/linux_file.c
671
linux_faccessat(struct thread *td, struct linux_faccessat_args *args)
sys/compat/linux/linux_file.c
679
linux_faccessat2(struct thread *td, struct linux_faccessat2_args *args)
sys/compat/linux/linux_file.c
703
linux_unlink(struct thread *td, struct linux_unlink_args *args)
sys/compat/linux/linux_file.c
724
linux_unlinkat_impl(struct thread *td, enum uio_seg pathseg, const char *path,
sys/compat/linux/linux_file.c
744
linux_unlinkat(struct thread *td, struct linux_unlinkat_args *args)
sys/compat/linux/linux_file.c
756
linux_chdir(struct thread *td, struct linux_chdir_args *args)
sys/compat/linux/linux_file.c
764
linux_chmod(struct thread *td, struct linux_chmod_args *args)
sys/compat/linux/linux_file.c
773
linux_fchmodat(struct thread *td, struct linux_fchmodat_args *args)
sys/compat/linux/linux_file.c
784
linux_mkdir(struct thread *td, struct linux_mkdir_args *args)
sys/compat/linux/linux_file.c
792
linux_mkdirat(struct thread *td, struct linux_mkdirat_args *args)
sys/compat/linux/linux_file.c
802
linux_rmdir(struct thread *td, struct linux_rmdir_args *args)
sys/compat/linux/linux_file.c
810
linux_rename(struct thread *td, struct linux_rename_args *args)
sys/compat/linux/linux_file.c
819
linux_renameat(struct thread *td, struct linux_renameat_args *args)
sys/compat/linux/linux_file.c
833
linux_renameat2(struct thread *td, struct linux_renameat2_args *args)
sys/compat/linux/linux_file.c
877
linux_symlink(struct thread *td, struct linux_symlink_args *args)
sys/compat/linux/linux_file.c
886
linux_symlinkat(struct thread *td, struct linux_symlinkat_args *args)
sys/compat/linux/linux_file.c
897
linux_readlink(struct thread *td, struct linux_readlink_args *args)
sys/compat/linux/linux_file.c
909
linux_readlinkat(struct thread *td, struct linux_readlinkat_args *args)
sys/compat/linux/linux_file.c
922
linux_truncate(struct thread *td, struct linux_truncate_args *args)
sys/compat/linux/linux_file.c
930
linux_truncate64(struct thread *td, struct linux_truncate64_args *args)
sys/compat/linux/linux_file.c
945
linux_ftruncate(struct thread *td, struct linux_ftruncate_args *args)
sys/compat/linux/linux_file.c
953
linux_ftruncate64(struct thread *td, struct linux_ftruncate64_args *args)
sys/compat/linux/linux_file.c
969
linux_link(struct thread *td, struct linux_link_args *args)
sys/compat/linux/linux_file.c
978
linux_linkat(struct thread *td, struct linux_linkat_args *args)
sys/compat/linux/linux_file.c
996
linux_fdatasync(struct thread *td, struct linux_fdatasync_args *uap)
sys/compat/linux/linux_file.h
232
int linux_enobufs2eagain(struct thread *, int, int);
sys/compat/linux/linux_fork.c
100
struct thread *td2;
sys/compat/linux/linux_fork.c
126
linux_clone_proc(struct thread *td, struct l_clone_args *args)
sys/compat/linux/linux_fork.c
131
struct thread *td2;
sys/compat/linux/linux_fork.c
237
linux_clone_thread(struct thread *td, struct l_clone_args *args)
sys/compat/linux/linux_fork.c
240
struct thread *newtd;
sys/compat/linux/linux_fork.c
276
__rangeof(struct thread, td_startzero, td_endzero));
sys/compat/linux/linux_fork.c
278
__rangeof(struct thread, td_startcopy, td_endcopy));
sys/compat/linux/linux_fork.c
357
linux_clone(struct thread *td, struct linux_clone_args *args)
sys/compat/linux/linux_fork.c
428
linux_clone3(struct thread *td, struct linux_clone3_args *args)
sys/compat/linux/linux_fork.c
473
linux_exit(struct thread *td, struct linux_exit_args *args)
sys/compat/linux/linux_fork.c
494
linux_set_tid_address(struct thread *td, struct linux_set_tid_address_args *args)
sys/compat/linux/linux_fork.c
512
linux_thread_detach(struct thread *td)
sys/compat/linux/linux_fork.c
65
linux_fork(struct thread *td, struct linux_fork_args *args)
sys/compat/linux/linux_fork.c
70
struct thread *td2;
sys/compat/linux/linux_fork.c
95
linux_vfork(struct thread *td, struct linux_vfork_args *args)
sys/compat/linux/linux_fork.h
100
void linux_thread_detach(struct thread *);
sys/compat/linux/linux_fork.h
98
int linux_set_upcall(struct thread *, register_t);
sys/compat/linux/linux_fork.h
99
int linux_set_cloned_tls(struct thread *, void *);
sys/compat/linux/linux_futex.c
1017
release_futexes(struct thread *td, struct linux_emuldata *em)
sys/compat/linux/linux_futex.c
103
futex_wake(struct thread *td, uint32_t *uaddr, int val, bool shared)
sys/compat/linux/linux_futex.c
118
futex_wake_pi(struct thread *td, uint32_t *uaddr, bool shared)
sys/compat/linux/linux_futex.c
131
futex_atomic_op(struct thread *td, int encoded_op, uint32_t *uaddr,
sys/compat/linux/linux_futex.c
194
linux_futex(struct thread *td, struct linux_futex_args *args)
sys/compat/linux/linux_futex.c
357
linux_futex_lock_pi(struct thread *td, bool try, struct linux_futex_args *args)
sys/compat/linux/linux_futex.c
362
struct thread *td1;
sys/compat/linux/linux_futex.c
570
linux_futex_unlock_pi(struct thread *td, bool rb, struct linux_futex_args *args)
sys/compat/linux/linux_futex.c
60
static int futex_atomic_op(struct thread *, int, uint32_t *, int *);
sys/compat/linux/linux_futex.c
61
static int handle_futex_death(struct thread *td, struct linux_emuldata *,
sys/compat/linux/linux_futex.c
629
linux_futex_wakeop(struct thread *td, struct linux_futex_args *args)
sys/compat/linux/linux_futex.c
672
linux_futex_requeue(struct thread *td, struct linux_futex_args *args)
sys/compat/linux/linux_futex.c
723
linux_futex_wake(struct thread *td, struct linux_futex_args *args)
sys/compat/linux/linux_futex.c
742
linux_futex_wait(struct thread *td, struct linux_futex_args *args)
sys/compat/linux/linux_futex.c
809
linux_sys_futex(struct thread *td, struct linux_sys_futex_args *args)
sys/compat/linux/linux_futex.c
82
static int linux_futex(struct thread *, struct linux_futex_args *);
sys/compat/linux/linux_futex.c
83
static int linux_futex_wait(struct thread *, struct linux_futex_args *);
sys/compat/linux/linux_futex.c
84
static int linux_futex_wake(struct thread *, struct linux_futex_args *);
sys/compat/linux/linux_futex.c
842
linux_sys_futex_time64(struct thread *td,
sys/compat/linux/linux_futex.c
85
static int linux_futex_requeue(struct thread *, struct linux_futex_args *);
sys/compat/linux/linux_futex.c
86
static int linux_futex_wakeop(struct thread *, struct linux_futex_args *);
sys/compat/linux/linux_futex.c
87
static int linux_futex_lock_pi(struct thread *, bool, struct linux_futex_args *);
sys/compat/linux/linux_futex.c
876
linux_set_robust_list(struct thread *td, struct linux_set_robust_list_args *args)
sys/compat/linux/linux_futex.c
88
static int linux_futex_unlock_pi(struct thread *, bool,
sys/compat/linux/linux_futex.c
890
linux_get_robust_list(struct thread *td, struct linux_get_robust_list_args *args)
sys/compat/linux/linux_futex.c
895
struct thread *td2;
sys/compat/linux/linux_futex.c
90
static int futex_wake_pi(struct thread *, uint32_t *, bool);
sys/compat/linux/linux_futex.c
934
handle_futex_death(struct thread *td, struct linux_emuldata *em, uint32_t *uaddr,
sys/compat/linux/linux_futex.h
96
int futex_wake(struct thread *td, uint32_t *uaddr, int val, bool shared);
sys/compat/linux/linux_futex.h
97
void release_futexes(struct thread *,
sys/compat/linux/linux_getcwd.c
56
linux_getcwd(struct thread *td, struct linux_getcwd_args *uap)
sys/compat/linux/linux_if.c
253
ifname_linux_to_bsd(struct thread *td, const char *lxname, char *bsdname)
sys/compat/linux/linux_ioctl.c
124
static int linux_ioctl_special(struct thread *, struct linux_ioctl_args *);
sys/compat/linux/linux_ioctl.c
1508
linux_ioctl_cdrom(struct thread *td, struct linux_ioctl_args *args)
sys/compat/linux/linux_ioctl.c
1761
linux_ioctl_vfat(struct thread *td, struct linux_ioctl_args *args)
sys/compat/linux/linux_ioctl.c
1781
linux_ioctl_sound(struct thread *td, struct linux_ioctl_args *args)
sys/compat/linux/linux_ioctl.c
179
linux_ioctl_hdio(struct thread *td, struct linux_ioctl_args *args)
sys/compat/linux/linux_ioctl.c
2057
linux_ioctl_console(struct thread *td, struct linux_ioctl_args *args)
sys/compat/linux/linux_ioctl.c
2187
linux_ioctl_ifname(struct thread *td, struct l_ifreq *uifr)
sys/compat/linux/linux_ioctl.c
2267
linux_ifconf(struct thread *td, struct ifconf *uifc)
sys/compat/linux/linux_ioctl.c
2327
linux_ioctl_socket_ifreq(struct thread *td, int fd, u_int cmd,
sys/compat/linux/linux_ioctl.c
2464
linux_ioctl_socket(struct thread *td, struct linux_ioctl_args *args)
sys/compat/linux/linux_ioctl.c
2557
linux_ioctl_private(struct thread *td, struct linux_ioctl_args *args)
sys/compat/linux/linux_ioctl.c
257
linux_ioctl_disk(struct thread *td, struct linux_ioctl_args *args)
sys/compat/linux/linux_ioctl.c
2576
linux_ioctl_drm(struct thread *td, struct linux_ioctl_args *args)
sys/compat/linux/linux_ioctl.c
2584
linux_ioctl_sg_io(struct thread *td, struct linux_ioctl_args *args)
sys/compat/linux/linux_ioctl.c
2658
linux_ioctl_sg(struct thread *td, struct linux_ioctl_args *args)
sys/compat/linux/linux_ioctl.c
2899
linux_ioctl_v4l(struct thread *td, struct linux_ioctl_args *args)
sys/compat/linux/linux_ioctl.c
3067
linux_ioctl_special(struct thread *td, struct linux_ioctl_args *args)
sys/compat/linux/linux_ioctl.c
3203
linux_ioctl_v4l2(struct thread *td, struct linux_ioctl_args *args)
sys/compat/linux/linux_ioctl.c
3415
linux_ioctl_fbsd_usb(struct thread *td, struct linux_ioctl_args *args)
sys/compat/linux/linux_ioctl.c
3547
linux_ioctl_evdev(struct thread *td, struct linux_ioctl_args *args)
sys/compat/linux/linux_ioctl.c
3596
linux_ioctl_kcov(struct thread *td, struct linux_ioctl_args *args)
sys/compat/linux/linux_ioctl.c
3629
linux_ioctl_nvme(struct thread *td, struct linux_ioctl_args *args)
sys/compat/linux/linux_ioctl.c
3658
linux_ioctl_i2c(struct thread *td, struct linux_ioctl_args *args)
sys/compat/linux/linux_ioctl.c
3758
linux_ioctl_hidraw(struct thread *td, struct linux_ioctl_args *args)
sys/compat/linux/linux_ioctl.c
3811
linux_ioctl_fallback(struct thread *td, struct linux_ioctl_args *args)
sys/compat/linux/linux_ioctl.c
3874
linux_ioctl(struct thread *td, struct linux_ioctl_args *args)
sys/compat/linux/linux_ioctl.c
709
linux_ioctl_termio(struct thread *td, struct linux_ioctl_args *args)
sys/compat/linux/linux_ioctl.h
856
struct thread;
sys/compat/linux/linux_ioctl.h
858
typedef int linux_ioctl_function_t(struct thread *, struct linux_ioctl_args *);
sys/compat/linux/linux_ioctl.h
868
int (*func)(struct thread *, struct linux_ioctl_args *);
sys/compat/linux/linux_ipc.c
485
linux_semtimedop_time64(struct thread *td, struct linux_semtimedop_time64_args *args)
sys/compat/linux/linux_ipc.c
504
linux_semtimedop(struct thread *td, struct linux_semtimedop_args *args)
sys/compat/linux/linux_ipc.c
522
linux_semget(struct thread *td, struct linux_semget_args *args)
sys/compat/linux/linux_ipc.c
536
linux_semctl(struct thread *td, struct linux_semctl_args *args)
sys/compat/linux/linux_ipc.c
645
linux_msgsnd(struct thread *td, struct linux_msgsnd_args *args)
sys/compat/linux/linux_ipc.c
664
linux_msgrcv(struct thread *td, struct linux_msgrcv_args *args)
sys/compat/linux/linux_ipc.c
683
linux_msgget(struct thread *td, struct linux_msgget_args *args)
sys/compat/linux/linux_ipc.c
694
linux_msgctl(struct thread *td, struct linux_msgctl_args *args)
sys/compat/linux/linux_ipc.c
773
linux_shmat(struct thread *td, struct linux_shmat_args *args)
sys/compat/linux/linux_ipc.c
785
linux_shmdt(struct thread *td, struct linux_shmdt_args *args)
sys/compat/linux/linux_ipc.c
795
linux_shmget(struct thread *td, struct linux_shmget_args *args)
sys/compat/linux/linux_ipc.c
807
linux_shmctl(struct thread *td, struct linux_shmctl_args *args)
sys/compat/linux/linux_ipc.h
93
int linux_semtimedop(struct thread *, struct linux_semtimedop_args *);
sys/compat/linux/linux_mib.c
103
static int linux_set_osname(struct thread *td, char *osname);
sys/compat/linux/linux_mib.c
104
static int linux_set_osrelease(struct thread *td, char *osrelease);
sys/compat/linux/linux_mib.c
105
static int linux_set_oss_version(struct thread *td, int oss_version);
sys/compat/linux/linux_mib.c
491
linux_get_osname(struct thread *td, char *dst)
sys/compat/linux/linux_mib.c
502
linux_set_osname(struct thread *td, char *osname)
sys/compat/linux/linux_mib.c
515
linux_get_osrelease(struct thread *td, char *dst)
sys/compat/linux/linux_mib.c
526
linux_kernver(struct thread *td)
sys/compat/linux/linux_mib.c
540
linux_set_osrelease(struct thread *td, char *osrelease)
sys/compat/linux/linux_mib.c
556
linux_get_oss_version(struct thread *td)
sys/compat/linux/linux_mib.c
570
linux_set_oss_version(struct thread *td, int oss_version)
sys/compat/linux/linux_mib.c
97
linux_setid_allowed_query(struct thread *td __unused,
sys/compat/linux/linux_mib.h
39
void linux_get_osname(struct thread *td, char *dst);
sys/compat/linux/linux_mib.h
41
void linux_get_osrelease(struct thread *td, char *dst);
sys/compat/linux/linux_mib.h
43
int linux_get_oss_version(struct thread *td);
sys/compat/linux/linux_mib.h
45
int linux_kernver(struct thread *td);
sys/compat/linux/linux_mib.h
66
int linux_setid_allowed_query(struct thread *td, struct image_params *imgp);
sys/compat/linux/linux_misc.c
1009
linux_getitimer(struct thread *td, struct linux_getitimer_args *uap)
sys/compat/linux/linux_misc.c
1024
linux_nice(struct thread *td, struct linux_nice_args *args)
sys/compat/linux/linux_misc.c
1032
linux_setgroups(struct thread *td, struct linux_setgroups_args *args)
sys/compat/linux/linux_misc.c
1075
linux_getgroups(struct thread *td, struct linux_getgroups_args *args)
sys/compat/linux/linux_misc.c
1107
linux_get_dummy_limit(struct thread *td, l_uint resource, struct rlimit *rlim)
sys/compat/linux/linux_misc.c
1149
linux_setrlimit(struct thread *td, struct linux_setrlimit_args *args)
sys/compat/linux/linux_misc.c
1174
linux_old_getrlimit(struct thread *td, struct linux_old_getrlimit_args *args)
sys/compat/linux/linux_misc.c
1215
linux_getrlimit(struct thread *td, struct linux_getrlimit_args *args)
sys/compat/linux/linux_misc.c
1242
linux_sched_setscheduler(struct thread *td,
sys/compat/linux/linux_misc.c
1246
struct thread *tdt;
sys/compat/linux/linux_misc.c
125
static int linux_common_utimensat(struct thread *, int,
sys/compat/linux/linux_misc.c
127
static int linux_common_pselect6(struct thread *, l_int,
sys/compat/linux/linux_misc.c
130
static int linux_common_ppoll(struct thread *, struct pollfd *,
sys/compat/linux/linux_misc.c
1304
linux_sched_getscheduler(struct thread *td,
sys/compat/linux/linux_misc.c
1307
struct thread *tdt;
sys/compat/linux/linux_misc.c
133
static int linux_pollin(struct thread *, struct pollfd *,
sys/compat/linux/linux_misc.c
1332
linux_sched_get_priority_max(struct thread *td,
sys/compat/linux/linux_misc.c
135
static int linux_pollout(struct thread *, struct pollfd *,
sys/compat/linux/linux_misc.c
1368
linux_sched_get_priority_min(struct thread *td,
sys/compat/linux/linux_misc.c
139
linux_sysinfo(struct thread *td, struct linux_sysinfo_args *args)
sys/compat/linux/linux_misc.c
1415
linux_reboot(struct thread *td, struct linux_reboot_args *args)
sys/compat/linux/linux_misc.c
1452
linux_getpid(struct thread *td, struct linux_getpid_args *args)
sys/compat/linux/linux_misc.c
1461
linux_gettid(struct thread *td, struct linux_gettid_args *args)
sys/compat/linux/linux_misc.c
1474
linux_getppid(struct thread *td, struct linux_getppid_args *args)
sys/compat/linux/linux_misc.c
1482
linux_getgid(struct thread *td, struct linux_getgid_args *args)
sys/compat/linux/linux_misc.c
1490
linux_getuid(struct thread *td, struct linux_getuid_args *args)
sys/compat/linux/linux_misc.c
1498
linux_getsid(struct thread *td, struct linux_getsid_args *args)
sys/compat/linux/linux_misc.c
1505
linux_getpriority(struct thread *td, struct linux_getpriority_args *args)
sys/compat/linux/linux_misc.c
1515
linux_sethostname(struct thread *td, struct linux_sethostname_args *args)
sys/compat/linux/linux_misc.c
1526
linux_setdomainname(struct thread *td, struct linux_setdomainname_args *args)
sys/compat/linux/linux_misc.c
1537
linux_exit_group(struct thread *td, struct linux_exit_group_args *args)
sys/compat/linux/linux_misc.c
1568
linux_capget(struct thread *td, struct linux_capget_args *uap)
sys/compat/linux/linux_misc.c
1615
linux_capset(struct thread *td, struct linux_capset_args *uap)
sys/compat/linux/linux_misc.c
1668
linux_prctl(struct thread *td, struct linux_prctl_args *args)
sys/compat/linux/linux_misc.c
1855
linux_sched_setparam(struct thread *td,
sys/compat/linux/linux_misc.c
1859
struct thread *tdt;
sys/compat/linux/linux_misc.c
188
linux_alarm(struct thread *td, struct linux_alarm_args *args)
sys/compat/linux/linux_misc.c
1909
linux_sched_getparam(struct thread *td,
sys/compat/linux/linux_misc.c
1913
struct thread *tdt;
sys/compat/linux/linux_misc.c
1960
linux_sched_getaffinity(struct thread *td,
sys/compat/linux/linux_misc.c
1963
struct thread *tdt;
sys/compat/linux/linux_misc.c
1993
linux_sched_setaffinity(struct thread *td,
sys/compat/linux/linux_misc.c
1996
struct thread *tdt;
sys/compat/linux/linux_misc.c
2033
linux_prlimit64(struct thread *td, struct linux_prlimit64_args *args)
sys/compat/linux/linux_misc.c
2122
linux_pselect6(struct thread *td, struct linux_pselect6_args *args)
sys/compat/linux/linux_misc.c
2144
linux_common_pselect6(struct thread *td, l_int nfds, l_fd_set *readfds,
sys/compat/linux/linux_misc.c
220
linux_brk(struct thread *td, struct linux_brk_args *args)
sys/compat/linux/linux_misc.c
2202
linux_pselect6_time64(struct thread *td,
sys/compat/linux/linux_misc.c
2226
linux_ppoll(struct thread *td, struct linux_ppoll_args *args)
sys/compat/linux/linux_misc.c
2247
linux_common_ppoll(struct thread *td, struct pollfd *fds, uint32_t nfds,
sys/compat/linux/linux_misc.c
2299
linux_ppoll_time64(struct thread *td, struct linux_ppoll_time64_args *args)
sys/compat/linux/linux_misc.c
2320
linux_pollin(struct thread *td, struct pollfd *fds, struct pollfd *ufds, u_int nfd)
sys/compat/linux/linux_misc.c
2339
linux_pollout(struct thread *td, struct pollfd *fds, struct pollfd *ufds, u_int nfd)
sys/compat/linux/linux_misc.c
2362
linux_sched_rr_get_interval_common(struct thread *td, pid_t pid,
sys/compat/linux/linux_misc.c
2365
struct thread *tdt;
sys/compat/linux/linux_misc.c
237
linux_select(struct thread *td, struct linux_select_args *args)
sys/compat/linux/linux_misc.c
2385
linux_sched_rr_get_interval(struct thread *td,
sys/compat/linux/linux_misc.c
2399
linux_sched_rr_get_interval_time64(struct thread *td,
sys/compat/linux/linux_misc.c
2417
struct thread *
sys/compat/linux/linux_misc.c
2418
linux_tdfind(struct thread *td, lwpid_t tid, pid_t pid)
sys/compat/linux/linux_misc.c
2421
struct thread *tdt;
sys/compat/linux/linux_misc.c
2476
linux_getrandom(struct thread *td, struct linux_getrandom_args *args)
sys/compat/linux/linux_misc.c
2504
linux_mincore(struct thread *td, struct linux_mincore_args *args)
sys/compat/linux/linux_misc.c
2516
linux_syslog(struct thread *td, struct linux_syslog_args *args)
sys/compat/linux/linux_misc.c
2577
linux_getcpu(struct thread *td, struct linux_getcpu_args *args)
sys/compat/linux/linux_misc.c
2594
linux_poll(struct thread *td, struct linux_poll_args *args)
sys/compat/linux/linux_misc.c
2613
linux_seccomp(struct thread *td, struct linux_seccomp_args *args)
sys/compat/linux/linux_misc.c
2712
linux_execve(struct thread *td, struct linux_execve_args *args)
sys/compat/linux/linux_misc.c
2728
linux_up_rtprio_if(struct thread *td1, struct rtprio *rtp)
sys/compat/linux/linux_misc.c
2794
linux_ioprio_get(struct thread *td, struct linux_ioprio_get_args *args)
sys/compat/linux/linux_misc.c
2796
struct thread *td1;
sys/compat/linux/linux_misc.c
2895
linux_ioprio_set(struct thread *td, struct linux_ioprio_set_args *args)
sys/compat/linux/linux_misc.c
2897
struct thread *td1;
sys/compat/linux/linux_misc.c
3001
linux_mq_open(struct thread *td, struct linux_mq_open_args *args)
sys/compat/linux/linux_misc.c
3022
linux_mq_unlink(struct thread *td, struct linux_mq_unlink_args *args)
sys/compat/linux/linux_misc.c
3032
linux_mq_timedsend(struct thread *td, struct linux_mq_timedsend_args *args)
sys/compat/linux/linux_misc.c
304
linux_mremap(struct thread *td, struct linux_mremap_args *args)
sys/compat/linux/linux_misc.c
3051
linux_mq_timedreceive(struct thread *td, struct linux_mq_timedreceive_args *args)
sys/compat/linux/linux_misc.c
3070
linux_mq_notify(struct thread *td, struct linux_mq_notify_args *args)
sys/compat/linux/linux_misc.c
3092
linux_mq_getsetattr(struct thread *td, struct linux_mq_getsetattr_args *args)
sys/compat/linux/linux_misc.c
3116
linux_kcmp(struct thread *td, struct linux_kcmp_args *args)
sys/compat/linux/linux_misc.c
3142
linux_membarrier(struct thread *td, struct linux_membarrier_args *args)
sys/compat/linux/linux_misc.c
3217
linux_setfsuid(struct thread *td, struct linux_setfsuid_args *args)
sys/compat/linux/linux_misc.c
3224
linux_setfsgid(struct thread *td, struct linux_setfsgid_args *args)
sys/compat/linux/linux_misc.c
347
linux_msync(struct thread *td, struct linux_msync_args *args)
sys/compat/linux/linux_misc.c
355
linux_mprotect(struct thread *td, struct linux_mprotect_args *uap)
sys/compat/linux/linux_misc.c
363
linux_madvise(struct thread *td, struct linux_madvise_args *uap)
sys/compat/linux/linux_misc.c
371
linux_mmap2(struct thread *td, struct linux_mmap2_args *uap)
sys/compat/linux/linux_misc.c
389
linux_time(struct thread *td, struct linux_time_args *args)
sys/compat/linux/linux_misc.c
425
linux_times(struct thread *td, struct linux_times_args *args)
sys/compat/linux/linux_misc.c
457
linux_newuname(struct thread *td, struct linux_newuname_args *args)
sys/compat/linux/linux_misc.c
507
linux_utime(struct thread *td, struct linux_utime_args *args)
sys/compat/linux/linux_misc.c
531
linux_utimes(struct thread *td, struct linux_utimes_args *args)
sys/compat/linux/linux_misc.c
578
linux_common_utimensat(struct thread *td, int ldfd, const char *pathname,
sys/compat/linux/linux_misc.c
613
linux_utimensat(struct thread *td, struct linux_utimensat_args *args)
sys/compat/linux/linux_misc.c
668
linux_utimensat_time64(struct thread *td, struct linux_utimensat_time64_args *args)
sys/compat/linux/linux_misc.c
696
linux_futimesat(struct thread *td, struct linux_futimesat_args *args)
sys/compat/linux/linux_misc.c
720
linux_common_wait(struct thread *td, idtype_t idtype, int id, int *statusp,
sys/compat/linux/linux_misc.c
764
linux_waitpid(struct thread *td, struct linux_waitpid_args *args)
sys/compat/linux/linux_misc.c
778
linux_wait4(struct thread *td, struct linux_wait4_args *args)
sys/compat/linux/linux_misc.c
822
linux_waitid(struct thread *td, struct linux_waitid_args *args)
sys/compat/linux/linux_misc.c
872
linux_mknod(struct thread *td, struct linux_mknod_args *args)
sys/compat/linux/linux_misc.c
912
linux_mknodat(struct thread *td, struct linux_mknodat_args *args)
sys/compat/linux/linux_misc.c
956
linux_personality(struct thread *td, struct linux_personality_args *args)
sys/compat/linux/linux_misc.c
985
linux_setitimer(struct thread *td, struct linux_setitimer_args *uap)
sys/compat/linux/linux_misc.h
172
int linux_ptrace_status(struct thread *td, int pid, int status);
sys/compat/linux/linux_misc.h
175
struct thread *linux_tdfind(struct thread *, lwpid_t, pid_t);
sys/compat/linux/linux_mmap.c
230
linux_mprotect_common(struct thread *td, uintptr_t addr, size_t len, int prot)
sys/compat/linux/linux_mmap.c
255
linux_madvise_dontneed(struct thread *td, vm_offset_t start, vm_offset_t end)
sys/compat/linux/linux_mmap.c
345
linux_madvise_common(struct thread *td, uintptr_t addr, size_t len, int behav)
sys/compat/linux/linux_mmap.c
418
linux_fixup_prot(struct thread *td, int *prot)
sys/compat/linux/linux_mmap.c
59
static void linux_fixup_prot(struct thread *td, int *prot);
sys/compat/linux/linux_mmap.c
78
linux_mmap_common(struct thread *td, uintptr_t addr, size_t len, int prot,
sys/compat/linux/linux_mmap.h
66
int linux_mmap_common(struct thread *, uintptr_t, size_t, int, int,
sys/compat/linux/linux_mmap.h
68
int linux_mprotect_common(struct thread *, uintptr_t, size_t, int);
sys/compat/linux/linux_mmap.h
69
int linux_madvise_common(struct thread *, uintptr_t, size_t, int);
sys/compat/linux/linux_ptrace.c
122
linux_ptrace_status(struct thread *td, pid_t pid, int status)
sys/compat/linux/linux_ptrace.c
160
linux_ptrace_peek(struct thread *td, pid_t pid, void *addr, void *data)
sys/compat/linux/linux_ptrace.c
175
linux_ptrace_setoptions(struct thread *td, pid_t pid, l_ulong data)
sys/compat/linux/linux_ptrace.c
229
linux_ptrace_geteventmsg(struct thread *td, pid_t pid, l_ulong data)
sys/compat/linux/linux_ptrace.c
237
linux_ptrace_getsiginfo(struct thread *td, pid_t pid, l_ulong data)
sys/compat/linux/linux_ptrace.c
263
linux_ptrace_getregs(struct thread *td, pid_t pid, void *data)
sys/compat/linux/linux_ptrace.c
283
linux_ptrace_setregs(struct thread *td, pid_t pid, void *data)
sys/compat/linux/linux_ptrace.c
298
linux_ptrace_getregset_prstatus(struct thread *td, pid_t pid, l_ulong data)
sys/compat/linux/linux_ptrace.c
340
linux_ptrace_getregset_prfpreg(struct thread *td, pid_t pid, l_ulong data)
sys/compat/linux/linux_ptrace.c
376
linux_ptrace_getregset_xstate(struct thread *td, pid_t pid, l_ulong data)
sys/compat/linux/linux_ptrace.c
420
linux_ptrace_getregset(struct thread *td, pid_t pid, l_ulong addr, l_ulong data)
sys/compat/linux/linux_ptrace.c
440
linux_ptrace_seize(struct thread *td, pid_t pid, l_ulong addr, l_ulong data)
sys/compat/linux/linux_ptrace.c
448
linux_ptrace_get_syscall_info(struct thread *td, pid_t pid,
sys/compat/linux/linux_ptrace.c
523
linux_ptrace(struct thread *td, struct linux_ptrace_args *uap)
sys/compat/linux/linux_rseq.c
80
linux_rseq(struct thread *td, struct linux_rseq_args *args)
sys/compat/linux/linux_signal.c
173
linux_do_sigaction(struct thread *td, int linux_sig, l_sigaction_t *linux_nsa,
sys/compat/linux/linux_signal.c
214
linux_sigaltstack(struct thread *td, struct linux_sigaltstack_args *uap)
sys/compat/linux/linux_signal.c
246
linux_signal(struct thread *td, struct linux_signal_args *args)
sys/compat/linux/linux_signal.c
263
linux_rt_sigaction(struct thread *td, struct linux_rt_sigaction_args *args)
sys/compat/linux/linux_signal.c
288
linux_do_sigprocmask(struct thread *td, int how, sigset_t *new,
sys/compat/linux/linux_signal.c
318
linux_sigprocmask(struct thread *td, struct linux_sigprocmask_args *args)
sys/compat/linux/linux_signal.c
356
linux_rt_sigprocmask(struct thread *td, struct linux_rt_sigprocmask_args *args)
sys/compat/linux/linux_signal.c
383
linux_sgetmask(struct thread *td, struct linux_sgetmask_args *args)
sys/compat/linux/linux_signal.c
400
linux_ssetmask(struct thread *td, struct linux_ssetmask_args *args)
sys/compat/linux/linux_signal.c
424
linux_sigpending(struct thread *td, struct linux_sigpending_args *args)
sys/compat/linux/linux_signal.c
450
linux_rt_sigpending(struct thread *td, struct linux_rt_sigpending_args *args)
sys/compat/linux/linux_signal.c
474
linux_rt_sigtimedwait(struct thread *td,
sys/compat/linux/linux_signal.c
493
linux_common_rt_sigtimedwait(struct thread *td, l_sigset_t *mask,
sys/compat/linux/linux_signal.c
525
linux_rt_sigtimedwait_time64(struct thread *td,
sys/compat/linux/linux_signal.c
545
linux_kill(struct thread *td, struct linux_kill_args *args)
sys/compat/linux/linux_signal.c
567
linux_tgkill(struct thread *td, struct linux_tgkill_args *args)
sys/compat/linux/linux_signal.c
592
linux_tkill(struct thread *td, struct linux_tkill_args *args)
sys/compat/linux/linux_signal.c
60
static int linux_pksignal(struct thread *td, int pid, int sig,
sys/compat/linux/linux_signal.c
62
static int linux_psignal(struct thread *td, int pid, int sig);
sys/compat/linux/linux_signal.c
63
static int linux_tdksignal(struct thread *td, lwpid_t tid,
sys/compat/linux/linux_signal.c
65
static int linux_tdsignal(struct thread *td, lwpid_t tid,
sys/compat/linux/linux_signal.c
68
static int linux_common_rt_sigtimedwait(struct thread *,
sys/compat/linux/linux_signal.c
781
lsiginfo_to_siginfo(struct thread *td, const l_siginfo_t *lsi,
sys/compat/linux/linux_signal.c
818
linux_rt_sigqueueinfo(struct thread *td, struct linux_rt_sigqueueinfo_args *args)
sys/compat/linux/linux_signal.c
846
linux_rt_tgsigqueueinfo(struct thread *td, struct linux_rt_tgsigqueueinfo_args *args)
sys/compat/linux/linux_signal.c
873
linux_rt_sigsuspend(struct thread *td, struct linux_rt_sigsuspend_args *uap)
sys/compat/linux/linux_signal.c
887
linux_tdksignal(struct thread *td, lwpid_t tid, int tgid, int sig,
sys/compat/linux/linux_signal.c
890
struct thread *tdt;
sys/compat/linux/linux_signal.c
915
linux_tdsignal(struct thread *td, lwpid_t tid, int tgid, int sig)
sys/compat/linux/linux_signal.c
928
linux_pksignal(struct thread *td, int pid, int sig, ksiginfo_t *ksi)
sys/compat/linux/linux_signal.c
930
struct thread *tdt;
sys/compat/linux/linux_signal.c
955
linux_psignal(struct thread *td, int pid, int sig)
sys/compat/linux/linux_signal.c
968
linux_copyin_sigset(struct thread *td, l_sigset_t *lset,
sys/compat/linux/linux_signal.h
32
int linux_do_sigaction(struct thread *, int, l_sigaction_t *, l_sigaction_t *);
sys/compat/linux/linux_signal.h
34
int linux_copyin_sigset(struct thread *td, l_sigset_t *, l_size_t, sigset_t *,
sys/compat/linux/linux_socket.c
1013
linux_bind(struct thread *td, struct linux_bind_args *args)
sys/compat/linux/linux_socket.c
1033
linux_connect(struct thread *td, struct linux_connect_args *args)
sys/compat/linux/linux_socket.c
1074
linux_listen(struct thread *td, struct linux_listen_args *args)
sys/compat/linux/linux_socket.c
1081
linux_accept_common(struct thread *td, int s, l_uintptr_t addr,
sys/compat/linux/linux_socket.c
1155
linux_accept(struct thread *td, struct linux_accept_args *args)
sys/compat/linux/linux_socket.c
1163
linux_accept4(struct thread *td, struct linux_accept4_args *args)
sys/compat/linux/linux_socket.c
1171
linux_getsockname(struct thread *td, struct linux_getsockname_args *args)
sys/compat/linux/linux_socket.c
1196
linux_getpeername(struct thread *td, struct linux_getpeername_args *args)
sys/compat/linux/linux_socket.c
1221
linux_socketpair(struct thread *td, struct linux_socketpair_args *args)
sys/compat/linux/linux_socket.c
1264
linux_send(struct thread *td, struct linux_send_args *args)
sys/compat/linux/linux_socket.c
1307
linux_recv(struct thread *td, struct linux_recv_args *args)
sys/compat/linux/linux_socket.c
1329
linux_sendto(struct thread *td, struct linux_sendto_args *args)
sys/compat/linux/linux_socket.c
1360
linux_recvfrom(struct thread *td, struct linux_recvfrom_args *args)
sys/compat/linux/linux_socket.c
1414
linux_sendmsg_common(struct thread *td, l_int s, struct l_msghdr *msghdr,
sys/compat/linux/linux_socket.c
1587
linux_sendmsg(struct thread *td, struct linux_sendmsg_args *args)
sys/compat/linux/linux_socket.c
1595
linux_sendmmsg(struct thread *td, struct linux_sendmmsg_args *args)
sys/compat/linux/linux_socket.c
1625
recvmsg_scm_rights(struct thread *td, l_uint flags, socklen_t *datalen,
sys/compat/linux/linux_socket.c
1768
recvmsg_scm_sol_socket(struct thread *td, l_int msg_type, l_int lmsg_type,
sys/compat/linux/linux_socket.c
1832
linux_recvmsg_common(struct thread *td, l_int s, struct l_msghdr *msghdr,
sys/compat/linux/linux_socket.c
1996
linux_recvmsg(struct thread *td, struct linux_recvmsg_args *args)
sys/compat/linux/linux_socket.c
2011
linux_recvmmsg_common(struct thread *td, l_int s, struct l_mmsghdr *msg,
sys/compat/linux/linux_socket.c
2063
linux_recvmmsg(struct thread *td, struct linux_recvmmsg_args *args)
sys/compat/linux/linux_socket.c
2084
linux_recvmmsg_time64(struct thread *td, struct linux_recvmmsg_time64_args *args)
sys/compat/linux/linux_socket.c
2105
linux_shutdown(struct thread *td, struct linux_shutdown_args *args)
sys/compat/linux/linux_socket.c
2112
linux_setsockopt(struct thread *td, struct linux_setsockopt_args *args)
sys/compat/linux/linux_socket.c
2315
linux_sockopt_copyout(struct thread *td, void *val, socklen_t len,
sys/compat/linux/linux_socket.c
2338
linux_getsockopt_so_peergroups(struct thread *td,
sys/compat/linux/linux_socket.c
2375
linux_getsockopt_so_peersec(struct thread *td,
sys/compat/linux/linux_socket.c
2394
linux_getsockopt_so_linger(struct thread *td,
sys/compat/linux/linux_socket.c
2411
linux_getsockopt_tcp_info(struct thread *td,
sys/compat/linux/linux_socket.c
2447
linux_getsockopt(struct thread *td, struct linux_getsockopt_args *args)
sys/compat/linux/linux_socket.c
2707
sendfile_fallback(struct thread *td, struct file *fp, l_int out,
sys/compat/linux/linux_socket.c
2795
sendfile_sendfile(struct thread *td, struct file *fp, l_int out,
sys/compat/linux/linux_socket.c
2829
linux_sendfile_common(struct thread *td, l_int out, l_int in,
sys/compat/linux/linux_socket.c
2878
linux_sendfile(struct thread *td, struct linux_sendfile_args *arg)
sys/compat/linux/linux_socket.c
2924
linux_sendfile64(struct thread *td, struct linux_sendfile64_args *arg)
sys/compat/linux/linux_socket.c
2962
linux_socketcall(struct thread *td, struct linux_socketcall_args *args)
sys/compat/linux/linux_socket.c
832
linux_sendit(struct thread *td, int s, struct msghdr *mp, int flags,
sys/compat/linux/linux_socket.c
857
linux_check_hdrincl(struct thread *td, int s)
sys/compat/linux/linux_socket.c
876
linux_sendto_hdrincl(struct thread *td, struct linux_sendto_args *linux_args)
sys/compat/linux/linux_socket.c
89
static int linux_sendmsg_common(struct thread *, l_int, struct l_msghdr *,
sys/compat/linux/linux_socket.c
91
static int linux_recvmsg_common(struct thread *, l_int, struct l_msghdr *,
sys/compat/linux/linux_socket.c
934
linux_socket(struct thread *td, struct linux_socket_args *args)
sys/compat/linux/linux_socket.h
135
int linux_accept(struct thread *td, struct linux_accept_args *args);
sys/compat/linux/linux_stats.c
109
linux_kern_fstat(struct thread *td, int fd, struct stat *sbp)
sys/compat/linux/linux_stats.c
135
linux_kern_statat(struct thread *td, int flag, int fd, const char *path,
sys/compat/linux/linux_stats.c
169
linux_kern_stat(struct thread *td, const char *path, enum uio_seg pathseg,
sys/compat/linux/linux_stats.c
177
linux_kern_lstat(struct thread *td, const char *path, enum uio_seg pathseg,
sys/compat/linux/linux_stats.c
215
linux_newstat(struct thread *td, struct linux_newstat_args *args)
sys/compat/linux/linux_stats.c
227
linux_newlstat(struct thread *td, struct linux_newlstat_args *args)
sys/compat/linux/linux_stats.c
240
linux_newfstat(struct thread *td, struct linux_newfstat_args *args)
sys/compat/linux/linux_stats.c
290
linux_stat(struct thread *td, struct linux_stat_args *args)
sys/compat/linux/linux_stats.c
303
linux_lstat(struct thread *td, struct linux_lstat_args *args)
sys/compat/linux/linux_stats.c
425
linux_statfs(struct thread *td, struct linux_statfs_args *args)
sys/compat/linux/linux_stats.c
462
linux_statfs64(struct thread *td, struct linux_statfs64_args *args)
sys/compat/linux/linux_stats.c
482
linux_fstatfs64(struct thread *td, struct linux_fstatfs64_args *args)
sys/compat/linux/linux_stats.c
503
linux_fstatfs(struct thread *td, struct linux_fstatfs_args *args)
sys/compat/linux/linux_stats.c
529
linux_ustat(struct thread *td, struct linux_ustat_args *args)
sys/compat/linux/linux_stats.c
598
linux_stat64(struct thread *td, struct linux_stat64_args *args)
sys/compat/linux/linux_stats.c
610
linux_lstat64(struct thread *td, struct linux_lstat64_args *args)
sys/compat/linux/linux_stats.c
622
linux_fstat64(struct thread *td, struct linux_fstat64_args *args)
sys/compat/linux/linux_stats.c
635
linux_fstatat64(struct thread *td, struct linux_fstatat64_args *args)
sys/compat/linux/linux_stats.c
657
linux_newfstatat(struct thread *td, struct linux_newfstatat_args *args)
sys/compat/linux/linux_stats.c
679
linux_syncfs(struct thread *td, struct linux_syncfs_args *args)
sys/compat/linux/linux_stats.c
751
linux_statx(struct thread *td, struct linux_statx_args *args)
sys/compat/linux/linux_sysctl.c
100
linux_sysctl(struct thread *td, struct linux_sysctl_args *args)
sys/compat/linux/linux_time.c
104
static int linux_common_clock_gettime(struct thread *, clockid_t,
sys/compat/linux/linux_time.c
106
static int linux_common_clock_settime(struct thread *, clockid_t,
sys/compat/linux/linux_time.c
108
static int linux_common_clock_getres(struct thread *, clockid_t,
sys/compat/linux/linux_time.c
110
static int linux_common_clock_nanosleep(struct thread *, clockid_t,
sys/compat/linux/linux_time.c
337
linux_common_clock_gettime(struct thread *td, clockid_t which,
sys/compat/linux/linux_time.c
341
struct thread *targettd;
sys/compat/linux/linux_time.c
459
linux_clock_gettime(struct thread *td, struct linux_clock_gettime_args *args)
sys/compat/linux/linux_time.c
478
linux_clock_gettime64(struct thread *td, struct linux_clock_gettime64_args *args)
sys/compat/linux/linux_time.c
497
linux_common_clock_settime(struct thread *td, clockid_t which,
sys/compat/linux/linux_time.c
521
linux_clock_settime(struct thread *td, struct linux_clock_settime_args *args)
sys/compat/linux/linux_time.c
536
linux_clock_settime64(struct thread *td, struct linux_clock_settime64_args *args)
sys/compat/linux/linux_time.c
551
linux_common_clock_getres(struct thread *td, clockid_t which,
sys/compat/linux/linux_time.c
646
linux_clock_getres(struct thread *td,
sys/compat/linux/linux_time.c
664
linux_clock_getres_time64(struct thread *td,
sys/compat/linux/linux_time.c
682
linux_nanosleep(struct thread *td, struct linux_nanosleep_args *args)
sys/compat/linux/linux_time.c
712
linux_common_clock_nanosleep(struct thread *td, clockid_t which,
sys/compat/linux/linux_time.c
740
linux_clock_nanosleep(struct thread *td,
sys/compat/linux/linux_time.c
774
linux_clock_nanosleep_time64(struct thread *td,
sys/compat/linux/linux_timer.c
116
linux_timer_settime(struct thread *td, struct linux_timer_settime_args *uap)
sys/compat/linux/linux_timer.c
143
linux_timer_settime64(struct thread *td, struct linux_timer_settime64_args *uap)
sys/compat/linux/linux_timer.c
170
linux_timer_gettime(struct thread *td, struct linux_timer_gettime_args *uap)
sys/compat/linux/linux_timer.c
186
linux_timer_gettime64(struct thread *td, struct linux_timer_gettime64_args *uap)
sys/compat/linux/linux_timer.c
202
linux_timer_getoverrun(struct thread *td, struct linux_timer_getoverrun_args *uap)
sys/compat/linux/linux_timer.c
209
linux_timer_delete(struct thread *td, struct linux_timer_delete_args *uap)
sys/compat/linux/linux_timer.c
85
linux_timer_create(struct thread *td, struct linux_timer_create_args *uap)
sys/compat/linux/linux_uid16.c
134
linux_getgroups16(struct thread *td, struct linux_getgroups16_args *args)
sys/compat/linux/linux_uid16.c
169
linux_getgid16(struct thread *td, struct linux_getgid16_args *args)
sys/compat/linux/linux_uid16.c
178
linux_getuid16(struct thread *td, struct linux_getuid16_args *args)
sys/compat/linux/linux_uid16.c
187
linux_getegid16(struct thread *td, struct linux_getegid16_args *args)
sys/compat/linux/linux_uid16.c
198
linux_geteuid16(struct thread *td, struct linux_geteuid16_args *args)
sys/compat/linux/linux_uid16.c
209
linux_setgid16(struct thread *td, struct linux_setgid16_args *args)
sys/compat/linux/linux_uid16.c
221
linux_setuid16(struct thread *td, struct linux_setuid16_args *args)
sys/compat/linux/linux_uid16.c
233
linux_setregid16(struct thread *td, struct linux_setregid16_args *args)
sys/compat/linux/linux_uid16.c
246
linux_setreuid16(struct thread *td, struct linux_setreuid16_args *args)
sys/compat/linux/linux_uid16.c
259
linux_setresgid16(struct thread *td, struct linux_setresgid16_args *args)
sys/compat/linux/linux_uid16.c
273
linux_setresuid16(struct thread *td, struct linux_setresuid16_args *args)
sys/compat/linux/linux_uid16.c
287
linux_setfsuid16(struct thread *td, struct linux_setfsuid16_args *args)
sys/compat/linux/linux_uid16.c
294
linux_setfsgid16(struct thread *td, struct linux_setfsgid16_args *args)
sys/compat/linux/linux_uid16.c
68
linux_chown16(struct thread *td, struct linux_chown16_args *args)
sys/compat/linux/linux_uid16.c
76
linux_lchown16(struct thread *td, struct linux_lchown16_args *args)
sys/compat/linux/linux_uid16.c
84
linux_setgroups16(struct thread *td, struct linux_setgroups16_args *args)
sys/compat/linux/linux_util.c
104
linux_msg(const struct thread *td, const char *fmt, ...)
sys/compat/linux/linux_util.c
78
linux_pwd_onexec(struct thread *td)
sys/compat/linux/linux_util.c
97
linux_pwd_onexec_native(struct thread *td)
sys/compat/linux/linux_util.h
46
int linux_pwd_onexec(struct thread *);
sys/compat/linux/linux_util.h
47
void linux_pwd_onexec_native(struct thread *);
sys/compat/linux/linux_util.h
52
linux_ ## s(struct thread *td, struct linux_ ## s ## _args *args) \
sys/compat/linux/linux_util.h
74
void linux_msg(const struct thread *td, const char *fmt, ...)
sys/compat/linux/linux_xattr.c
136
listxattr(struct thread *td, struct listxattr_args *args)
sys/compat/linux/linux_xattr.c
227
linux_listxattr(struct thread *td, struct linux_listxattr_args *args)
sys/compat/linux/linux_xattr.c
241
linux_llistxattr(struct thread *td, struct linux_llistxattr_args *args)
sys/compat/linux/linux_xattr.c
255
linux_flistxattr(struct thread *td, struct linux_flistxattr_args *args)
sys/compat/linux/linux_xattr.c
269
removexattr(struct thread *td, struct removexattr_args *args)
sys/compat/linux/linux_xattr.c
302
linux_removexattr(struct thread *td, struct linux_removexattr_args *args)
sys/compat/linux/linux_xattr.c
315
linux_lremovexattr(struct thread *td, struct linux_lremovexattr_args *args)
sys/compat/linux/linux_xattr.c
328
linux_fremovexattr(struct thread *td, struct linux_fremovexattr_args *args)
sys/compat/linux/linux_xattr.c
349
void *data, size_t nbytes, struct thread *td)
sys/compat/linux/linux_xattr.c
411
getxattr(struct thread *td, struct getxattr_args *args)
sys/compat/linux/linux_xattr.c
452
linux_getxattr(struct thread *td, struct linux_getxattr_args *args)
sys/compat/linux/linux_xattr.c
467
linux_lgetxattr(struct thread *td, struct linux_lgetxattr_args *args)
sys/compat/linux/linux_xattr.c
482
linux_fgetxattr(struct thread *td, struct linux_fgetxattr_args *args)
sys/compat/linux/linux_xattr.c
497
setxattr(struct thread *td, struct setxattr_args *args)
sys/compat/linux/linux_xattr.c
559
linux_setxattr(struct thread *td, struct linux_setxattr_args *args)
sys/compat/linux/linux_xattr.c
575
linux_lsetxattr(struct thread *td, struct linux_lsetxattr_args *args)
sys/compat/linux/linux_xattr.c
591
linux_fsetxattr(struct thread *td, struct linux_fsetxattr_args *args)
sys/compat/linuxkpi/common/include/linux/compat.h
37
struct thread;
sys/compat/linuxkpi/common/include/linux/compat.h
40
extern int linux_alloc_current(struct thread *, int flags);
sys/compat/linuxkpi/common/include/linux/compat.h
48
linux_set_current(struct thread *td)
sys/compat/linuxkpi/common/include/linux/compat.h
55
linux_set_current_flags(struct thread *td, int flags)
sys/compat/linuxkpi/common/include/linux/kthread.h
60
struct thread *__td; \
sys/compat/linuxkpi/common/include/linux/kthread.h
78
struct task_struct *linux_kthread_setup_and_run(struct thread *,
sys/compat/linuxkpi/common/include/linux/lockdep.h
91
struct thread *__td;
sys/compat/linuxkpi/common/include/linux/mutex.h
126
return ((struct thread *)SX_OWNER(m->sx.sx_lock) != NULL);
sys/compat/linuxkpi/common/include/linux/sched.h
71
struct thread *task_thread;
sys/compat/linuxkpi/common/include/linux/sched.h
96
struct thread *__td = curthread; \
sys/compat/linuxkpi/common/include/linux/ww_mutex.h
103
else if ((struct thread *)SX_OWNER(lock->base.sx.sx_lock) == curthread)
sys/compat/linuxkpi/common/include/linux/ww_mutex.h
92
else if ((struct thread *)SX_OWNER(lock->base.sx.sx_lock) == curthread)
sys/compat/linuxkpi/common/src/linux_compat.c
1232
struct thread *td;
sys/compat/linuxkpi/common/src/linux_compat.c
1268
struct thread *td;
sys/compat/linuxkpi/common/src/linux_compat.c
1312
int nprot, bool is_shared, struct thread *td)
sys/compat/linuxkpi/common/src/linux_compat.c
1472
int flags, struct thread *td)
sys/compat/linuxkpi/common/src/linux_compat.c
1514
int flags, struct thread *td)
sys/compat/linuxkpi/common/src/linux_compat.c
1557
struct thread *td)
sys/compat/linuxkpi/common/src/linux_compat.c
1579
linux_file_close(struct file *file, struct thread *td)
sys/compat/linuxkpi/common/src/linux_compat.c
1622
struct thread *td)
sys/compat/linuxkpi/common/src/linux_compat.c
1683
linux_file_mmap_sub(struct thread *td, vm_size_t objsize, vm_prot_t prot,
sys/compat/linuxkpi/common/src/linux_compat.c
1704
struct thread *td)
sys/compat/linuxkpi/common/src/linux_compat.c
1830
linux_file_kcmp(struct file *fp1, struct file *fp2, struct thread *td)
sys/compat/linuxkpi/common/src/linux_compat.c
750
linux_dev_fdopen(struct cdev *dev, int fflags, struct thread *td,
sys/compat/linuxkpi/common/src/linux_compat.c
925
struct thread *td)
sys/compat/linuxkpi/common/src/linux_current.c
177
linuxkpi_thread_dtor(void *arg __unused, struct thread *td)
sys/compat/linuxkpi/common/src/linux_current.c
192
struct thread *td;
sys/compat/linuxkpi/common/src/linux_current.c
240
struct thread *td;
sys/compat/linuxkpi/common/src/linux_current.c
310
struct thread *td;
sys/compat/linuxkpi/common/src/linux_current.c
59
struct thread *td;
sys/compat/linuxkpi/common/src/linux_current.c
79
linux_alloc_current(struct thread *td, int flags)
sys/compat/linuxkpi/common/src/linux_kthread.c
128
linux_kthread_setup_and_run(struct thread *td, linux_task_fn_t *task_fn, void *arg)
sys/compat/linuxkpi/common/src/linux_kthread.c
156
struct thread *td = curthread;
sys/compat/linuxkpi/common/src/linux_lock.c
103
if (other->thread == owner &&
sys/compat/linuxkpi/common/src/linux_lock.c
104
(struct thread *)SX_OWNER(
sys/compat/linuxkpi/common/src/linux_lock.c
125
if ((struct thread *)SX_OWNER(lock->base.sx.sx_lock) == NULL)
sys/compat/linuxkpi/common/src/linux_lock.c
34
struct thread *thread;
sys/compat/linuxkpi/common/src/linux_lock.c
84
entry.thread = curthread;
sys/compat/linuxkpi/common/src/linux_lock.c
89
struct thread *owner = (struct thread *)
sys/compat/linuxkpi/common/src/linux_rcu.c
284
struct thread *td = curthread;
sys/compat/linuxkpi/common/src/linux_rcu.c
339
struct thread *td;
sys/compat/linuxkpi/common/src/linux_schedule.c
135
struct thread *td;
sys/compat/linuxkpi/common/src/linux_schedule.c
150
struct thread *td;
sys/compat/linuxkpi/common/src/linux_schedule.c
175
struct thread *td;
sys/crypto/via/padlock.c
163
struct thread *td;
sys/crypto/via/padlock_cipher.c
185
struct thread *td;
sys/crypto/via/padlock_hash.c
391
struct thread *td;
sys/ddb/db_break.c
375
thread_t thread;
sys/ddb/db_break.c
379
(((thread = current_thread()) != NULL) &&
sys/ddb/db_break.c
380
(map == thread->task->map)));
sys/ddb/db_break.c
390
thread_t thread;
sys/ddb/db_break.c
400
((thread = current_thread()) != NULL))
sys/ddb/db_break.c
401
return thread->task->map;
sys/ddb/db_command.c
833
struct thread *td;
sys/ddb/db_command.c
880
struct thread *td;
sys/ddb/db_main.c
289
db_trace_thread_wrapper(struct thread *td)
sys/ddb/db_ps.c
142
volatile struct thread *td;
sys/ddb/db_ps.c
260
dumpthread(volatile struct proc *p, volatile struct thread *td, int all)
sys/ddb/db_ps.c
342
DB_SHOW_COMMAND(thread, db_show_thread)
sys/ddb/db_ps.c
344
struct thread *td;
sys/ddb/db_ps.c
435
struct thread *td;
sys/ddb/db_ps.c
505
struct thread *td;
sys/ddb/db_ps.c
55
static void dumpthread(volatile struct proc *p, volatile struct thread *td,
sys/ddb/db_sym.c
486
db_decode_syscall(struct thread *td, u_int number)
sys/ddb/db_sym.h
106
void db_decode_syscall(struct thread *td, u_int number);
sys/ddb/db_thread.c
106
struct thread *
sys/ddb/db_thread.c
109
struct thread *td;
sys/ddb/db_thread.c
118
return ((struct thread *)addr);
sys/ddb/db_thread.c
128
return ((struct thread *)addr);
sys/ddb/db_thread.c
54
struct thread *thr;
sys/ddb/db_thread.c
82
struct thread *thr;
sys/ddb/ddb.h
229
struct thread;
sys/ddb/ddb.h
242
struct thread *db_lookup_thread(db_expr_t addr, bool check_pid);
sys/ddb/ddb.h
261
int db_trace_thread(struct thread *, int);
sys/dev/aac/aac.c
2791
aac_open(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/dev/aac/aac.c
2804
aac_ioctl(struct cdev *dev, u_long cmd, caddr_t arg, int flag, struct thread *td)
sys/dev/aac/aac.c
2909
aac_poll(struct cdev *dev, int poll_events, struct thread *td)
sys/dev/aac/aac_linux.c
68
aac_linux_ioctl(struct thread *td, struct linux_ioctl_args *args)
sys/dev/aacraid/aacraid.c
2597
aac_open(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/dev/aacraid/aacraid.c
2609
aac_ioctl(struct cdev *dev, u_long cmd, caddr_t arg, int flag, struct thread *td)
sys/dev/aacraid/aacraid.c
2713
aac_poll(struct cdev *dev, int poll_events, struct thread *td)
sys/dev/aacraid/aacraid_linux.c
70
aacraid_linux_ioctl(struct thread *td, struct linux_ioctl_args *args)
sys/dev/acpi_support/acpi_hp.c
1137
acpi_hp_hpcmi_open(struct cdev* dev, int flags, int mode, struct thread *td)
sys/dev/acpi_support/acpi_hp.c
1169
acpi_hp_hpcmi_close(struct cdev* dev, int flags, int mode, struct thread *td)
sys/dev/acpi_support/acpi_wmi.c
913
acpi_wmi_wmistat_open(struct cdev* dev, int flags, int mode, struct thread *td)
sys/dev/acpi_support/acpi_wmi.c
946
struct thread *td)
sys/dev/acpica/Osd/OsdSynch.c
278
struct thread *am_owner;
sys/dev/acpica/acpi.c
4451
acpiopen(struct cdev *dev, int flag, int fmt, struct thread *td)
sys/dev/acpica/acpi.c
4457
acpiclose(struct cdev *dev, int flag, int fmt, struct thread *td)
sys/dev/acpica/acpi.c
4463
acpiioctl(struct cdev *dev, u_long cmd, caddr_t addr, int flag, struct thread *td)
sys/dev/acpica/acpi_hpet.c
380
hpet_open(struct cdev *cdev, int oflags, int devtype, struct thread *td)
sys/dev/adb/adb_mouse.c
429
ams_open(struct cdev *dev, int flag, int fmt, struct thread *p)
sys/dev/adb/adb_mouse.c
448
ams_close(struct cdev *dev, int flag, int fmt, struct thread *p)
sys/dev/adb/adb_mouse.c
460
ams_poll(struct cdev *dev, int events, struct thread *p)
sys/dev/adb/adb_mouse.c
575
struct thread *p)
sys/dev/adlink/adlink.c
193
adlink_ioctl(struct cdev *dev, u_long cmd, caddr_t data, int fflag, struct thread *td)
sys/dev/agp/agp.c
819
agp_open(struct cdev *kdev, int oflags, int devtype, struct thread *td)
sys/dev/agp/agp.c
833
agp_close(struct cdev *kdev, int fflag, int devtype, struct thread *td)
sys/dev/agp/agp.c
856
agp_ioctl(struct cdev *kdev, u_long cmd, caddr_t data, int fflag, struct thread *td)
sys/dev/arcmsr/arcmsr.c
241
static int arcmsr_open(struct cdev *dev, int flags, int fmt, struct thread *proc)
sys/dev/arcmsr/arcmsr.c
249
static int arcmsr_close(struct cdev *dev, int flags, int fmt, struct thread *proc)
sys/dev/arcmsr/arcmsr.c
257
static int arcmsr_ioctl(struct cdev *dev, u_long ioctl_cmd, caddr_t arg, int flags, struct thread *proc)
sys/dev/atkbdc/psm.c
2165
psm_cdev_open(struct cdev *dev, int flag, int fmt, struct thread *td)
sys/dev/atkbdc/psm.c
2198
psm_cdev_close(struct cdev *dev, int flag, int fmt, struct thread *td)
sys/dev/atkbdc/psm.c
2621
struct thread *td)
sys/dev/atkbdc/psm.c
5264
psmpoll(struct cdev *dev, int events, struct thread *td)
sys/dev/backlight/backlight.c
57
int fflag, struct thread *td)
sys/dev/bnxt/bnxt_en/bnxt_mgmt.c
273
int flag, struct thread *td)
sys/dev/bnxt/bnxt_en/bnxt_mgmt.c
459
int flag, struct thread *td)
sys/dev/bnxt/bnxt_en/bnxt_mgmt.c
524
int flag, struct thread *td)
sys/dev/bnxt/bnxt_en/bnxt_mgmt.c
679
int flag, struct thread *td)
sys/dev/bnxt/bnxt_en/bnxt_mgmt.c
759
int flag, struct thread *td)
sys/dev/bnxt/bnxt_en/bnxt_mgmt.c
838
struct thread *td)
sys/dev/bnxt/bnxt_en/bnxt_mgmt.c
875
bnxt_mgmt_close(struct cdev *dev, int flags, int devtype, struct thread *td)
sys/dev/bnxt/bnxt_en/bnxt_mgmt.c
881
bnxt_mgmt_open(struct cdev *dev, int flags, int devtype, struct thread *td)
sys/dev/bxe/bxe.c
18618
struct thread *td);
sys/dev/bxe/bxe.c
19251
struct thread *td)
sys/dev/cardbus/cardbus_device.c
134
cardbus_open(struct cdev *dev, int oflags, int devtype, struct thread *td)
sys/dev/cardbus/cardbus_device.c
141
cardbus_close(struct cdev *dev, int fflags, int devtype, struct thread *td)
sys/dev/cardbus/cardbus_device.c
149
struct thread *td)
sys/dev/cfi/cfi_dev.c
153
cfi_devopen(struct cdev *dev, int oflags, int devtype, struct thread *td)
sys/dev/cfi/cfi_dev.c
166
cfi_devclose(struct cdev *dev, int fflag, int devtype, struct thread *td)
sys/dev/cfi/cfi_dev.c
262
struct thread *td)
sys/dev/cfi/cfi_disk.c
340
struct thread *td)
sys/dev/cfi/cfi_disk.c
75
static int cfi_disk_ioctl(struct disk *, u_long, void *, int, struct thread *);
sys/dev/ciss/ciss.c
4576
ciss_open(struct cdev *dev, int flags, int fmt, struct thread *p)
sys/dev/ciss/ciss.c
4596
ciss_close(struct cdev *dev, int flags, int fmt, struct thread *p)
sys/dev/ciss/ciss.c
4617
ciss_ioctl(struct cdev *dev, u_long cmd, caddr_t addr, int32_t flag, struct thread *p)
sys/dev/coreboot/coreboot_cbmem.c
54
struct thread *td)
sys/dev/cpuctl/cpuctl.c
111
cpu_sched_is_bound(struct thread *td)
sys/dev/cpuctl/cpuctl.c
125
set_cpu(int cpu, struct thread *td)
sys/dev/cpuctl/cpuctl.c
139
restore_cpu(int oldcpu, int is_bound, struct thread *td)
sys/dev/cpuctl/cpuctl.c
154
int flags, struct thread *td)
sys/dev/cpuctl/cpuctl.c
210
struct thread *td)
sys/dev/cpuctl/cpuctl.c
235
cpuctl_do_cpuid(int cpu, cpuctl_cpuid_args_t *data, struct thread *td)
sys/dev/cpuctl/cpuctl.c
252
cpuctl_do_msr(int cpu, cpuctl_msr_args_t *data, u_long cmd, struct thread *td)
sys/dev/cpuctl/cpuctl.c
303
cpuctl_do_update(int cpu, cpuctl_update_args_t *data, struct thread *td)
sys/dev/cpuctl/cpuctl.c
351
update_intel(int cpu, cpuctl_update_args_t *args, struct thread *td)
sys/dev/cpuctl/cpuctl.c
416
update_amd(int cpu, cpuctl_update_args_t *args, struct thread *td)
sys/dev/cpuctl/cpuctl.c
448
update_via(int cpu, cpuctl_update_args_t *args, struct thread *td)
sys/dev/cpuctl/cpuctl.c
521
cpuctl_do_eval_cpu_features(int cpu, struct thread *td)
sys/dev/cpuctl/cpuctl.c
554
cpuctl_open(struct cdev *dev, int flags, int fmt __unused, struct thread *td)
sys/dev/cpuctl/cpuctl.c
73
struct thread *td);
sys/dev/cpuctl/cpuctl.c
75
struct thread *td);
sys/dev/cpuctl/cpuctl.c
77
struct thread *td);
sys/dev/cpuctl/cpuctl.c
78
static int cpuctl_do_eval_cpu_features(int cpu, struct thread *td);
sys/dev/cpuctl/cpuctl.c
80
struct thread *td);
sys/dev/cpuctl/cpuctl.c
82
struct thread *td);
sys/dev/cpuctl/cpuctl.c
83
static int update_amd(int cpu, cpuctl_update_args_t *args, struct thread *td);
sys/dev/cpuctl/cpuctl.c
85
struct thread *td);
sys/dev/cxgb/cxgb_main.c
2467
cxgb_extension_open(struct cdev *dev, int flags, int fmp, struct thread *td)
sys/dev/cxgb/cxgb_main.c
2473
cxgb_extension_close(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/dev/cxgb/cxgb_main.c
2480
int fflag, struct thread *td)
sys/dev/cxgbe/cxgbei/cxgbei.h
58
struct thread *rx_thread;
sys/dev/cxgbe/cxgbei/cxgbei.h
67
struct thread *tx_thread;
sys/dev/cxgbe/iw_cxgbe/cm.c
1006
new_ep->com.thread = real_lep->com.thread;
sys/dev/cxgbe/iw_cxgbe/cm.c
1432
ep->com.thread);
sys/dev/cxgbe/iw_cxgbe/cm.c
1514
err = -sosend(ep->com.so, NULL, NULL, m, NULL, MSG_DONTWAIT, ep->com.thread);
sys/dev/cxgbe/iw_cxgbe/cm.c
1606
ep->com.thread);
sys/dev/cxgbe/iw_cxgbe/cm.c
1880
uio.uio_td = ep->com.thread;
sys/dev/cxgbe/iw_cxgbe/cm.c
2648
ep->com.thread = curthread;
sys/dev/cxgbe/iw_cxgbe/cm.c
2680
ep->com.thread);
sys/dev/cxgbe/iw_cxgbe/cm.c
2722
lep->com.thread = curthread;
sys/dev/cxgbe/iw_cxgbe/iw_cxgbe.h
835
struct thread *thread;
sys/dev/cxgbe/nvmf/nvmf_che.c
210
struct thread *rx_thread;
sys/dev/cxgbe/nvmf/nvmf_che.c
218
struct thread *tx_thread;
sys/dev/cxgbe/t4_main.c
13289
struct thread *td)
sys/dev/cxgbe/t4_vf.c
834
struct thread *td)
sys/dev/cyapa/cyapa.c
1151
cyapapoll(struct cdev *dev, int events, struct thread *td)
sys/dev/cyapa/cyapa.c
1201
cyapaioctl(struct cdev *dev, u_long cmd, caddr_t data, int fflag, struct thread *td)
sys/dev/cyapa/cyapa.c
657
cyapaopen(struct cdev *dev, int oflags, int devtype, struct thread *td)
sys/dev/dpaa2/dpaa2_console.c
203
dpaa2_cons_open(struct cdev *cdev, int flags, int fmt, struct thread *td)
sys/dev/dpaa2/dpaa2_console.c
248
dpaa2_cons_close(struct cdev *cdev, int flags, int fmt, struct thread *td)
sys/dev/drm2/drmP.h
1603
#define DRM_STRUCTPROC struct thread
sys/dev/drm2/drm_fops.c
550
drm_poll(struct cdev *kdev, int events, struct thread *td)
sys/dev/efidev/efidev.c
48
int flags __unused, struct thread *td __unused)
sys/dev/efidev/efirt.c
305
struct thread *td;
sys/dev/efidev/efirt.c
331
struct thread *td;
sys/dev/etherswitch/etherswitch.c
134
etherswitchioctl(struct cdev *cdev, u_long cmd, caddr_t data, int flags, struct thread *td)
sys/dev/evdev/cdev.c
103
evdev_open(struct cdev *dev, int oflags, int devtype, struct thread *td)
sys/dev/evdev/cdev.c
307
evdev_poll(struct cdev *dev, int events, struct thread *td)
sys/dev/evdev/cdev.c
394
struct thread *td)
sys/dev/evdev/cdev.c
674
struct thread *td)
sys/dev/evdev/cdev.c
80
struct thread *);
sys/dev/evdev/uinput.c
200
uinput_open(struct cdev *dev, int oflags, int devtype, struct thread *td)
sys/dev/evdev/uinput.c
375
uinput_poll(struct cdev *dev, int events, struct thread *td)
sys/dev/evdev/uinput.c
643
struct thread *td)
sys/dev/fb/fbd.c
102
fb_close(struct cdev *dev, int fflag, int devtype, struct thread *td)
sys/dev/fb/fbd.c
110
struct thread *td)
sys/dev/fb/fbd.c
95
fb_open(struct cdev *dev, int oflags, int devtype, struct thread *td)
sys/dev/fdc/fdc.c
1488
fd_ioctl(struct g_provider *pp, u_long cmd, void *data, int fflag, struct thread *td)
sys/dev/filemon/filemon.c
357
struct thread *td)
sys/dev/filemon/filemon.c
421
struct thread *td)
sys/dev/filemon/filemon.c
442
struct thread *td __unused)
sys/dev/filemon/filemon_wrapper.c
148
_filemon_wrapper_openat(struct thread *td, const char *upath, int flags,
sys/dev/filemon/filemon_wrapper.c
213
filemon_wrapper_open(struct thread *td, struct open_args *uap)
sys/dev/filemon/filemon_wrapper.c
224
filemon_wrapper_openat(struct thread *td, struct openat_args *uap)
sys/dev/filemon/filemon_wrapper.c
235
filemon_wrapper_rename(struct thread *td, struct rename_args *uap)
sys/dev/filemon/filemon_wrapper.c
261
_filemon_wrapper_link(struct thread *td, const char *upath1,
sys/dev/filemon/filemon_wrapper.c
284
filemon_wrapper_link(struct thread *td, struct link_args *uap)
sys/dev/filemon/filemon_wrapper.c
295
filemon_wrapper_symlink(struct thread *td, struct symlink_args *uap)
sys/dev/filemon/filemon_wrapper.c
306
filemon_wrapper_linkat(struct thread *td, struct linkat_args *uap)
sys/dev/filemon/filemon_wrapper.c
341
filemon_wrapper_unlink(struct thread *td, struct unlink_args *uap)
sys/dev/filemon/filemon_wrapper.c
92
filemon_wrapper_chdir(struct thread *td, struct chdir_args *uap)
sys/dev/firewire/firewirereg.h
38
typedef struct thread fw_proc;
sys/dev/firewire/fwcam.c
656
fwcam_cdev_open(struct cdev *dev, int oflags, int devtype, struct thread *td)
sys/dev/firewire/fwcam.c
694
fwcam_cdev_close(struct cdev *dev, int fflag, int devtype, struct thread *td)
sys/dev/firewire/fwcam.c
764
fwcam_cdev_poll(struct cdev *dev, int events, struct thread *td)
sys/dev/firewire/fwcam.c
894
int fflag, struct thread *td)
sys/dev/firewire/fwdv.c
671
fwdv_cdev_open(struct cdev *dev, int oflags, int devtype, struct thread *td)
sys/dev/firewire/fwdv.c
719
fwdv_cdev_close(struct cdev *dev, int fflag, int devtype, struct thread *td)
sys/dev/firewire/fwdv.c
778
fwdv_cdev_poll(struct cdev *dev, int events, struct thread *td)
sys/dev/firewire/fwdv.c
799
struct thread *td)
sys/dev/flash/flexspi/flex_spi.c
127
static int flex_spi_ioctl(struct disk *, u_long, void *, int, struct thread *);
sys/dev/flash/flexspi/flex_spi.c
883
struct thread *td)
sys/dev/flash/mx25l.c
112
static int mx25l_ioctl(struct disk *, u_long, void *, int, struct thread *);
sys/dev/flash/mx25l.c
591
struct thread *td)
sys/dev/flash/n25q.c
134
static int n25q_ioctl(struct disk *, u_long, void *, int, struct thread *);
sys/dev/flash/n25q.c
379
int fflag, struct thread *td)
sys/dev/flash/w25n.c
100
static int w25n_ioctl(struct disk *, u_long, void *, int, struct thread *);
sys/dev/flash/w25n.c
504
struct thread *td)
sys/dev/gpio/gpioc.c
685
gpioc_open(struct cdev *dev, int oflags, int devtype, struct thread *td)
sys/dev/gpio/gpioc.c
787
struct thread *td)
sys/dev/gpio/gpioc.c
980
gpioc_poll(struct cdev *dev, int events, struct thread *td)
sys/dev/gpio/gpiopps.c
65
gpiopps_open(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/dev/gpio/gpiopps.c
78
gpiopps_close(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/dev/gpio/gpiopps.c
90
gpiopps_ioctl(struct cdev *dev, u_long cmd, caddr_t data, int flags, struct thread *td)
sys/dev/hid/hidraw.c
347
hidraw_open(struct cdev *dev, int flag, int mode, struct thread *td)
sys/dev/hid/hidraw.c
565
struct thread *td)
sys/dev/hid/hidraw.c
947
hidraw_poll(struct cdev *dev, int events, struct thread *td)
sys/dev/hid/hkbd.c
168
struct thread *sc_poll_thread;
sys/dev/hid/u2f.c
263
u2f_open(struct cdev *dev, int flag, int mode, struct thread *td)
sys/dev/hid/u2f.c
409
struct thread *td)
sys/dev/hid/u2f.c
473
u2f_poll(struct cdev *dev, int events, struct thread *td)
sys/dev/hpt27xx/hpt27xx_osm_bsd.c
1278
static int hpt_open(struct cdev *dev, int flags, int devtype, struct thread *td)
sys/dev/hpt27xx/hpt27xx_osm_bsd.c
1283
static int hpt_close(struct cdev *dev, int flags, int devtype, struct thread *td)
sys/dev/hpt27xx/hpt27xx_osm_bsd.c
1288
static int hpt_ioctl(struct cdev *dev, u_long cmd, caddr_t data, int fflag, struct thread *td)
sys/dev/hptiop/hptiop.h
338
typedef struct thread * ioctl_thread_t;
sys/dev/hptnr/hptnr_osm_bsd.c
1568
static int hpt_open(struct cdev *dev, int flags, int devtype, struct thread *td)
sys/dev/hptnr/hptnr_osm_bsd.c
1573
static int hpt_close(struct cdev *dev, int flags, int devtype, struct thread *td)
sys/dev/hptnr/hptnr_osm_bsd.c
1578
static int hpt_ioctl(struct cdev *dev, u_long cmd, caddr_t data, int fflag, struct thread *td)
sys/dev/hptrr/hptrr_osm_bsd.c
1211
static int hpt_open(struct cdev *dev, int flags, int devtype, struct thread *td)
sys/dev/hptrr/hptrr_osm_bsd.c
1216
static int hpt_close(struct cdev *dev, int flags, int devtype, struct thread *td)
sys/dev/hptrr/hptrr_osm_bsd.c
1221
static int hpt_ioctl(struct cdev *dev, u_long cmd, caddr_t data, int fflag, struct thread *td)
sys/dev/hwpmc/hwpmc_logging.c
1078
pmclog_process_proccsw(struct pmc *pm, struct pmc_process *pp, pmc_value_t v, struct thread *td)
sys/dev/hwpmc/hwpmc_logging.c
1170
pmclog_process_threadcreate(struct pmc_owner *po, struct thread *td, int sync)
sys/dev/hwpmc/hwpmc_logging.c
1197
pmclog_process_threadexit(struct pmc_owner *po, struct thread *td)
sys/dev/hwpmc/hwpmc_logging.c
302
pmclog_proc_create(struct thread *td, void **handlep)
sys/dev/hwpmc/hwpmc_logging.c
356
struct thread *td;
sys/dev/hwpmc/hwpmc_mod.c
1366
pmc_process_exec(struct thread *td, struct pmckern_procexec *pk)
sys/dev/hwpmc/hwpmc_mod.c
1479
pmc_process_csw_in(struct thread *td)
sys/dev/hwpmc/hwpmc_mod.c
1710
pmc_process_csw_out(struct thread *td)
sys/dev/hwpmc/hwpmc_mod.c
1896
pmc_process_thread_add(struct thread *td)
sys/dev/hwpmc/hwpmc_mod.c
1909
pmc_process_thread_delete(struct thread *td)
sys/dev/hwpmc/hwpmc_mod.c
1923
pmc_process_thread_userret(struct thread *td)
sys/dev/hwpmc/hwpmc_mod.c
1934
pmc_process_mmap(struct thread *td, struct pmckern_map_in *pkm)
sys/dev/hwpmc/hwpmc_mod.c
1982
pmc_process_munmap(struct thread *td, struct pmckern_map_out *pkm)
sys/dev/hwpmc/hwpmc_mod.c
2262
pmc_hook_handler(struct thread *td, int function, void *arg)
sys/dev/hwpmc/hwpmc_mod.c
240
struct thread *td, uint32_t mode);
sys/dev/hwpmc/hwpmc_mod.c
250
static void pmc_process_csw_in(struct thread *td);
sys/dev/hwpmc/hwpmc_mod.c
251
static void pmc_process_csw_out(struct thread *td);
sys/dev/hwpmc/hwpmc_mod.c
252
static void pmc_process_exec(struct thread *td,
sys/dev/hwpmc/hwpmc_mod.c
2533
pmc_find_thread_descriptor(struct pmc_process *pp, struct thread *td,
sys/dev/hwpmc/hwpmc_mod.c
2589
struct thread *curtd;
sys/dev/hwpmc/hwpmc_mod.c
259
static void pmc_process_threadcreate(struct thread *td);
sys/dev/hwpmc/hwpmc_mod.c
260
static void pmc_process_threadexit(struct thread *td);
sys/dev/hwpmc/hwpmc_mod.c
261
static void pmc_process_thread_add(struct thread *td);
sys/dev/hwpmc/hwpmc_mod.c
262
static void pmc_process_thread_delete(struct thread *td);
sys/dev/hwpmc/hwpmc_mod.c
263
static void pmc_process_thread_userret(struct thread *td);
sys/dev/hwpmc/hwpmc_mod.c
269
static int pmc_syscall_handler(struct thread *td, void *syscall_args);
sys/dev/hwpmc/hwpmc_mod.c
3396
pmc_do_op_pmcallocate(struct thread *td, struct pmc_op_pmcallocate *pa)
sys/dev/hwpmc/hwpmc_mod.c
3670
pmc_do_op_pmcattach(struct thread *td, struct pmc_op_pmcattach a)
sys/dev/hwpmc/hwpmc_mod.c
3733
pmc_do_op_pmcdetach(struct thread *td, struct pmc_op_pmcattach a)
sys/dev/hwpmc/hwpmc_mod.c
3914
pmc_syscall_handler(struct thread *td, void *syscall_args)
sys/dev/hwpmc/hwpmc_mod.c
4761
struct thread *td;
sys/dev/hwpmc/hwpmc_mod.c
4843
struct thread *td;
sys/dev/hwpmc/hwpmc_mod.c
4947
struct thread *td;
sys/dev/hwpmc/hwpmc_mod.c
4975
struct thread *td;
sys/dev/hwpmc/hwpmc_mod.c
5083
struct thread *td;
sys/dev/hwpmc/hwpmc_mod.c
5484
pmc_process_threadcreate(struct thread *td)
sys/dev/hwpmc/hwpmc_mod.c
5497
pmc_process_threadexit(struct thread *td)
sys/dev/hwpmc/hwpmc_mod.c
5526
struct thread *td;
sys/dev/hwpmc/hwpmc_soft.c
412
ast_hwpmc(struct thread *td, int tda __unused)
sys/dev/hwt/hwt_config.c
62
hwt_config_set(struct thread *td, struct hwt_context *ctx,
sys/dev/hwt/hwt_config.h
32
int hwt_config_set(struct thread *td, struct hwt_context *ctx,
sys/dev/hwt/hwt_context.h
47
struct thread *hwt_td;
sys/dev/hwt/hwt_hook.c
130
hwt_hook_thread_exit(struct thread *td)
sys/dev/hwt/hwt_hook.c
163
hwt_hook_mmap(struct thread *td)
sys/dev/hwt/hwt_hook.c
206
hwt_hook_thread_create(struct thread *td)
sys/dev/hwt/hwt_hook.c
276
hwt_hook_handler(struct thread *td, int func, void *arg)
sys/dev/hwt/hwt_hook.c
60
hwt_switch_in(struct thread *td)
sys/dev/hwt/hwt_hook.c
96
hwt_switch_out(struct thread *td)
sys/dev/hwt/hwt_hook.h
51
extern void (*hwt_hook)(struct thread *td, int func, void *arg);
sys/dev/hwt/hwt_ioctl.c
130
hwt_ioctl_alloc_mode_thread(struct thread *td, struct hwt_owner *ho,
sys/dev/hwt/hwt_ioctl.c
133
struct thread **threads, *td1;
sys/dev/hwt/hwt_ioctl.c
201
threads = malloc(sizeof(struct thread *) * cnt, M_HWT_IOCTL,
sys/dev/hwt/hwt_ioctl.c
287
hwt_ioctl_alloc_mode_cpu(struct thread *td, struct hwt_owner *ho,
sys/dev/hwt/hwt_ioctl.c
378
hwt_ioctl_alloc(struct thread *td, struct hwt_alloc *halloc)
sys/dev/hwt/hwt_ioctl.c
427
struct thread *td)
sys/dev/hwt/hwt_ioctl.h
33
struct thread *td);
sys/dev/hwt/hwt_record.c
143
hwt_record_td(struct thread *td, struct hwt_record_entry *ent, int flags)
sys/dev/hwt/hwt_record.h
38
void hwt_record_td(struct thread *td, struct hwt_record_entry *ent, int flags);
sys/dev/hwt/hwt_thread.c
89
hwt_thread_lookup(struct hwt_context *ctx, struct thread *td)
sys/dev/hwt/hwt_thread.h
38
struct thread *td;
sys/dev/hwt/hwt_thread.h
58
struct thread *td);
sys/dev/hwt/hwt_vm.c
178
hwt_vm_open(struct cdev *cdev, int oflags, int devtype, struct thread *td)
sys/dev/hwt/hwt_vm.c
228
struct thread *td)
sys/dev/hyperv/hvsock/hv_sock.c
346
hvs_trans_attach(struct socket *so, int proto, struct thread *td)
sys/dev/hyperv/hvsock/hv_sock.c
397
hvs_trans_bind(struct socket *so, struct sockaddr *addr, struct thread *td)
sys/dev/hyperv/hvsock/hv_sock.c
449
hvs_trans_listen(struct socket *so, int backlog, struct thread *td)
sys/dev/hyperv/hvsock/hv_sock.c
497
hvs_trans_connect(struct socket *so, struct sockaddr *nam, struct thread *td)
sys/dev/hyperv/hvsock/hv_sock.c
783
struct mbuf *top, struct mbuf *controlp, int flags, struct thread *td)
sys/dev/hyperv/hvsock/hv_sock.h
100
int hvs_trans_attach(struct socket *, int, struct thread *);
sys/dev/hyperv/hvsock/hv_sock.h
101
int hvs_trans_bind(struct socket *, struct sockaddr *, struct thread *);
sys/dev/hyperv/hvsock/hv_sock.h
102
int hvs_trans_listen(struct socket *, int, struct thread *);
sys/dev/hyperv/hvsock/hv_sock.h
105
struct sockaddr *, struct thread *);
sys/dev/hyperv/hvsock/hv_sock.h
111
struct mbuf *, struct mbuf *, int, struct thread *);
sys/dev/hyperv/utilities/hv_kvp.c
694
struct thread *td)
sys/dev/hyperv/utilities/hv_kvp.c
711
struct thread *td __unused)
sys/dev/hyperv/utilities/hv_kvp.c
820
hv_kvp_dev_daemon_poll(struct cdev *dev, int events, struct thread *td)
sys/dev/hyperv/utilities/hv_snapshot.c
525
hv_vss_dev_open(struct cdev *dev, int oflags, int devtype, struct thread *td)
sys/dev/hyperv/utilities/hv_snapshot.c
546
struct thread *td)
sys/dev/hyperv/utilities/hv_snapshot.c
561
struct thread *td)
sys/dev/hyperv/utilities/hv_snapshot.c
588
hv_vss_dev_daemon_poll(struct cdev *dev, int events, struct thread *td)
sys/dev/hyperv/utilities/hv_snapshot.c
607
hv_appvss_dev_open(struct cdev *dev, int oflags, int devtype, struct thread *td)
sys/dev/hyperv/utilities/hv_snapshot.c
626
struct thread *td)
sys/dev/hyperv/utilities/hv_snapshot.c
641
struct thread *td)
sys/dev/hyperv/utilities/hv_snapshot.c
668
hv_appvss_dev_poll(struct cdev *dev, int events, struct thread *td)
sys/dev/hyperv/vmbus/amd64/hyperv_machdep.c
95
struct thread *td __unused)
sys/dev/hyperv/vmbus/vmbus_et.c
113
struct thread *td;
sys/dev/ida/ida.c
743
ida_ioctl (struct cdev *dev, u_long cmd, caddr_t addr, int32_t flag, struct thread *td)
sys/dev/iicbus/iic.c
104
int flags, struct thread *td);
sys/dev/iicbus/iic.c
190
iicopen(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/dev/iicbus/iic.c
439
struct thread *td)
sys/dev/iicbus/iic.c
459
iicioctl(struct cdev *dev, u_long cmd, caddr_t data, int flags, struct thread *td)
sys/dev/iicbus/iic.h
37
struct thread;
sys/dev/iicbus/iic.h
39
int flags, struct thread *td);
sys/dev/io/iodev.c
44
struct thread *td);
sys/dev/io/iodev.c
46
struct thread *td);
sys/dev/io/iodev.c
48
int fflag, struct thread *td);
sys/dev/io/iodev.c
66
struct thread *td)
sys/dev/io/iodev.c
84
struct thread *td)
sys/dev/io/iodev.c
93
int fflag __unused, struct thread *td __unused)
sys/dev/ioat/ioat_test.c
503
ioat_test_open(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/dev/ioat/ioat_test.c
510
ioat_test_close(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/dev/ioat/ioat_test.c
518
struct thread *td)
sys/dev/ipmi/ipmi.c
125
ipmi_open(struct cdev *cdev, int flags, int fmt, struct thread *td)
sys/dev/ipmi/ipmi.c
155
ipmi_poll(struct cdev *cdev, int poll_events, struct thread *td)
sys/dev/ipmi/ipmi.c
260
int flags, struct thread *td)
sys/dev/ipmi/ipmi_linux.c
82
ipmi_linux_ioctl(struct thread *td, struct linux_ioctl_args *args)
sys/dev/ips/ips.c
76
static int ips_open(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/dev/ips/ips.c
85
static int ips_close(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/dev/ips/ips.c
96
static int ips_ioctl(struct cdev *dev, u_long command, caddr_t addr, int32_t flags, struct thread *td)
sys/dev/iscsi/iscsi.c
170
int mode, struct thread *td);
sys/dev/iscsi/iscsi.c
2235
struct thread *td)
sys/dev/ismt/ismt.c
150
struct thread *bus_reserved;
sys/dev/isp/isp_freebsd.c
372
ispioctl(struct cdev *dev, u_long c, caddr_t addr, int flags, struct thread *td)
sys/dev/iwn/if_iwn.c
5151
iwn_cdev_open(struct cdev *dev, int flags, int type, struct thread *td)
sys/dev/iwn/if_iwn.c
5158
iwn_cdev_close(struct cdev *dev, int flags, int type, struct thread *td)
sys/dev/iwn/if_iwn.c
5166
struct thread *td)
sys/dev/kbd/kbd.c
1019
key_change_ok(struct keyent_t *oldkey, struct keyent_t *newkey, struct thread *td)
sys/dev/kbd/kbd.c
1057
keymap_change_ok(keymap_t *oldmap, keymap_t *newmap, struct thread *td)
sys/dev/kbd/kbd.c
1070
accent_change_ok(accentmap_t *oldmap, accentmap_t *newmap, struct thread *td)
sys/dev/kbd/kbd.c
1100
fkey_change_ok(fkeytab_t *oldkey, fkeyarg_t *newkey, struct thread *td)
sys/dev/kbd/kbd.c
527
genkbdopen(struct cdev *dev, int mode, int flag, struct thread *td)
sys/dev/kbd/kbd.c
558
genkbdclose(struct cdev *dev, int mode, int flag, struct thread *td)
sys/dev/kbd/kbd.c
637
genkbdioctl(struct cdev *dev, u_long cmd, caddr_t arg, int flag, struct thread *td)
sys/dev/kbd/kbd.c
652
genkbdpoll(struct cdev *dev, int events, struct thread *td)
sys/dev/kbd/kbd.c
780
static int key_change_ok(struct keyent_t *, struct keyent_t *, struct thread *);
sys/dev/kbd/kbd.c
781
static int keymap_change_ok(keymap_t *, keymap_t *, struct thread *);
sys/dev/kbd/kbd.c
782
static int accent_change_ok(accentmap_t *, accentmap_t *, struct thread *);
sys/dev/kbd/kbd.c
783
static int fkey_change_ok(fkeytab_t *, fkeyarg_t *, struct thread *);
sys/dev/ksyms/ksyms.c
404
ksyms_open(struct cdev *dev, int flags, int fmt __unused, struct thread *td)
sys/dev/md/md.c
1440
mdcreate_vnode(struct md_s *sc, struct md_req *mdr, struct thread *td)
sys/dev/md/md.c
1535
mddestroy(struct md_s *sc, struct thread *td)
sys/dev/md/md.c
1655
mdcreate_swap(struct md_s *sc, struct md_req *mdr, struct thread *td)
sys/dev/md/md.c
1701
mdcreate_null(struct md_s *sc, struct md_req *mdr, struct thread *td)
sys/dev/md/md.c
1715
kern_mdattach_locked(struct thread *td, struct md_req *mdr)
sys/dev/md/md.c
1796
kern_mdattach(struct thread *td, struct md_req *mdr)
sys/dev/md/md.c
1807
kern_mddetach_locked(struct thread *td, struct md_req *mdr)
sys/dev/md/md.c
1827
kern_mddetach(struct thread *td, struct md_req *mdr)
sys/dev/md/md.c
1940
struct thread *td)
sys/dev/md/md.c
903
struct thread *td;
sys/dev/mem/memdev.c
75
struct thread *td)
sys/dev/mem/memdev.c
93
struct thread *td)
sys/dev/mfi/mfi.c
110
static int mfi_linux_ioctl_int(struct cdev *, u_long, caddr_t, int, struct thread *);
sys/dev/mfi/mfi.c
2692
mfi_open(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/dev/mfi/mfi.c
2712
mfi_close(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/dev/mfi/mfi.c
3088
mfi_ioctl(struct cdev *dev, u_long cmd, caddr_t arg, int flag, struct thread *td)
sys/dev/mfi/mfi.c
3463
mfi_linux_ioctl_int(struct cdev *dev, u_long cmd, caddr_t arg, int flag, struct thread *td)
sys/dev/mfi/mfi.c
3659
mfi_poll(struct cdev *dev, int poll_events, struct thread *td)
sys/dev/mfi/mfi_linux.c
76
mfi_linux_ioctl(struct thread *p, struct linux_ioctl_args *args)
sys/dev/mlx/mlx.c
749
mlx_open(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/dev/mlx/mlx.c
765
mlx_close(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/dev/mlx/mlx.c
781
mlx_ioctl(struct cdev *dev, u_long cmd, caddr_t addr, int32_t flag, struct thread *td)
sys/dev/mlx/mlx.c
992
caddr_t addr, int32_t flag, struct thread *td)
sys/dev/mlx/mlx_disk.c
119
mlxd_ioctl(struct disk *dp, u_long cmd, void *addr, int flag, struct thread *td)
sys/dev/mlx/mlxvar.h
227
caddr_t addr, int32_t flag, struct thread *td);
sys/dev/mlx4/mlx4_en/mlx4_en_rx.c
902
struct thread *td;
sys/dev/mlx5/mlx5_core/mlx5_fwdump.c
402
struct thread *td)
sys/dev/mlx5/mlx5_en/mlx5_en_rl.c
595
struct thread *td;
sys/dev/mlx5/mlx5_en/mlx5_en_rl.c
983
struct thread *rl_thread = NULL;
sys/dev/mlx5/mlx5_fpga_tools/mlx5fpga_tools_char.c
196
struct thread *td)
sys/dev/mlx5/mlx5_fpga_tools/mlx5fpga_tools_char.c
54
tools_char_open(struct cdev *dev, int oflags, int devtype, struct thread *td)
sys/dev/mmc/mmcsd.c
171
int fflag, struct thread *td);
sys/dev/mmc/mmcsd.c
177
int fflag, struct thread *td);
sys/dev/mmc/mmcsd.c
186
int fflag, struct thread *td);
sys/dev/mmc/mmcsd.c
812
int fflag, struct thread *td)
sys/dev/mmc/mmcsd.c
820
struct thread *td)
sys/dev/mmc/mmcsd.c
828
struct thread *td)
sys/dev/mpi3mr/mpi3mr_app.c
135
mpi3mr_poll(struct cdev *dev, int poll_events, struct thread *td)
sys/dev/mpi3mr/mpi3mr_app.c
2143
void *uarg, int flag, struct thread *td)
sys/dev/mpi3mr/mpi3mr_app.c
2204
mpi3mr_ioctl(struct cdev *dev, u_long cmd, caddr_t arg, int flag, struct thread *td)
sys/dev/mpi3mr/mpi3mr_app.c
70
mpi3mr_open(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/dev/mpi3mr/mpi3mr_app.c
77
mpi3mr_close(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/dev/mpi3mr/mpi3mr_app.c
781
int flag, struct thread *td)
sys/dev/mpr/mpr_user.c
218
mpr_open(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/dev/mpr/mpr_user.c
225
mpr_close(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/dev/mpr/mpr_user.c
2258
struct thread *td)
sys/dev/mpr/mpr_user.c
2490
struct thread *td)
sys/dev/mpr/mpr_user.c
2620
struct thread *td)
sys/dev/mps/mps_user.c
204
mps_open(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/dev/mps/mps_user.c
211
mps_close(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/dev/mps/mps_user.c
2146
struct thread *td)
sys/dev/mps/mps_user.c
2377
struct thread *td)
sys/dev/mps/mps_user.c
2507
struct thread *td)
sys/dev/mpt/mpt_user.c
180
mpt_open(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/dev/mpt/mpt_user.c
187
mpt_close(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/dev/mpt/mpt_user.c
592
mpt_ioctl(struct cdev *dev, u_long cmd, caddr_t arg, int flag, struct thread *td)
sys/dev/mrsas/mrsas.c
1438
struct thread *td)
sys/dev/mrsas/mrsas.c
1533
mrsas_poll(struct cdev *dev, int poll_events, struct thread *td)
sys/dev/mrsas/mrsas.c
232
mrsas_open(struct cdev *dev, int oflags, int devtype, struct thread *td)
sys/dev/mrsas/mrsas.c
239
mrsas_close(struct cdev *dev, int fflag, int devtype, struct thread *td)
sys/dev/mrsas/mrsas_linux.c
94
mrsas_linux_ioctl(struct thread *p, struct linux_ioctl_args *args)
sys/dev/netmap/netmap.c
2741
struct thread *td, int nr_body_is_user)
sys/dev/netmap/netmap_freebsd.c
1113
netmap_close(struct cdev *dev, int fflag, int devtype, struct thread *td)
sys/dev/netmap/netmap_freebsd.c
1123
netmap_open(struct cdev *dev, int oflags, int devtype, struct thread *td)
sys/dev/netmap/netmap_freebsd.c
1158
struct thread *user_td;
sys/dev/netmap/netmap_freebsd.c
1171
struct thread *worker;
sys/dev/netmap/netmap_freebsd.c
1339
nm_os_selrecord(struct thread *td, struct nm_selinfo *si)
sys/dev/netmap/netmap_freebsd.c
1482
freebsd_netmap_poll(struct cdev *cdevi __unused, int events, struct thread *td)
sys/dev/netmap/netmap_freebsd.c
1493
int ffla __unused, struct thread *td)
sys/dev/netmap/netmap_kern.h
101
#define NM_SELRECORD_T struct thread
sys/dev/netmap/netmap_kern.h
1612
struct thread *, int nr_body_is_user);
sys/dev/netmap/netmap_kern.h
1614
struct thread *td);
sys/dev/netmap/netmap_legacy.c
361
struct thread *td)
sys/dev/ntsync/linux_ntsync.c
124
linux_ntsync_cdev_ioctl(struct thread *td, u_long cmd, void *data,
sys/dev/ntsync/linux_ntsync.c
156
linux_ntsync_ioctl(struct thread *td, struct linux_ioctl_args *args)
sys/dev/ntsync/ntsync.c
1014
ntsync_event_read(struct thread *td, struct file *fp,
sys/dev/ntsync/ntsync.c
1036
struct ucred *active_cred, struct thread *td)
sys/dev/ntsync/ntsync.c
1120
struct thread *td)
sys/dev/ntsync/ntsync.c
1162
ntsync_open(struct cdev *dev, int oflags, int devtype, struct thread *td)
sys/dev/ntsync/ntsync.c
1175
ntsync_close(struct cdev *dev, int fflag, int devtype, struct thread *td)
sys/dev/ntsync/ntsync.c
1195
struct thread *td)
sys/dev/ntsync/ntsync.c
1306
ntsync_wait_state_put(struct ntsync_wait_state *state, struct thread *td)
sys/dev/ntsync/ntsync.c
1319
struct thread *td)
sys/dev/ntsync/ntsync.c
207
ntsync_wait_locked(struct ntsync_wait_state *state, struct thread *td)
sys/dev/ntsync/ntsync.c
243
ntsync_wait(struct ntsync_wait_state *state, struct thread *td)
sys/dev/ntsync/ntsync.c
271
struct ntsync_priv *priv, struct thread *td)
sys/dev/ntsync/ntsync.c
313
ntsync_close_obj(struct ntsync_obj *obj, struct thread *td)
sys/dev/ntsync/ntsync.c
38
ntsync_ioctl_copyout(struct thread *td, const void *ptr, size_t sz)
sys/dev/ntsync/ntsync.c
386
ntsync_sem_close(struct file *fp, struct thread *td)
sys/dev/ntsync/ntsync.c
397
ntsync_sem_release(struct thread *td, struct file *fp, uint32_t *val)
sys/dev/ntsync/ntsync.c
428
ntsync_sem_read(struct thread *td, struct file *fp, struct ntsync_sem_args *a)
sys/dev/ntsync/ntsync.c
447
struct ucred *active_cred, struct thread *td)
sys/dev/ntsync/ntsync.c
523
struct thread *td)
sys/dev/ntsync/ntsync.c
638
ntsync_mutex_close(struct file *fp, struct thread *td)
sys/dev/ntsync/ntsync.c
649
ntsync_mutex_unlock(struct thread *td, struct file *fp,
sys/dev/ntsync/ntsync.c
685
ntsync_mutex_kill(struct thread *td, struct file *fp, uint32_t val)
sys/dev/ntsync/ntsync.c
715
ntsync_mutex_read(struct thread *td, struct file *fp,
sys/dev/ntsync/ntsync.c
742
struct ucred *active_cred, struct thread *td)
sys/dev/ntsync/ntsync.c
831
struct thread *td)
sys/dev/ntsync/ntsync.c
929
ntsync_event_close(struct file *fp, struct thread *td)
sys/dev/ntsync/ntsync.c
940
ntsync_event_set(struct thread *td, struct file *fp, uint32_t *val)
sys/dev/ntsync/ntsync.c
964
ntsync_event_reset(struct thread *td, struct file *fp, uint32_t *val)
sys/dev/ntsync/ntsync.c
987
ntsync_event_pulse(struct thread *td, struct file *fp, uint32_t *val)
sys/dev/ntsync/ntsyncvar.h
105
struct thread;
sys/dev/ntsync/ntsyncvar.h
106
int ntsync_sem_release(struct thread *td, struct file *fp, uint32_t *val);
sys/dev/ntsync/ntsyncvar.h
107
int ntsync_sem_read(struct thread *td, struct file *fp,
sys/dev/ntsync/ntsyncvar.h
109
int ntsync_mutex_unlock(struct thread *td, struct file *fp,
sys/dev/ntsync/ntsyncvar.h
111
int ntsync_mutex_kill(struct thread *td, struct file *fp, uint32_t val);
sys/dev/ntsync/ntsyncvar.h
112
int ntsync_mutex_read(struct thread *td, struct file *fp,
sys/dev/ntsync/ntsyncvar.h
114
int ntsync_event_set(struct thread *td, struct file *fp, uint32_t *val);
sys/dev/ntsync/ntsyncvar.h
115
int ntsync_event_reset(struct thread *td, struct file *fp, uint32_t *val);
sys/dev/ntsync/ntsyncvar.h
116
int ntsync_event_pulse(struct thread *td, struct file *fp, uint32_t *val);
sys/dev/ntsync/ntsyncvar.h
117
int ntsync_event_read(struct thread *td, struct file *fp,
sys/dev/null/null.c
122
int flags __unused, struct thread *td)
sys/dev/null/null.c
149
int flags __unused, struct thread *td)
sys/dev/nvd/nvd.c
276
struct thread *td)
sys/dev/nvdimm/nvdimm_spa.c
242
struct thread *td)
sys/dev/nvme/nvme.h
1912
struct thread;
sys/dev/nvme/nvme.h
2017
caddr_t arg, int flag, struct thread *td);
sys/dev/nvme/nvme_ctrlr.c
1585
struct thread *td)
sys/dev/nvme/nvme_ns.c
123
struct thread *td)
sys/dev/nvme/nvme_ns.c
135
struct thread *td)
sys/dev/nvme/nvme_ns.c
513
int flag, struct thread *td)
sys/dev/nvme/nvme_ns.c
65
struct thread *td)
sys/dev/nvmf/controller/ctl_frontend_nvmf.c
1178
struct thread *td)
sys/dev/nvmf/controller/ctl_frontend_nvmf.c
51
int flag, struct thread *td);
sys/dev/nvmf/host/nvmf.c
1217
struct thread *td)
sys/dev/nvmf/host/nvmf_ctldev.c
117
struct thread *td)
sys/dev/nvmf/host/nvmf_ns.c
264
struct thread *td)
sys/dev/nvmf/host/nvmf_ns.c
296
nvmf_ns_open(struct cdev *dev, int oflags, int devtype, struct thread *td)
sys/dev/nvmf/nvmf_tcp.c
84
struct thread *rx_thread;
sys/dev/nvmf/nvmf_tcp.c
89
struct thread *tx_thread;
sys/dev/nvram/nvram.c
80
struct thread *td)
sys/dev/ocs_fc/ocs_ioctl.c
356
ocs_ioctl(struct cdev *cdev, u_long cmd, caddr_t addr, int flag, struct thread *td)
sys/dev/ocs_fc/ocs_ioctl.c
59
ocs_open(struct cdev *cdev, int flags, int fmt, struct thread *td)
sys/dev/ocs_fc/ocs_ioctl.c
65
ocs_close(struct cdev *cdev, int flag, int fmt, struct thread *td)
sys/dev/ocs_fc/ocs_os.c
603
ocs_thread_t *thread = arg;
sys/dev/ocs_fc/ocs_os.c
604
thread->retval = (*thread->fctn)(thread->arg);
sys/dev/ocs_fc/ocs_os.c
605
ocs_free(NULL, thread->name, ocs_strlen(thread->name+1));
sys/dev/ocs_fc/ocs_os.c
627
ocs_thread_create(ocs_os_handle_t os, ocs_thread_t *thread, ocs_thread_fctn fctn, const char *name, void *arg, ocs_thread_start_e start)
sys/dev/ocs_fc/ocs_os.c
631
ocs_memset(thread, 0, sizeof(*thread));
sys/dev/ocs_fc/ocs_os.c
633
thread->fctn = fctn;
sys/dev/ocs_fc/ocs_os.c
634
thread->name = ocs_strdup(name);
sys/dev/ocs_fc/ocs_os.c
635
if (thread->name == NULL) {
sys/dev/ocs_fc/ocs_os.c
636
thread->name = "unknown";
sys/dev/ocs_fc/ocs_os.c
638
thread->arg = arg;
sys/dev/ocs_fc/ocs_os.c
640
ocs_atomic_set(&thread->terminate, 0);
sys/dev/ocs_fc/ocs_os.c
642
rc = kthread_add(ocs_thread_call_fctn, thread, NULL, &thread->tcb, (start == OCS_THREAD_CREATE) ? RFSTOPPED : 0,
sys/dev/ocs_fc/ocs_os.c
658
int32_t ocs_thread_start(ocs_thread_t *thread)
sys/dev/ocs_fc/ocs_os.c
661
thread_lock(thread->tcb);
sys/dev/ocs_fc/ocs_os.c
662
sched_add(thread->tcb, SRQ_BORING);
sys/dev/ocs_fc/ocs_os.c
693
ocs_thread_terminate(ocs_thread_t *thread)
sys/dev/ocs_fc/ocs_os.c
695
ocs_atomic_set(&thread->terminate, 1);
sys/dev/ocs_fc/ocs_os.c
708
int32_t ocs_thread_terminate_requested(ocs_thread_t *thread)
sys/dev/ocs_fc/ocs_os.c
710
return ocs_atomic_read(&thread->terminate);
sys/dev/ocs_fc/ocs_os.c
724
ocs_thread_get_retval(ocs_thread_t *thread)
sys/dev/ocs_fc/ocs_os.c
726
return thread->retval;
sys/dev/ocs_fc/ocs_os.c
740
ocs_thread_yield(ocs_thread_t *thread) {
sys/dev/ocs_fc/ocs_os.c
752
ocs_thread_setcpu(ocs_thread_t *thread, uint32_t cpu)
sys/dev/ocs_fc/ocs_os.h
1000
extern int32_t ocs_thread_start(ocs_thread_t *thread);
sys/dev/ocs_fc/ocs_os.h
1002
extern int32_t ocs_thread_terminate(ocs_thread_t *thread);
sys/dev/ocs_fc/ocs_os.h
1003
extern int32_t ocs_thread_terminate_requested(ocs_thread_t *thread);
sys/dev/ocs_fc/ocs_os.h
1004
extern int32_t ocs_thread_get_retval(ocs_thread_t *thread);
sys/dev/ocs_fc/ocs_os.h
1005
extern void ocs_thread_yield(ocs_thread_t *thread);
sys/dev/ocs_fc/ocs_os.h
1007
extern int32_t ocs_thread_setcpu(ocs_thread_t *thread, uint32_t cpu);
sys/dev/ocs_fc/ocs_os.h
978
struct thread *tcb; /*<< thread control block */
sys/dev/ocs_fc/ocs_os.h
998
extern int32_t ocs_thread_create(ocs_os_handle_t os, ocs_thread_t *thread, ocs_thread_fctn fctn,
sys/dev/ocs_fc/ocs_unsol.c
89
ocs_thread_yield(&thread_data->thread);
sys/dev/ocs_fc/ocs_unsol.c
98
ocs_thread_yield(&thread_data->thread);
sys/dev/ocs_fc/ocs_xport.c
100
ocs_thread_terminate(&xport->rq_thread_info[i].thread);
sys/dev/ocs_fc/ocs_xport.c
158
rc = ocs_thread_create(ocs, &xport->rq_thread_info[i].thread, ocs_unsol_rq_thread,
sys/dev/ocs_fc/ocs_xport.h
57
ocs_thread_t thread;
sys/dev/ofw/openfirmio.c
108
struct thread *td)
sys/dev/pbio/pbio.c
244
struct thread *td)
sys/dev/pbio/pbio.c
280
pbioopen(struct cdev *dev, int oflags, int devtype, struct thread *td)
sys/dev/pbio/pbio.c
428
pbiopoll(struct cdev *dev, int which, struct thread *td)
sys/dev/pci/pci_iov.c
1030
struct thread *td)
sys/dev/pci/pci_user.c
1112
pci_ioctl(struct cdev *dev, u_long cmd, caddr_t data, int flag, struct thread *td)
sys/dev/pci/pci_user.c
132
pci_open(struct cdev *dev, int oflags, int devtype, struct thread *td)
sys/dev/pci/pci_user.c
146
pci_close(struct cdev *dev, int flag, int devtype, struct thread *td)
sys/dev/pci/pci_user.c
953
struct thread *td;
sys/dev/pms/freebsd/driver/ini/src/agtiapi.c
247
int agtiapi_open( struct cdev *dev, int oflags, int devtype, struct thread *td )
sys/dev/pms/freebsd/driver/ini/src/agtiapi.c
257
int agtiapi_close( struct cdev *dev, int fflag, int devtype, struct thread *td )
sys/dev/pms/freebsd/driver/ini/src/agtiapi.c
522
struct thread *td )
sys/dev/powermac_nvram/powermac_nvram.c
203
powermac_nvram_open(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/dev/powermac_nvram/powermac_nvram.c
221
powermac_nvram_close(struct cdev *dev, int fflag, int devtype, struct thread *td)
sys/dev/ppbus/lpt.c
479
lptopen(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/dev/ppbus/lpt.c
601
lptclose(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/dev/ppbus/lpt.c
913
lptioctl(struct cdev *dev, u_long cmd, caddr_t data, int flags, struct thread *td)
sys/dev/ppbus/pcfclock.c
148
pcfclock_open(struct cdev *dev, int flag, int fms, struct thread *td)
sys/dev/ppbus/pcfclock.c
168
pcfclock_close(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/dev/ppbus/ppi.c
285
ppiopen(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/dev/ppbus/ppi.c
311
ppiclose(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/dev/ppbus/ppi.c
541
ppiioctl(struct cdev *dev, u_long cmd, caddr_t data, int flags, struct thread *td)
sys/dev/ppbus/pps.c
209
ppsopen(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/dev/ppbus/pps.c
250
ppsclose(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/dev/ppbus/pps.c
318
ppsioctl(struct cdev *dev, u_long cmd, caddr_t data, int flags, struct thread *td)
sys/dev/proto/proto_busdma.c
277
struct proto_ioc_busdma *ioc, struct thread *td)
sys/dev/proto/proto_busdma.c
387
struct proto_ioc_busdma *ioc, struct thread *td)
sys/dev/proto/proto_busdma.h
70
struct proto_ioc_busdma *, struct thread *);
sys/dev/proto/proto_core.c
280
proto_open(struct cdev *cdev, int oflags, int devtype, struct thread *td)
sys/dev/proto/proto_core.c
303
proto_close(struct cdev *cdev, int fflag, int devtype, struct thread *td)
sys/dev/proto/proto_core.c
448
struct thread *td)
sys/dev/pty/pty.c
128
ptmx_fdopen(struct cdev *dev __unused, int fflags, struct thread *td,
sys/dev/pty/pty.c
60
ptydev_fdopen(struct cdev *dev, int fflags, struct thread *td, struct file *fp)
sys/dev/pwm/pwmc.c
66
int fflag, struct thread *td)
sys/dev/qat/qat_common/adf_cfg_device.c
371
int engine, thread, service, bits;
sys/dev/qat/qat_common/adf_cfg_device.c
383
for (thread = 0; thread < ADF_NUM_THREADS_PER_AE; thread++) {
sys/dev/qat/qat_common/adf_ctl_drv.c
404
struct thread *td)
sys/dev/qat/qat_common/adf_freebsd_dev_processes.c
129
adf_processes_open(struct cdev *dev, int oflags, int devtype, struct thread *td)
sys/dev/qat/qat_common/adf_freebsd_dev_processes.c
556
adf_state_open(struct cdev *dev, int oflags, int devtype, struct thread *td)
sys/dev/qat/qat_common/adf_freebsd_uio.c
227
struct thread *td)
sys/dev/qat/qat_hw/qat_4xxx/adf_4xxx_hw_data.c
837
int thread = 0;
sys/dev/qat/qat_hw/qat_4xxx/adf_4xxx_hw_data.c
876
for_each_set_bit(thread, &thd_srv_mask, 8)
sys/dev/qat/qat_hw/qat_4xxx/adf_4xxx_hw_data.c
879
(service_mask << (ADF_CFG_MAX_SERVICES * thread));
sys/dev/qlnx/qlnxe/qlnx_ioctl.c
67
struct thread *td);
sys/dev/qlnx/qlnxe/qlnx_ioctl.c
990
struct thread *td)
sys/dev/qlxgb/qla_glbl.h
107
struct thread *td);
sys/dev/qlxgb/qla_ioctl.c
79
struct thread *td)
sys/dev/qlxgbe/ql_ioctl.c
48
struct thread *td);
sys/dev/qlxgbe/ql_ioctl.c
85
struct thread *td)
sys/dev/qlxge/qls_ioctl.c
44
struct thread *td);
sys/dev/qlxge/qls_ioctl.c
81
struct thread *td)
sys/dev/random/randomdev.c
350
randomdev_poll(struct cdev *dev __unused, int events, struct thread *td __unused)
sys/dev/random/randomdev.c
379
int flags __unused, struct thread *td __unused)
sys/dev/sbni/if_sbni.c
1066
struct thread *td;
sys/dev/smartpqi/smartpqi_ioctl.c
142
int flags, struct thread *td)
sys/dev/smartpqi/smartpqi_ioctl.c
58
struct thread *td)
sys/dev/smartpqi/smartpqi_ioctl.c
68
struct thread *td)
sys/dev/smbus/smb.c
190
smbioctl(struct cdev *dev, u_long cmd, caddr_t data, int flags, struct thread *td)
sys/dev/snp/snp.c
137
snp_open(struct cdev *dev, int flag, int mode, struct thread *td)
sys/dev/snp/snp.c
239
struct thread *td)
sys/dev/snp/snp.c
315
snp_poll(struct cdev *dev, int events, struct thread *td)
sys/dev/sound/midi/midi.c
258
midi_open(struct cdev *i_dev, int flags, int mode, struct thread *td)
sys/dev/sound/midi/midi.c
310
midi_close(struct cdev *i_dev, int flags, int mode, struct thread *td)
sys/dev/sound/midi/midi.c
487
struct thread *td)
sys/dev/sound/midi/midi.c
493
midi_poll(struct cdev *i_dev, int events, struct thread *td)
sys/dev/sound/pci/emu10kx.c
2181
emu10kx_open(struct cdev *i_dev, int flags __unused, int mode __unused, struct thread *td __unused)
sys/dev/sound/pci/emu10kx.c
2210
emu10kx_close(struct cdev *i_dev, int flags __unused, int mode __unused, struct thread *td __unused)
sys/dev/sound/pcm/channel.c
823
chn_poll(struct pcm_channel *c, int ev, struct thread *td)
sys/dev/sound/pcm/channel.h
264
int chn_poll(struct pcm_channel *c, int ev, struct thread *td);
sys/dev/sound/pcm/dsp.c
168
int flags, struct thread *td)
sys/dev/sound/pcm/dsp.c
1846
dsp_poll(struct cdev *i_dev, int events, struct thread *td)
sys/dev/sound/pcm/dsp.c
349
dsp_open(struct cdev *i_dev, int flags, int mode, struct thread *td)
sys/dev/sound/pcm/dsp.c
694
struct thread *td)
sys/dev/sound/pcm/mixer.c
925
mixer_open(struct cdev *i_dev, int flags, int mode, struct thread *td)
sys/dev/sound/pcm/mixer.c
942
mixer_close(struct cdev *i_dev, int flags, int mode, struct thread *td)
sys/dev/sound/pcm/mixer.c
960
struct thread *td)
sys/dev/sound/pcm/mixer.c
998
struct thread *td)
sys/dev/sound/pcm/mixer.h
65
int mixer_ioctl_cmd(struct cdev *i_dev, u_long cmd, caddr_t arg, int mode, struct thread *td);
sys/dev/sound/sndstat.c
1049
struct cdev *dev, u_long cmd, caddr_t data, int fflag, struct thread *td)
sys/dev/sound/sndstat.c
145
sndstat_open(struct cdev *i_dev, int flags, int mode, struct thread *td)
sys/dev/speaker/spkr.c
420
spkropen(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/dev/speaker/spkr.c
483
spkrclose(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/dev/speaker/spkr.c
497
struct thread *td)
sys/dev/spibus/spigen.c
103
static int spigen_open(struct cdev *, int, int, struct thread *);
sys/dev/spibus/spigen.c
104
static int spigen_ioctl(struct cdev *, u_long, caddr_t, int, struct thread *);
sys/dev/spibus/spigen.c
105
static int spigen_close(struct cdev *, int, int, struct thread *);
sys/dev/spibus/spigen.c
164
spigen_open(struct cdev *cdev, int oflags, int devtype, struct thread *td)
sys/dev/spibus/spigen.c
250
struct thread *td)
sys/dev/spibus/spigen.c
348
spigen_close(struct cdev *cdev, int fflag, int devtype, struct thread *td)
sys/dev/superio/superio.c
1059
struct thread *td)
sys/dev/syscons/schistory.c
294
sc_hist_ioctl(struct tty *tp, u_long cmd, caddr_t data, struct thread *td)
sys/dev/syscons/scmouse.c
651
sc_mouse_ioctl(struct tty *tp, u_long cmd, caddr_t data, struct thread *td)
sys/dev/syscons/scterm-dumb.c
113
struct thread *td)
sys/dev/syscons/scterm-sc.c
705
struct thread *td)
sys/dev/syscons/scterm-teken.c
177
struct thread *td)
sys/dev/syscons/scvesactl.c
54
vesa_ioctl(struct tty *tp, u_long cmd, caddr_t data, struct thread *td)
sys/dev/syscons/scvidctl.c
475
sc_vid_ioctl(struct tty *tp, u_long cmd, caddr_t data, struct thread *td)
sys/dev/syscons/syscons.c
1695
struct cdev *dev, u_long cmd, caddr_t data, int fflag, struct thread *td)
sys/dev/syscons/syscons.c
1702
consolectl_close(struct cdev *dev, int flags, int mode, struct thread *td)
sys/dev/syscons/syscons.c
887
sctty_ioctl(struct tty *tp, u_long cmd, caddr_t data, struct thread *td)
sys/dev/syscons/syscons.h
377
caddr_t data, struct thread *td);
sys/dev/syscons/syscons.h
547
struct thread *td);
sys/dev/syscons/syscons.h
590
struct thread *td);
sys/dev/syscons/syscons.h
615
struct thread *td);
sys/dev/syscons/syscons.h
627
struct thread *td);
sys/dev/syscons/sysmouse.c
140
smdev_ioctl(struct tty *tp, u_long cmd, caddr_t data, struct thread *td)
sys/dev/tcp_log/tcp_log_dev.c
189
struct thread *td __unused)
sys/dev/tcp_log/tcp_log_dev.c
370
int fflag __unused, struct thread *td __unused)
sys/dev/tcp_log/tcp_log_dev.c
399
tcp_log_dev_poll(struct cdev *dev __unused, int events, struct thread *td)
sys/dev/tcp_log/tcp_log_dev.c
79
int devtype __unused, struct thread *td __unused);
sys/dev/tcp_log/tcp_log_dev.c
85
caddr_t data, int fflag __unused, struct thread *td __unused);
sys/dev/tcp_log/tcp_log_dev.c
87
struct thread *td);
sys/dev/tdfx/tdfx_linux.c
45
tdfx_linux_ioctl(struct thread *td, struct linux_ioctl_args* args)
sys/dev/tdfx/tdfx_pci.c
380
tdfx_open(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/dev/tdfx/tdfx_pci.c
397
tdfx_close(struct cdev *dev, int fflag, int devtype, struct thread *td)
sys/dev/tdfx/tdfx_pci.c
768
tdfx_ioctl(struct cdev *dev, u_long cmd, caddr_t data, int flag, struct thread *td)
sys/dev/thunderbolt/tb_dev.c
315
struct thread *td)
sys/dev/thunderbolt/tb_dev.c
83
static int tbdev_static_ioctl(struct cdev *dev, u_long cmd, caddr_t addr, int flag, struct thread *td);
sys/dev/ti/if_ti.c
3592
ti_open(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/dev/ti/if_ti.c
3608
ti_close(struct cdev *dev, int flag, int fmt, struct thread *td)
sys/dev/ti/if_ti.c
3628
struct thread *td)
sys/dev/tpm/tpm.c
1137
tpmopen(struct cdev *dev, int flag, int mode, struct thread *td)
sys/dev/tpm/tpm.c
1153
tpmclose(struct cdev *dev, int flag, int mode, struct thread *td)
sys/dev/tpm/tpm.c
1279
struct thread *td)
sys/dev/tpm/tpm20.c
150
tpm20_open(struct cdev *dev, int flag, int mode, struct thread *td)
sys/dev/tpm/tpm20.c
161
tpm20_close(struct cdev *dev, int flag, int mode, struct thread *td)
sys/dev/tpm/tpm20.c
169
int flags, struct thread *td)
sys/dev/tws/tws.c
111
tws_open(struct cdev *dev, int oflags, int devtype, struct thread *td)
sys/dev/tws/tws.c
121
tws_close(struct cdev *dev, int fflag, int devtype, struct thread *td)
sys/dev/tws/tws_user.c
43
struct thread *td);
sys/dev/tws/tws_user.c
61
struct thread *td)
sys/dev/uart/uart_tty.c
241
struct thread *td __unused)
sys/dev/usb/input/ukbd.c
168
struct thread *sc_poll_thread;
sys/dev/usb/quirk/usb_quirk.c
806
int fflag, struct thread *td)
sys/dev/usb/serial/udbc.c
113
struct thread *);
sys/dev/usb/serial/udbc.c
350
struct thread *td)
sys/dev/usb/serial/uftdi.c
1936
int flag, struct thread *td)
sys/dev/usb/serial/uftdi.c
206
struct thread *);
sys/dev/usb/serial/umodem.c
220
struct thread *);
sys/dev/usb/serial/umodem.c
643
int flag, struct thread *td)
sys/dev/usb/serial/usb_serial.c
947
ucom_ioctl(struct tty *tp, u_long cmd, caddr_t data, struct thread *td)
sys/dev/usb/serial/usb_serial.h
81
struct thread;
sys/dev/usb/serial/usb_serial.h
99
int (*ucom_ioctl) (struct ucom_softc *, uint32_t, caddr_t, int, struct thread *);
sys/dev/usb/serial/uslcom.c
172
struct thread *);
sys/dev/usb/serial/uslcom.c
747
int flag, struct thread *td)
sys/dev/usb/usb_dev.c
1006
struct thread *td)
sys/dev/usb/usb_dev.c
1053
usb_ioctl(struct cdev *dev, u_long cmd, caddr_t addr, int fflag, struct thread* td)
sys/dev/usb/usb_dev.c
1296
usb_poll(struct cdev* dev, int events, struct thread* td)
sys/dev/usb/usb_dev.c
1649
struct thread *td)
sys/dev/usb/usb_dev.c
869
usb_open(struct cdev *dev, int fflags, int devtype, struct thread *td)
sys/dev/usb/usb_dynamic.c
94
usb_quirk_ioctl_w(unsigned long cmd, caddr_t data, int fflag, struct thread *td)
sys/dev/usb/usb_dynamic.h
44
int fflag, struct thread *td);
sys/dev/usb/usb_process.c
92
struct thread *td;
sys/dev/usb/usb_process.h
58
struct thread *up_ptr;
sys/dev/usb/usb_process.h
59
struct thread *up_curtd;
sys/dev/usb/video/uvideo.c
2860
uvideo_cdev_open(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/dev/usb/video/uvideo.c
2896
uvideo_cdev_close(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/dev/usb/video/uvideo.c
3050
struct thread *td)
sys/dev/usb/video/uvideo.c
3118
uvideo_cdev_poll(struct cdev *dev, int events, struct thread *td)
sys/dev/veriexec/verified_exec.c
65
int flags, struct thread *td)
sys/dev/virtio/balloon/virtio_balloon.c
72
struct thread *vtballoon_td;
sys/dev/virtio/block/virtio_blk.c
152
struct thread *);
sys/dev/virtio/block/virtio_blk.c
633
struct thread *td)
sys/dev/vkbd/vkbd.c
200
vkbd_dev_open(struct cdev *dev, int flag, int mode, struct thread *td)
sys/dev/vkbd/vkbd.c
251
vkbd_dev_close(struct cdev *dev, int foo, int bar, struct thread *td)
sys/dev/vkbd/vkbd.c
435
vkbd_dev_ioctl(struct cdev *dev, u_long cmd, caddr_t data, int flag, struct thread *td)
sys/dev/vkbd/vkbd.c
444
vkbd_dev_poll(struct cdev *dev, int events, struct thread *td)
sys/dev/vmm/vmm_dev.c
1130
vmmctl_open(struct cdev *cdev, int flags, int fmt, struct thread *td)
sys/dev/vmm/vmm_dev.c
1155
struct thread *td)
sys/dev/vmm/vmm_dev.c
366
vmmdev_open(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/dev/vmm/vmm_dev.c
434
struct thread *td)
sys/dev/vmm/vmm_dev.h
20
struct thread;
sys/dev/vmm/vmm_dev.h
28
caddr_t data, int fflag, struct thread *td);
sys/dev/vmm/vmm_vm.c
63
struct thread *td;
sys/dev/vmm/vmm_vm.h
93
struct thread *td;
sys/dev/vt/hw/fb/vt_fb.c
107
vt_fb_ioctl(struct vt_device *vd, u_long cmd, caddr_t data, struct thread *td)
sys/dev/vt/vt.h
353
typedef int vd_fb_ioctl_t(struct vt_device *, u_long, caddr_t, struct thread *);
sys/dev/vt/vt_consolectl.c
48
struct thread *td)
sys/dev/vt/vt_core.c
2580
struct thread *td)
sys/dev/vt/vt_sysmouse.c
292
sysmouse_open(struct cdev *dev, int oflags, int devtype, struct thread *td)
sys/dev/vt/vt_sysmouse.c
312
sysmouse_close(struct cdev *dev, int fflag, int devtype, struct thread *td)
sys/dev/vt/vt_sysmouse.c
361
struct thread *td)
sys/dev/vt/vt_sysmouse.c
470
sysmouse_poll(struct cdev *dev, int events, struct thread *td)
sys/dev/watchdog/watchdog.c
230
wd_get_time_left(struct thread *td, time_t *remainp)
sys/dev/watchdog/watchdog.c
320
int flags __unused, struct thread *td)
sys/dev/wg/if_wg.c
3142
struct thread *td;
sys/dev/wtap/if_wtap.c
117
int fflag, struct thread *td)
sys/dev/wtap/if_wtap.c
66
wtap_node_open(struct cdev *dev, int oflags, int devtype, struct thread *p)
sys/dev/wtap/if_wtap.c
75
wtap_node_close(struct cdev *dev, int fflag, int devtype, struct thread *p)
sys/dev/wtap/if_wtap_module.c
74
int fflag, struct thread *td)
sys/dev/wtap/plugins/visibility.c
164
int fflag, struct thread *td)
sys/dev/xen/blkfront/blkfront.c
708
xbd_ioctl(struct disk *dp, u_long cmd, void *addr, int flag, struct thread *td)
sys/dev/xen/evtchn/evtchn_dev.c
182
evtchn_open(struct cdev *dev, int flag, int otyp, struct thread *td)
sys/dev/xen/evtchn/evtchn_dev.c
386
int mode, struct thread *td __unused)
sys/dev/xen/evtchn/evtchn_dev.c
526
evtchn_poll(struct cdev *dev, int events, struct thread *td)
sys/dev/xen/gntdev/gntdev.c
1003
int fflag, struct thread *td)
sys/dev/xen/gntdev/gntdev.c
727
struct thread *td)
sys/dev/xen/gntdev/gntdev.c
977
gntdev_open(struct cdev *dev, int flag, int otyp, struct thread *td)
sys/dev/xen/privcmd/privcmd.c
214
setup_virtual_area(struct thread *td, unsigned long addr, unsigned long num)
sys/dev/xen/privcmd/privcmd.c
249
int mode, struct thread *td)
sys/dev/xen/privcmd/privcmd.c
533
privcmd_open(struct cdev *dev, int flag, int otyp, struct thread *td)
sys/dev/xen/timer/xen_timer.c
324
struct thread *td = curthread;
sys/dev/xen/xenstore/xenstore_dev.c
392
xs_dev_poll(struct cdev *dev, int events, struct thread *td)
sys/dev/xen/xenstore/xenstore_dev.c
444
xs_dev_open(struct cdev *dev, int oflags, int devtype, struct thread *td)
sys/fs/autofs/autofs.c
221
autofs_ignore_thread(const struct thread *td)
sys/fs/autofs/autofs.c
646
autofs_open(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/fs/autofs/autofs.c
670
autofs_close(struct cdev *dev, int flag, int fmt, struct thread *td)
sys/fs/autofs/autofs.c
683
struct thread *td)
sys/fs/autofs/autofs.c
90
struct thread *td);
sys/fs/autofs/autofs.c
92
struct thread *td);
sys/fs/autofs/autofs.c
94
int mode, struct thread *td);
sys/fs/autofs/autofs.h
132
bool autofs_ignore_thread(const struct thread *td);
sys/fs/cd9660/cd9660_vfsops.c
133
struct thread *td;
sys/fs/cd9660/cd9660_vfsops.c
679
struct thread *td;
sys/fs/cuse/cuse.c
1101
caddr_t data, int fflag, struct thread *td)
sys/fs/cuse/cuse.c
116
struct thread *entered;
sys/fs/cuse/cuse.c
1392
cuse_server_poll(struct cdev *dev, int events, struct thread *td)
sys/fs/cuse/cuse.c
1484
cuse_client_open(struct cdev *dev, int fflags, int devtype, struct thread *td)
sys/fs/cuse/cuse.c
1585
cuse_client_close(struct cdev *dev, int fflag, int devtype, struct thread *td)
sys/fs/cuse/cuse.c
1824
caddr_t data, int fflag, struct thread *td)
sys/fs/cuse/cuse.c
1881
cuse_client_poll(struct cdev *dev, int events, struct thread *td)
sys/fs/cuse/cuse.c
374
cuse_server_find_command(struct cuse_server *pcs, struct thread *td)
sys/fs/cuse/cuse.c
783
cuse_server_open(struct cdev *dev, int fflags, int devtype, struct thread *td)
sys/fs/cuse/cuse.c
817
cuse_server_close(struct cdev *dev, int fflag, int devtype, struct thread *td)
sys/fs/cuse/cuse.c
896
struct thread *td;
sys/fs/devfs/devfs.h
189
struct thread *);
sys/fs/devfs/devfs_rule.c
160
devfs_rules_ioctl(struct devfs_mount *dm, u_long cmd, caddr_t data, struct thread *td)
sys/fs/devfs/devfs_vfsops.c
71
struct thread *td = curthread;
sys/fs/devfs/devfs_vnops.c
1010
struct thread *td;
sys/fs/devfs/devfs_vnops.c
1024
devfs_prison_check(struct devfs_dirent *de, struct thread *td)
sys/fs/devfs/devfs_vnops.c
1059
struct thread *td;
sys/fs/devfs/devfs_vnops.c
1283
struct thread *td = ap->a_td;
sys/fs/devfs/devfs_vnops.c
1409
devfs_poll_f(struct file *fp, int events, struct ucred *cred, struct thread *td)
sys/fs/devfs/devfs_vnops.c
1441
int flags, struct thread *td)
sys/fs/devfs/devfs_vnops.c
1781
struct thread *td;
sys/fs/devfs/devfs_vnops.c
1948
devfs_truncate_f(struct file *fp, off_t length, struct ucred *cred, struct thread *td)
sys/fs/devfs/devfs_vnops.c
1956
int flags, struct thread *td)
sys/fs/devfs/devfs_vnops.c
1995
struct thread *td)
sys/fs/devfs/devfs_vnops.c
2073
devfs_cmp_f(struct file *fp1, struct file *fp2, struct thread *td)
sys/fs/devfs/devfs_vnops.c
696
struct thread *td = ap->a_td;
sys/fs/devfs/devfs_vnops.c
788
devfs_close_f(struct file *fp, struct thread *td)
sys/fs/devfs/devfs_vnops.c
888
devfs_ioctl_f(struct file *fp, u_long com, void *data, struct ucred *cred, struct thread *td)
sys/fs/devfs/devfs_vnops.c
929
struct thread *td;
sys/fs/ext2fs/ext2_alloc.c
387
struct thread *td;
sys/fs/ext2fs/ext2_extents.c
1687
struct ucred *cred, struct thread *td)
sys/fs/ext2fs/ext2_extents.h
126
struct ucred *cred, struct thread *td);
sys/fs/ext2fs/ext2_extern.h
73
int ext2_truncate(struct vnode *, off_t, int, struct ucred *, struct thread *);
sys/fs/ext2fs/ext2_inode.c
226
struct thread *td)
sys/fs/ext2fs/ext2_inode.c
466
struct ucred *cred, struct thread *td)
sys/fs/ext2fs/ext2_inode.c
556
struct thread *td)
sys/fs/ext2fs/ext2_inode.c
600
struct thread *td = curthread;
sys/fs/ext2fs/ext2_lookup.c
1170
NOCRED, &count, (struct thread *)0);
sys/fs/ext2fs/ext2_lookup.c
891
auio.uio_td = (struct thread *)0;
sys/fs/ext2fs/ext2_vfsops.c
1054
ext2_flushfiles(struct mount *mp, int flags, struct thread *td)
sys/fs/ext2fs/ext2_vfsops.c
1123
struct thread *td;
sys/fs/ext2fs/ext2_vfsops.c
1201
struct thread *td;
sys/fs/ext2fs/ext2_vfsops.c
125
struct thread *td;
sys/fs/ext2fs/ext2_vfsops.c
734
ext2_reload(struct mount *mp, struct thread *td)
sys/fs/ext2fs/ext2_vfsops.c
78
static int ext2_flushfiles(struct mount *mp, int flags, struct thread *td);
sys/fs/ext2fs/ext2_vfsops.c
80
static int ext2_reload(struct mount *mp, struct thread *td);
sys/fs/ext2fs/ext2_vnops.c
105
static int ext2_chmod(struct vnode *, int, struct ucred *, struct thread *);
sys/fs/ext2fs/ext2_vnops.c
107
struct thread *);
sys/fs/ext2fs/ext2_vnops.c
1154
mode_t dmode, struct ucred *cred, struct thread *td)
sys/fs/ext2fs/ext2_vnops.c
1225
mode_t mode, struct ucred *cred, struct thread *td)
sys/fs/ext2fs/ext2_vnops.c
394
struct thread *td = curthread;
sys/fs/ext2fs/ext2_vnops.c
522
ext2_chmod(struct vnode *vp, int mode, struct ucred *cred, struct thread *td)
sys/fs/ext2fs/ext2_vnops.c
560
struct thread *td)
sys/fs/fdescfs/fdesc_vfsops.c
184
struct thread *td;
sys/fs/fdescfs/fdesc_vnops.c
249
struct thread *td;
sys/fs/fdescfs/fdesc_vnops.c
288
struct thread *td = curthread;
sys/fs/fdescfs/fdesc_vnops.c
482
struct thread *td = curthread;
sys/fs/fdescfs/fdesc_vnops.c
631
struct thread *td;
sys/fs/fifofs/fifo_vnops.c
130
struct thread *td;
sys/fs/fuse/fuse_device.c
262
fuse_device_open(struct cdev *dev, int oflags, int devtype, struct thread *td)
sys/fs/fuse/fuse_device.c
279
fuse_device_poll(struct cdev *dev, int events, struct thread *td)
sys/fs/fuse/fuse_file.c
122
struct fuse_filehandle **fufhp, struct thread *td, struct ucred *cred)
sys/fs/fuse/fuse_file.c
188
struct thread *td, struct ucred *cred)
sys/fs/fuse/fuse_file.c
355
struct fuse_filehandle **fufhp, struct thread *td, const struct ucred *cred,
sys/fs/fuse/fuse_file.h
211
struct fuse_filehandle **fufhp, struct thread *td,
sys/fs/fuse/fuse_file.h
215
struct fuse_filehandle **fufhp, struct thread *td,
sys/fs/fuse/fuse_file.h
218
struct thread *td, struct ucred *cred);
sys/fs/fuse/fuse_internal.c
1088
fuse_internal_send_init(struct fuse_data *data, struct thread *td)
sys/fs/fuse/fuse_internal.c
1138
struct thread *td, struct ucred *cred)
sys/fs/fuse/fuse_internal.c
1263
struct thread *td)
sys/fs/fuse/fuse_internal.c
127
struct thread *td = curthread;
sys/fs/fuse/fuse_internal.c
163
struct thread *td,
sys/fs/fuse/fuse_internal.c
368
struct thread *td,
sys/fs/fuse/fuse_internal.c
865
struct thread *td,
sys/fs/fuse/fuse_internal.c
892
struct ucred *cred, struct thread *td)
sys/fs/fuse/fuse_internal.c
952
struct thread *td)
sys/fs/fuse/fuse_internal.h
220
struct thread *td, struct ucred *cred);
sys/fs/fuse/fuse_internal.h
229
int fuse_internal_fsync(struct vnode *vp, struct thread *td, int waitfor,
sys/fs/fuse/fuse_internal.h
235
struct ucred *cred, struct thread *td);
sys/fs/fuse/fuse_internal.h
237
struct ucred *cred, struct thread *td);
sys/fs/fuse/fuse_internal.h
274
struct thread *td, struct ucred *cred);
sys/fs/fuse/fuse_internal.h
278
struct thread *td);
sys/fs/fuse/fuse_internal.h
316
void fuse_internal_forget_send(struct mount *mp, struct thread *td,
sys/fs/fuse/fuse_internal.h
322
void fuse_internal_send_init(struct fuse_data *data, struct thread *td);
sys/fs/fuse/fuse_io.c
925
fuse_io_flushbuf(struct vnode *vp, int waitfor, struct thread *td)
sys/fs/fuse/fuse_io.c
933
fuse_io_invalbuf(struct vnode *vp, struct thread *td)
sys/fs/fuse/fuse_io.h
67
int fuse_io_flushbuf(struct vnode *vp, int waitfor, struct thread *td);
sys/fs/fuse/fuse_io.h
68
int fuse_io_invalbuf(struct vnode *vp, struct thread *td);
sys/fs/fuse/fuse_ipc.c
409
struct thread *td = curthread;
sys/fs/fuse/fuse_ipc.c
939
uint64_t nid, struct thread *td, struct ucred *cred)
sys/fs/fuse/fuse_ipc.c
949
struct vnode *vp, struct thread *td, struct ucred *cred)
sys/fs/fuse/fuse_ipc.c
962
struct vnode *vp, struct thread *td, struct ucred *cred)
sys/fs/fuse/fuse_ipc.h
446
struct mount *mp, uint64_t nid, struct thread *td, struct ucred *cred);
sys/fs/fuse/fuse_ipc.h
449
struct vnode *vp, struct thread *td, struct ucred *cred);
sys/fs/fuse/fuse_ipc.h
452
struct vnode *vp, struct thread *td, struct ucred *cred);
sys/fs/fuse/fuse_ipc.h
458
struct vnode *vp, struct thread *td, struct ucred *cred)
sys/fs/fuse/fuse_node.c
204
struct thread *td,
sys/fs/fuse/fuse_node.c
302
struct thread *td = curthread;
sys/fs/fuse/fuse_node.c
376
fuse_vnode_open(struct vnode *vp, int32_t fuse_open_flags, struct thread *td)
sys/fs/fuse/fuse_node.c
386
struct thread *td = curthread;
sys/fs/fuse/fuse_node.c
527
struct thread *td)
sys/fs/fuse/fuse_node.h
262
struct thread *td);
sys/fs/fuse/fuse_node.h
271
struct thread *td);
sys/fs/fuse/fuse_vfsops.c
139
fuse_getdevice(const char *fspec, struct thread *td, struct cdev **fdevp)
sys/fs/fuse/fuse_vfsops.c
217
fuse_vfs_remount(struct mount *mp, struct thread *td, uint64_t mntopts,
sys/fs/fuse/fuse_vfsops.c
308
struct thread *td;
sys/fs/fuse/fuse_vfsops.c
488
struct thread *td = curthread;
sys/fs/fuse/fuse_vfsops.c
547
struct thread *td = curthread;
sys/fs/fuse/fuse_vnops.c
1091
struct thread *td,
sys/fs/fuse/fuse_vnops.c
1123
struct thread *td = curthread;
sys/fs/fuse/fuse_vnops.c
1277
struct thread *td = ap->a_td;
sys/fs/fuse/fuse_vnops.c
1303
struct thread *td = ap->a_td;
sys/fs/fuse/fuse_vnops.c
1330
struct thread *td = curthread;
sys/fs/fuse/fuse_vnops.c
1356
struct thread *td = curthread;
sys/fs/fuse/fuse_vnops.c
1400
struct thread *td = ap->a_td;
sys/fs/fuse/fuse_vnops.c
1545
struct thread *td = curthread;
sys/fs/fuse/fuse_vnops.c
1858
struct thread *td = ap->a_td;
sys/fs/fuse/fuse_vnops.c
2184
struct thread *td = curthread;
sys/fs/fuse/fuse_vnops.c
237
struct thread *td, accmode_t accmode)
sys/fs/fuse/fuse_vnops.c
2410
struct thread *td = curthread;
sys/fs/fuse/fuse_vnops.c
276
struct thread *td = curthread;
sys/fs/fuse/fuse_vnops.c
2789
struct thread *td = ap->a_td;
sys/fs/fuse/fuse_vnops.c
2878
struct thread *td = ap->a_td;
sys/fs/fuse/fuse_vnops.c
3064
struct thread *td = ap->a_td;
sys/fs/fuse/fuse_vnops.c
3330
struct thread *td = ap->a_td;
sys/fs/fuse/fuse_vnops.c
378
struct ucred *cred, struct thread *td)
sys/fs/fuse/fuse_vnops.c
456
fuse_vnop_do_lseek(struct vnode *vp, struct thread *td, struct ucred *cred,
sys/fs/fuse/fuse_vnops.c
556
struct thread *td = curthread;
sys/fs/fuse/fuse_vnops.c
776
struct thread *td = curthread;
sys/fs/fuse/fuse_vnops.c
880
struct thread *td;
sys/fs/fuse/fuse_vnops.c
978
struct thread *td;
sys/fs/msdosfs/msdosfs_vfsops.c
1104
struct thread *td;
sys/fs/msdosfs/msdosfs_vfsops.c
115
static int update_mp(struct mount *mp, struct thread *td);
sys/fs/msdosfs/msdosfs_vfsops.c
129
update_mp(struct mount *mp, struct thread *td)
sys/fs/msdosfs/msdosfs_vfsops.c
234
struct thread *td;
sys/fs/msdosfs/msdosfs_vnops.c
333
struct thread *td = curthread;
sys/fs/nfs/nfs_commonkrpc.c
126
static void nfs_down(struct nfsmount *, struct thread *, const char *,
sys/fs/nfs/nfs_commonkrpc.c
128
static void nfs_up(struct nfsmount *, struct thread *, const char *,
sys/fs/nfs/nfs_commonkrpc.c
130
static int nfs_msg(struct thread *, const char *, const char *, int);
sys/fs/nfs/nfs_commonkrpc.c
1600
newnfs_set_sigmask(struct thread *td, sigset_t *oldset)
sys/fs/nfs/nfs_commonkrpc.c
1631
newnfs_restore_sigmask(struct thread *td, sigset_t *set)
sys/fs/nfs/nfs_commonkrpc.c
1643
newnfs_msleep(struct thread *td, void *ident, struct mtx *mtx, int priority, char *wmesg, int timo)
sys/fs/nfs/nfs_commonkrpc.c
1663
newnfs_sigintr(struct nfsmount *nmp, struct thread *td)
sys/fs/nfs/nfs_commonkrpc.c
1693
nfs_msg(struct thread *td, const char *server, const char *msg, int error)
sys/fs/nfs/nfs_commonkrpc.c
1708
nfs_down(struct nfsmount *nmp, struct thread *td, const char *msg,
sys/fs/nfs/nfs_commonkrpc.c
1733
nfs_up(struct nfsmount *nmp, struct thread *td, const char *msg,
sys/fs/nfs/nfs_commonkrpc.c
265
struct thread *td = curthread;
sys/fs/nfs/nfs_commonkrpc.c
635
struct thread *nf_td;
sys/fs/nfs/nfs_commonkrpc.c
673
struct thread *td, struct ucred *cred, u_int32_t prog, u_int32_t vers,
sys/fs/nfs/nfs_commonport.c
147
static int nfssvc_call(struct thread *, struct nfssvc_args *, struct ucred *);
sys/fs/nfs/nfs_commonport.c
223
nfsrv_object_create(struct vnode *vp, struct thread *td)
sys/fs/nfs/nfs_commonport.c
322
struct ucred *cred, struct thread *p)
sys/fs/nfs/nfs_commonport.c
388
struct thread *td = curthread;
sys/fs/nfs/nfs_commonport.c
427
nfssvc_nfscommon(struct thread *td, struct nfssvc_args *uap)
sys/fs/nfs/nfs_commonport.c
439
nfssvc_call(struct thread *p, struct nfssvc_args *uap, struct ucred *cred)
sys/fs/nfs/nfs_commonport.c
59
struct thread *);
sys/fs/nfs/nfs_commonport.c
919
extern int (*nfsd_call_nfscommon)(struct thread *, struct nfssvc_args *);
sys/fs/nfs/nfs_var.h
783
uint64_t, int, struct thread *, struct mbuf **, struct mbuf **, int *);
sys/fs/nfs/nfs_var.h
785
struct ucred *, struct thread *);
sys/fs/nfs/nfs_var.h
787
struct ucred *, struct thread *);
sys/fs/nfs/nfs_var.h
788
int nfsvno_listxattr(struct vnode *, uint64_t, struct ucred *, struct thread *,
sys/fs/nfs/nfs_var.h
798
void newnfs_set_sigmask(struct thread *, sigset_t *);
sys/fs/nfs/nfs_var.h
799
void newnfs_restore_sigmask(struct thread *, sigset_t *);
sys/fs/nfs/nfs_var.h
800
int newnfs_msleep(struct thread *, void *, struct mtx *, int, char *, int);
sys/fs/nfs/nfsport.h
124
#define NFSPROC_T struct thread
sys/fs/nfsclient/nfs.h
110
struct thread *);
sys/fs/nfsclient/nfs.h
112
struct thread *);
sys/fs/nfsclient/nfs.h
113
int ncl_commit(struct vnode *, u_quad_t, int, struct ucred *, struct thread *);
sys/fs/nfsclient/nfs.h
116
struct thread *);
sys/fs/nfsclient/nfs.h
92
int ncl_meta_setsize(struct vnode *, struct thread *, u_quad_t);
sys/fs/nfsclient/nfs.h
95
int ncl_vinvalbuf(struct vnode *, int, struct thread *, int);
sys/fs/nfsclient/nfs.h
97
struct thread *);
sys/fs/nfsclient/nfs.h
98
int ncl_doio(struct vnode *, struct buf *, struct ucred *, struct thread *,
sys/fs/nfsclient/nfs_clbio.c
122
struct thread *td;
sys/fs/nfsclient/nfs_clbio.c
1290
nfs_getcacheblk(struct vnode *vp, daddr_t bn, int size, struct thread *td)
sys/fs/nfsclient/nfs_clbio.c
1324
ncl_vinvalbuf(struct vnode *vp, int flags, struct thread *td, int intrflg)
sys/fs/nfsclient/nfs_clbio.c
1403
ncl_asyncio(struct nfsmount *nmp, struct buf *bp, struct ucred *cred, struct thread *td)
sys/fs/nfsclient/nfs_clbio.c
1550
ncl_doio(struct vnode *vp, struct buf *bp, struct ucred *cr, struct thread *td,
sys/fs/nfsclient/nfs_clbio.c
1803
ncl_meta_setsize(struct vnode *vp, struct thread *td, u_quad_t nsize)
sys/fs/nfsclient/nfs_clbio.c
271
struct thread *td;
sys/fs/nfsclient/nfs_clbio.c
361
nfs_bioread_check_cons(struct vnode *vp, struct thread *td, struct ucred *cred)
sys/fs/nfsclient/nfs_clbio.c
437
struct thread *td;
sys/fs/nfsclient/nfs_clbio.c
71
struct thread *td);
sys/fs/nfsclient/nfs_clbio.c
770
struct thread *td = uiop->uio_td;
sys/fs/nfsclient/nfs_clbio.c
832
struct thread *td = uio->uio_td;
sys/fs/nfsclient/nfs_clkrpc.c
163
struct thread *td = curthread;
sys/fs/nfsclient/nfs_clkrpc.c
229
nfscbd_nfsd(struct thread *td, struct nfsd_nfscbd_args *args)
sys/fs/nfsclient/nfs_clnode.c
208
ncl_releasesillyrename(struct vnode *vp, bool flushed, struct thread *td)
sys/fs/nfsclient/nfs_clnode.c
241
struct thread *td;
sys/fs/nfsclient/nfs_clnode.c
293
struct thread *td;
sys/fs/nfsclient/nfs_clnode.c
98
struct thread *td = curthread; /* XXX */
sys/fs/nfsclient/nfs_clport.c
1128
nfscl_maperr(struct thread *td, int error, uid_t uid, gid_t gid)
sys/fs/nfsclient/nfs_clport.c
119
struct componentname *cnp, struct thread *td, struct nfsnode **npp,
sys/fs/nfsclient/nfs_clport.c
1244
nfssvc_nfscl(struct thread *td, struct nfssvc_args *uap)
sys/fs/nfsclient/nfs_clport.c
1381
extern int (*nfsd_call_nfscl)(struct thread *, struct nfssvc_args *);
sys/fs/nfsclient/nfs_clport.c
320
struct thread *td, struct nfsnode **npp)
sys/fs/nfsclient/nfs_clport.c
776
nfscl_getparent(struct thread *td)
sys/fs/nfsclient/nfs_clport.c
779
struct thread *ptd;
sys/fs/nfsclient/nfs_clport.c
800
struct thread *td;
sys/fs/nfsclient/nfs_clvfsops.c
115
struct thread *);
sys/fs/nfsclient/nfs_clvfsops.c
119
struct thread *, int, int, int, uint32_t, char *, int);
sys/fs/nfsclient/nfs_clvfsops.c
1516
struct ucred *cred, struct thread *td, int nametimeo, int negnametimeo,
sys/fs/nfsclient/nfs_clvfsops.c
186
struct thread *, struct vnode **, struct mount *);
sys/fs/nfsclient/nfs_clvfsops.c
1874
struct thread *td;
sys/fs/nfsclient/nfs_clvfsops.c
2024
struct thread *td;
sys/fs/nfsclient/nfs_clvfsops.c
287
struct thread *td;
sys/fs/nfsclient/nfs_clvfsops.c
402
struct thread *td)
sys/fs/nfsclient/nfs_clvfsops.c
438
struct thread *td = curthread;
sys/fs/nfsclient/nfs_clvfsops.c
566
struct sockaddr_in *sin, struct nfs_args *args, struct thread *td,
sys/fs/nfsclient/nfs_clvfsops.c
608
const char *hostname, struct ucred *cred, struct thread *td)
sys/fs/nfsclient/nfs_clvfsops.c
931
struct thread *td;
sys/fs/nfsclient/nfs_clvnops.c
1018
struct thread *td = curthread; /* XXX */
sys/fs/nfsclient/nfs_clvnops.c
1147
struct thread *td)
sys/fs/nfsclient/nfs_clvnops.c
116
struct thread *);
sys/fs/nfsclient/nfs_clvnops.c
1223
struct thread *td = curthread;
sys/fs/nfsclient/nfs_clvnops.c
139
struct ucred *, struct thread *, struct nfsnode **);
sys/fs/nfsclient/nfs_clvnops.c
2048
bool silly, struct thread *td)
sys/fs/nfsclient/nfs_clvnops.c
2073
int namelen, struct ucred *cred, struct thread *td, bool silly)
sys/fs/nfsclient/nfs_clvnops.c
2282
int tnamelen, bool silly, struct ucred *cred, struct thread *td)
sys/fs/nfsclient/nfs_clvnops.c
254
int namelen, struct ucred *cred, struct thread *td, bool silly);
sys/fs/nfsclient/nfs_clvnops.c
256
bool silly, struct thread *td);
sys/fs/nfsclient/nfs_clvnops.c
260
struct thread *td);
sys/fs/nfsclient/nfs_clvnops.c
2681
struct thread *td)
sys/fs/nfsclient/nfs_clvnops.c
2745
struct thread *td)
sys/fs/nfsclient/nfs_clvnops.c
2871
struct thread *td, struct nfsnode **npp)
sys/fs/nfsclient/nfs_clvnops.c
2983
struct thread *td)
sys/fs/nfsclient/nfs_clvnops.c
3089
ncl_flush(struct vnode *vp, int waitfor, struct thread *td,
sys/fs/nfsclient/nfs_clvnops.c
3432
struct thread *td = curthread; /* XXX */
sys/fs/nfsclient/nfs_clvnops.c
352
nfs34_access_otw(struct vnode *vp, int wmode, struct thread *td,
sys/fs/nfsclient/nfs_clvnops.c
3781
struct thread *td = curthread;
sys/fs/nfsclient/nfs_clvnops.c
3826
struct thread *td = curthread;
sys/fs/nfsclient/nfs_clvnops.c
3900
struct thread *td = curthread;
sys/fs/nfsclient/nfs_clvnops.c
4405
struct thread *td = ap->a_td;
sys/fs/nfsclient/nfs_clvnops.c
4463
struct thread *td = ap->a_td;
sys/fs/nfsclient/nfs_clvnops.c
4520
struct thread *td = ap->a_td;
sys/fs/nfsclient/nfs_clvnops.c
4644
struct thread *td = curthread;
sys/fs/nfsclient/nfs_clvnops.c
953
struct thread *td = curthread; /* XXX */
sys/fs/nfsserver/nfs_fha_new.c
418
fha_hash_entry_add_thread(struct fha_hash_entry *fhe, SVCTHREAD *thread)
sys/fs/nfsserver/nfs_fha_new.c
422
thread->st_p2 = 0;
sys/fs/nfsserver/nfs_fha_new.c
423
LIST_INSERT_HEAD(&fhe->threads, thread, st_alink);
sys/fs/nfsserver/nfs_fha_new.c
428
fha_hash_entry_remove_thread(struct fha_hash_entry *fhe, SVCTHREAD *thread)
sys/fs/nfsserver/nfs_fha_new.c
432
KASSERT(thread->st_p2 == 0,
sys/fs/nfsserver/nfs_fha_new.c
433
("%d reqs on removed thread %p", thread->st_p2, thread));
sys/fs/nfsserver/nfs_fha_new.c
434
LIST_REMOVE(thread, st_alink);
sys/fs/nfsserver/nfs_fha_new.c
460
SVCTHREAD *thread, *min_thread = NULL;
sys/fs/nfsserver/nfs_fha_new.c
464
LIST_FOREACH(thread, &fhe->threads, st_alink) {
sys/fs/nfsserver/nfs_fha_new.c
465
req_count = thread->st_p2;
sys/fs/nfsserver/nfs_fha_new.c
471
"fha: %p(%d)w", thread, req_count);
sys/fs/nfsserver/nfs_fha_new.c
473
return (thread);
sys/fs/nfsserver/nfs_fha_new.c
486
offset2 = thread->st_p3;
sys/fs/nfsserver/nfs_fha_new.c
496
"fha: %p(%d)r", thread, req_count);
sys/fs/nfsserver/nfs_fha_new.c
498
return (thread);
sys/fs/nfsserver/nfs_fha_new.c
510
"fha: %p(%d)s off1 %llu off2 %llu", thread,
sys/fs/nfsserver/nfs_fha_new.c
515
min_thread = thread;
sys/fs/nfsserver/nfs_fha_new.c
525
thread = this_thread;
sys/fs/nfsserver/nfs_fha_new.c
528
"fha: %p(%d)t", thread, thread->st_p2);
sys/fs/nfsserver/nfs_fha_new.c
530
fha_hash_entry_add_thread(fhe, thread);
sys/fs/nfsserver/nfs_fha_new.c
536
thread = min_thread;
sys/fs/nfsserver/nfs_fha_new.c
539
return (thread);
sys/fs/nfsserver/nfs_fha_new.c
550
SVCTHREAD *thread;
sys/fs/nfsserver/nfs_fha_new.c
584
thread = fha_hash_entry_choose_thread(softc, fhe, &i, this_thread);
sys/fs/nfsserver/nfs_fha_new.c
585
KASSERT(thread, ("fha_assign: NULL thread!"));
sys/fs/nfsserver/nfs_fha_new.c
587
thread->st_p2++;
sys/fs/nfsserver/nfs_fha_new.c
588
thread->st_p3 = i.offset;
sys/fs/nfsserver/nfs_fha_new.c
594
mtx_lock(&thread->st_lock);
sys/fs/nfsserver/nfs_fha_new.c
598
return (thread);
sys/fs/nfsserver/nfs_fha_new.c
611
fhanew_nd_complete(SVCTHREAD *thread, struct svc_req *req)
sys/fs/nfsserver/nfs_fha_new.c
629
thread->st_p2--;
sys/fs/nfsserver/nfs_fha_new.c
630
KASSERT(thread->st_p2 >= 0, ("Negative request count %d on %p",
sys/fs/nfsserver/nfs_fha_new.c
631
thread->st_p2, thread));
sys/fs/nfsserver/nfs_fha_new.c
632
if (thread->st_p2 == 0) {
sys/fs/nfsserver/nfs_fha_new.c
633
fha_hash_entry_remove_thread(fhe, thread);
sys/fs/nfsserver/nfs_fha_new.c
649
SVCTHREAD *thread;
sys/fs/nfsserver/nfs_fha_new.c
682
LIST_FOREACH(thread, &fhe->threads, st_alink) {
sys/fs/nfsserver/nfs_fha_new.c
684
"reqs %d\n", thread,
sys/fs/nfsserver/nfs_fha_new.c
685
thread->st_p3, thread->st_p2);
sys/fs/nfsserver/nfs_nfsdkrpc.c
593
nfsrvd_nfsd(struct thread *td, struct nfsd_nfsd_args *args)
sys/fs/nfsserver/nfs_nfsdport.c
1148
int maxextsiz, struct thread *p, struct mbuf **mpp,
sys/fs/nfsserver/nfs_nfsdport.c
115
static int nfssvc_srvcall(struct thread *, struct nfssvc_args *,
sys/fs/nfsserver/nfs_nfsdport.c
117
static void nfsvno_updateds(struct vnode *, struct ucred *, struct thread *);
sys/fs/nfsserver/nfs_nfsdport.c
1272
struct mbuf *mp, char *cp, struct ucred *cred, struct thread *p)
sys/fs/nfsserver/nfs_nfsdport.c
1327
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdport.c
1442
struct thread *p)
sys/fs/nfsserver/nfs_nfsdport.c
146
struct thread *, int, struct mbuf **, char *, struct mbuf **,
sys/fs/nfsserver/nfs_nfsdport.c
1498
struct ucred *cred, struct thread *p, struct nfsexstuff *exp)
sys/fs/nfsserver/nfs_nfsdport.c
1527
int pathlen, int not_v2, uid_t saved_uid, struct ucred *cred, struct thread *p,
sys/fs/nfsserver/nfs_nfsdport.c
1568
struct thread *p, char **pathcpp, int *lenp)
sys/fs/nfsserver/nfs_nfsdport.c
1610
struct thread *p, struct nfsexstuff *exp)
sys/fs/nfsserver/nfs_nfsdport.c
1680
struct thread *p, struct nfsexstuff *exp)
sys/fs/nfsserver/nfs_nfsdport.c
1720
struct nfsrv_descript *nd, struct thread *p)
sys/fs/nfsserver/nfs_nfsdport.c
1906
struct ucred *cred, struct thread *p, struct nfsexstuff *exp)
sys/fs/nfsserver/nfs_nfsdport.c
1952
struct thread *td)
sys/fs/nfsserver/nfs_nfsdport.c
2584
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdport.c
2759
struct nfsrv_descript *nd, struct thread *p)
sys/fs/nfsserver/nfs_nfsdport.c
2781
struct ucred *cred, struct thread *p, int isdgram, int reterr,
sys/fs/nfsserver/nfs_nfsdport.c
2868
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdport.c
3135
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdport.c
3749
nfsattrbit_t *attrbitp, NFSACL_T *aclp, NFSACL_T *daclp, struct thread *p)
sys/fs/nfsserver/nfs_nfsdport.c
3843
nfsattrbit_t *attrbitp, NFSACL_T *aclp, NFSACL_T *daclp, struct thread *p)
sys/fs/nfsserver/nfs_nfsdport.c
4422
fp_getfvp(struct thread *p, int fd, struct file **fpp, struct vnode **vpp)
sys/fs/nfsserver/nfs_nfsdport.c
4447
nfsrv_v4rootexport(void *argp, struct ucred *cred, struct thread *p)
sys/fs/nfsserver/nfs_nfsdport.c
4580
u_int64_t end, struct thread *td)
sys/fs/nfsserver/nfs_nfsdport.c
4674
nfssvc_nfsd(struct thread *td, struct nfssvc_args *uap)
sys/fs/nfsserver/nfs_nfsdport.c
4883
nfssvc_srvcall(struct thread *p, struct nfssvc_args *uap, struct ucred *cred)
sys/fs/nfsserver/nfs_nfsdport.c
513
struct nfsrv_descript *nd, struct thread *p, int vpislocked,
sys/fs/nfsserver/nfs_nfsdport.c
5821
struct thread *p, int ioproc, struct mbuf **mpp, char *cp,
sys/fs/nfsserver/nfs_nfsdport.c
585
nfsvno_getfh(struct vnode *vp, fhandle_t *fhp, struct thread *p)
sys/fs/nfsserver/nfs_nfsdport.c
609
struct nfsexstuff *exp, struct thread *p, int override, int vpislocked,
sys/fs/nfsserver/nfs_nfsdport.c
701
struct thread *p, struct nfsexstuff *exp)
sys/fs/nfsserver/nfs_nfsdport.c
8198
struct ucred *cred, uint64_t flag, int maxextsiz, struct thread *p,
sys/fs/nfsserver/nfs_nfsdport.c
8288
char *cp, struct ucred *cred, struct thread *p)
sys/fs/nfsserver/nfs_nfsdport.c
8374
struct ucred *cred, struct thread *p)
sys/fs/nfsserver/nfs_nfsdport.c
8411
struct thread *p, u_char **bufp, uint32_t *lenp, bool *eofp)
sys/fs/nfsserver/nfs_nfsdport.c
8678
extern int (*nfsd_call_nfsd)(struct thread *, struct nfssvc_args *);
sys/fs/nfsserver/nfs_nfsdport.c
978
struct thread *p, struct mbuf **mpp, struct mbuf **mpendp, int *lenp)
sys/fs/nfsserver/nfs_nfsdserv.c
1119
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
1304
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
140
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
1474
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
1712
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
1799
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
1965
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
2079
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
2205
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
2340
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
2399
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
2458
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
2498
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
252
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
2556
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
2783
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
2897
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
3024
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
3583
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
3661
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
3698
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
3735
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
3766
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
3821
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
3929
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
3976
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
4108
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
413
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
4258
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
4413
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
4450
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
4537
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
4606
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
4789
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
4911
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
4983
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
5063
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
5109
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
5209
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
5293
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
5664
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
6431
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
6499
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
6588
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
6654
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
727
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
840
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdserv.c
906
struct thread *p = curthread;
sys/fs/nfsserver/nfs_nfsdsocket.c
725
struct thread *p;
sys/fs/p9fs/p9fs_vfsops.c
264
struct thread *td;
sys/fs/p9fs/p9fs_vnops.c
1063
struct thread *td)
sys/fs/p9fs/p9fs_vnops.c
1116
p9fs_chmod(struct vnode *vp, uint32_t mode, struct ucred *cred, struct thread *td)
sys/fs/p9fs/p9fs_vnops.c
1180
struct thread *td;
sys/fs/p9fs/p9fs_vnops.c
2202
struct thread *td;
sys/fs/procfs/procfs_dbregs.c
86
struct thread *td2;
sys/fs/procfs/procfs_fpregs.c
80
struct thread *td2;
sys/fs/procfs/procfs_regs.c
80
struct thread *td2;
sys/fs/procfs/procfs_status.c
66
struct thread *tdfirst;
sys/fs/pseudofs/pseudofs.h
103
struct thread *td, struct proc *p, struct pfs_node *pn, \
sys/fs/pseudofs/pseudofs.h
117
struct thread *td, struct proc *p, struct pfs_node *pn, \
sys/fs/pseudofs/pseudofs.h
130
struct thread *td, struct proc *p, struct pfs_node *pn
sys/fs/pseudofs/pseudofs.h
142
struct thread *td, struct proc *p, struct pfs_node *pn, \
sys/fs/pseudofs/pseudofs.h
155
struct thread *td, struct proc *p, struct pfs_node *pn, \
sys/fs/pseudofs/pseudofs.h
170
struct thread *td, struct proc *p, struct pfs_node *pn
sys/fs/pseudofs/pseudofs.h
45
struct thread;
sys/fs/pseudofs/pseudofs_vnops.c
106
pfs_visible(struct thread *td, struct pfs_node *pn, pid_t pid,
sys/fs/pseudofs/pseudofs_vnops.c
1104
struct thread *td;
sys/fs/pseudofs/pseudofs_vnops.c
136
struct thread *td;
sys/fs/pseudofs/pseudofs_vnops.c
679
struct thread *td;
sys/fs/pseudofs/pseudofs_vnops.c
804
pfs_iterate(struct thread *td, struct proc *proc, struct pfs_node *pd,
sys/fs/pseudofs/pseudofs_vnops.c
867
struct thread *td;
sys/fs/pseudofs/pseudofs_vnops.c
90
pfs_visible_proc(struct thread *td, struct pfs_node *pn, struct proc *proc)
sys/fs/smbfs/smbfs.h
93
int smbfs_doio(struct vnode *vp, struct buf *bp, struct ucred *cr, struct thread *td);
sys/fs/smbfs/smbfs.h
94
int smbfs_vinvalbuf(struct vnode *vp, struct thread *td);
sys/fs/smbfs/smbfs_io.c
192
struct thread *td;
sys/fs/smbfs/smbfs_io.c
256
struct thread *td;
sys/fs/smbfs/smbfs_io.c
315
smbfs_doio(struct vnode *vp, struct buf *bp, struct ucred *cr, struct thread *td)
sys/fs/smbfs/smbfs_io.c
431
struct thread *td;
sys/fs/smbfs/smbfs_io.c
549
struct thread *td;
sys/fs/smbfs/smbfs_io.c
628
smbfs_vinvalbuf(struct vnode *vp, struct thread *td)
sys/fs/smbfs/smbfs_node.c
106
struct thread *td = curthread; /* XXX */
sys/fs/smbfs/smbfs_node.c
300
struct thread *td = curthread;
sys/fs/smbfs/smbfs_vfsops.c
136
struct thread *td;
sys/fs/smbfs/smbfs_vfsops.c
260
struct thread *td;
sys/fs/smbfs/smbfs_vfsops.c
315
struct thread *td;
sys/fs/smbfs/smbfs_vfsops.c
382
struct thread *td = curthread;
sys/fs/smbfs/smbfs_vnops.c
1050
struct thread *td = curthread;
sys/fs/smbfs/smbfs_vnops.c
212
struct thread *td = ap->a_td;
sys/fs/smbfs/smbfs_vnops.c
273
struct thread *td = curthread;
sys/fs/smbfs/smbfs_vnops.c
830
struct thread *td;
sys/fs/smbfs/smbfs_vnops.c
834
td = (struct thread *)0;
sys/fs/smbfs/smbfs_vnops.c
866
struct thread *td = ap->a_td;
sys/fs/smbfs/smbfs_vnops.c
905
struct thread *td = curthread;
sys/fs/tarfs/tarfs_io.c
325
struct thread *td = curthread;
sys/fs/tarfs/tarfs_vfsops.c
1062
struct thread *td = curthread;
sys/fs/tarfs/tarfs_vfsops.c
1144
struct thread *td;
sys/fs/tarfs/tarfs_vfsops.c
859
struct thread *td = curthread;
sys/fs/tarfs/tarfs_vfsops.c
938
struct thread *td = curthread;
sys/fs/tmpfs/tmpfs.h
470
int tmpfs_fo_close(struct file *fp, struct thread *td);
sys/fs/tmpfs/tmpfs.h
498
int tmpfs_chflags(struct vnode *, u_long, struct ucred *, struct thread *);
sys/fs/tmpfs/tmpfs.h
499
int tmpfs_chmod(struct vnode *, mode_t, struct ucred *, struct thread *);
sys/fs/tmpfs/tmpfs.h
501
struct thread *);
sys/fs/tmpfs/tmpfs.h
502
int tmpfs_chsize(struct vnode *, u_quad_t, struct ucred *, struct thread *);
sys/fs/tmpfs/tmpfs.h
504
struct thread *);
sys/fs/tmpfs/tmpfs_subr.c
2033
struct thread *td)
sys/fs/tmpfs/tmpfs_subr.c
2090
struct thread *td)
sys/fs/tmpfs/tmpfs_subr.c
2151
struct thread *td)
sys/fs/tmpfs/tmpfs_subr.c
2225
struct thread *td)
sys/fs/tmpfs/tmpfs_subr.c
2288
struct ucred *cred, struct thread *td)
sys/fs/tmpfs/tmpfs_vnops.c
344
tmpfs_fo_close(struct file *fp, struct thread *td)
sys/fs/tmpfs/tmpfs_vnops.c
547
struct thread *td = curthread;
sys/fs/udf/udf.h
120
int udf_allocv(struct mount *, struct vnode **, struct thread *);
sys/fs/udf/udf_vfsops.c
182
struct thread *td;
sys/fs/udf/udf_vfsops.c
582
struct thread *td;
sys/fs/udf/udf_vnops.c
119
udf_allocv(struct mount *mp, struct vnode **vpp, struct thread *td)
sys/fs/unionfs/union.h
137
struct thread *td);
sys/fs/unionfs/union.h
138
void unionfs_get_node_status(struct unionfs_node *, struct thread *,
sys/fs/unionfs/union.h
142
int unionfs_check_rmdir(struct vnode *, struct ucred *, struct thread *);
sys/fs/unionfs/union.h
143
int unionfs_copyfile(struct vnode *, int, struct ucred *, struct thread *);
sys/fs/unionfs/union.h
144
int unionfs_copylink(struct vnode *, struct ucred *, struct thread *);
sys/fs/unionfs/union.h
146
struct vattr *, struct thread *);
sys/fs/unionfs/union.h
148
struct vattr *, struct ucred *, struct thread *);
sys/fs/unionfs/union.h
150
struct componentname *, struct thread *);
sys/fs/unionfs/union.h
152
struct componentname *, struct thread *, char *, int);
sys/fs/unionfs/union.h
154
struct componentname *, struct componentname *, struct thread *,
sys/fs/unionfs/union_subr.c
1210
struct componentname *cnp, struct thread *td, char *path, int pathlen)
sys/fs/unionfs/union_subr.c
1271
struct vnode *vp, struct vattr *uvap, struct thread *td)
sys/fs/unionfs/union_subr.c
1353
struct ucred *cred, struct thread *td)
sys/fs/unionfs/union_subr.c
1423
struct thread *td)
sys/fs/unionfs/union_subr.c
1529
struct thread *td)
sys/fs/unionfs/union_subr.c
1599
struct thread *td)
sys/fs/unionfs/union_subr.c
1704
unionfs_check_rmdir(struct vnode *vp, struct ucred *cred, struct thread *td)
sys/fs/unionfs/union_subr.c
585
unionfs_find_node_status(struct unionfs_node *unp, struct thread *td)
sys/fs/unionfs/union_subr.c
610
unionfs_get_node_status(struct unionfs_node *unp, struct thread *td,
sys/fs/unionfs/union_subr.c
656
struct vattr *uva, struct thread *td)
sys/fs/unionfs/union_subr.c
697
struct vattr *uva, struct ucred *cred, struct thread *td)
sys/fs/unionfs/union_subr.c
721
struct componentname *cnp, struct componentname *cn, struct thread *td,
sys/fs/unionfs/union_subr.c
765
struct thread *td)
sys/fs/unionfs/union_subr.c
886
struct componentname *cnp, struct thread *td)
sys/fs/unionfs/union_vnops.c
101
struct thread *td;
sys/fs/unionfs/union_vnops.c
1033
struct thread *td;
sys/fs/unionfs/union_vnops.c
1088
struct thread *td;
sys/fs/unionfs/union_vnops.c
1270
struct thread *td;
sys/fs/unionfs/union_vnops.c
1323
struct thread *td;
sys/fs/unionfs/union_vnops.c
1380
struct thread *td;
sys/fs/unionfs/union_vnops.c
1705
struct thread *td;
sys/fs/unionfs/union_vnops.c
1848
struct thread *td;
sys/fs/unionfs/union_vnops.c
2356
struct thread *td;
sys/fs/unionfs/union_vnops.c
2457
struct thread *td;
sys/fs/unionfs/union_vnops.c
2617
struct thread *td;
sys/fs/unionfs/union_vnops.c
2712
struct thread *td;
sys/fs/unionfs/union_vnops.c
2778
struct thread *td;
sys/fs/unionfs/union_vnops.c
647
struct thread *td;
sys/fs/unionfs/union_vnops.c
786
struct thread *td;
sys/fs/unionfs/union_vnops.c
952
struct thread *td;
sys/gdb/gdb_main.c
133
gdb_do_threadinfo(struct thread **thr_iter)
sys/gdb/gdb_main.c
135
static struct thread * const done_sentinel = (void *)(uintptr_t)1;
sys/gdb/gdb_main.c
423
struct thread *iter;
sys/gdb/gdb_main.c
727
struct thread *thr_iter;
sys/gdb/gdb_main.c
825
struct thread *thr;
sys/geom/gate/g_gate.c
746
g_gate_ioctl(struct cdev *dev, u_long cmd, caddr_t addr, int flags, struct thread *td)
sys/geom/geom.h
272
void g_waitidle(struct thread *td);
sys/geom/geom.h
423
int g_is_geom_thread(struct thread *td);
sys/geom/geom.h
54
struct thread;
sys/geom/geom.h
60
struct thread;
sys/geom/geom.h
70
typedef int g_ioctl_t(struct g_provider *pp, u_long cmd, void *data, int fflag, struct thread *td);
sys/geom/geom_ctl.c
583
g_ctl_ioctl_ctl(struct cdev *dev, u_long cmd, caddr_t data, int fflag, struct thread *td)
sys/geom/geom_ctl.c
630
g_ctl_ioctl(struct cdev *dev, u_long cmd, caddr_t data, int fflag, struct thread *td)
sys/geom/geom_dev.c
426
g_dev_open(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/geom/geom_dev.c
479
g_dev_close(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/geom/geom_dev.c
528
g_dev_ioctl(struct cdev *dev, u_long cmd, caddr_t data, int fflag, struct thread *td)
sys/geom/geom_disk.c
275
g_disk_ioctl(struct g_provider *pp, u_long cmd, void * data, int fflag, struct thread *td)
sys/geom/geom_disk.h
62
int fflag, struct thread *td);
sys/geom/geom_event.c
350
struct thread *td;
sys/geom/geom_event.c
80
g_waitidle(struct thread *td)
sys/geom/geom_event.c
96
ast_geom(struct thread *td, int tda __unused)
sys/geom/geom_int.h
65
void g_io_schedule_down(struct thread *tp);
sys/geom/geom_int.h
66
void g_io_schedule_up(struct thread *tp);
sys/geom/geom_int.h
70
extern struct thread *g_up_td;
sys/geom/geom_int.h
71
extern struct thread *g_down_td;
sys/geom/geom_io.c
793
g_io_schedule_down(struct thread *tp __unused)
sys/geom/geom_io.c
855
g_io_schedule_up(struct thread *tp __unused)
sys/geom/geom_kern.c
124
g_is_geom_thread(struct thread *td)
sys/geom/geom_kern.c
61
struct thread __read_mostly *g_up_td;
sys/geom/geom_kern.c
62
struct thread __read_mostly *g_down_td;
sys/geom/geom_kern.c
63
static struct thread __read_mostly *g_event_td;
sys/geom/part/g_part.c
2153
g_part_ioctl(struct g_provider *pp, u_long cmd, void *data, int fflag, struct thread *td)
sys/i386/bios/smapi.c
98
smapi_ioctl (struct cdev *dev, u_long cmd, caddr_t data, int fflag, struct thread *td)
sys/i386/i386/db_trace.c
191
static void db_nextframe(struct i386_frame **, db_addr_t *, struct thread *);
sys/i386/i386/db_trace.c
258
db_nextframe(struct i386_frame **fp, db_addr_t *ip, struct thread *td)
sys/i386/i386/db_trace.c
398
db_backtrace(struct thread *td, struct trapframe *tf, struct i386_frame *frame,
sys/i386/i386/db_trace.c
571
db_trace_thread(struct thread *thr, int count)
sys/i386/i386/elan-mmcr.c
433
elan_ioctl(struct cdev *dev, u_long cmd, caddr_t arg, int flag, struct thread *tdr)
sys/i386/i386/elf_machdep.c
141
elf32_dump_thread(struct thread *td, void *dst, size_t *off)
sys/i386/i386/exec_machdep.c
100
static void fpstate_drop(struct thread *td);
sys/i386/i386/exec_machdep.c
1006
fill_regs(struct thread *td, struct reg *regs)
sys/i386/i386/exec_machdep.c
101
static void get_fpcontext(struct thread *td, mcontext_t *mcp,
sys/i386/i386/exec_machdep.c
103
static int set_fpcontext(struct thread *td, mcontext_t *mcp,
sys/i386/i386/exec_machdep.c
1042
set_regs(struct thread *td, struct reg *regs)
sys/i386/i386/exec_machdep.c
1072
fill_fpregs(struct thread *td, struct fpreg *fpregs)
sys/i386/i386/exec_machdep.c
1089
set_fpregs(struct thread *td, struct fpreg *fpregs)
sys/i386/i386/exec_machdep.c
1108
get_mcontext(struct thread *td, mcontext_t *mcp, int flags)
sys/i386/i386/exec_machdep.c
1161
set_mcontext(struct thread *td, mcontext_t *mcp)
sys/i386/i386/exec_machdep.c
1206
get_fpcontext(struct thread *td, mcontext_t *mcp, char *xfpusave,
sys/i386/i386/exec_machdep.c
1229
set_fpcontext(struct thread *td, mcontext_t *mcp, char *xfpustate,
sys/i386/i386/exec_machdep.c
1253
fpstate_drop(struct thread *td)
sys/i386/i386/exec_machdep.c
1276
fill_dbregs(struct thread *td, struct dbreg *dbregs)
sys/i386/i386/exec_machdep.c
1302
set_dbregs(struct thread *td, struct dbreg *dbregs)
sys/i386/i386/exec_machdep.c
132
struct thread *td;
sys/i386/i386/exec_machdep.c
261
struct thread *td;
sys/i386/i386/exec_machdep.c
380
struct thread *td;
sys/i386/i386/exec_machdep.c
546
osigreturn(struct thread *td, struct osigreturn_args *uap)
sys/i386/i386/exec_machdep.c
655
freebsd4_sigreturn(struct thread *td, struct freebsd4_sigreturn_args *uap)
sys/i386/i386/exec_machdep.c
753
sys_sigreturn(struct thread *td, struct sigreturn_args *uap)
sys/i386/i386/exec_machdep.c
945
exec_setregs(struct thread *td, struct image_params *imgp, uintptr_t stack)
sys/i386/i386/genassym.c
81
ASSYM(TD_FLAGS, offsetof(struct thread, td_flags));
sys/i386/i386/genassym.c
82
ASSYM(TD_AST, offsetof(struct thread, td_ast));
sys/i386/i386/genassym.c
83
ASSYM(TD_LOCK, offsetof(struct thread, td_lock));
sys/i386/i386/genassym.c
84
ASSYM(TD_PCB, offsetof(struct thread, td_pcb));
sys/i386/i386/genassym.c
85
ASSYM(TD_PFLAGS, offsetof(struct thread, td_pflags));
sys/i386/i386/genassym.c
86
ASSYM(TD_PROC, offsetof(struct thread, td_proc));
sys/i386/i386/genassym.c
87
ASSYM(TD_MD, offsetof(struct thread, td_md));
sys/i386/i386/io.c
37
iodev_open(struct thread *td)
sys/i386/i386/io.c
45
iodev_close(struct thread *td)
sys/i386/i386/machdep.c
1761
struct thread *td;
sys/i386/i386/machdep.c
1777
struct thread *td;
sys/i386/i386/mem.c
178
struct thread *td)
sys/i386/i386/npx.c
1055
npxuserinited(struct thread *td)
sys/i386/i386/npx.c
1067
npxsetxstate(struct thread *td, char *xfpustate, size_t xfpustate_size)
sys/i386/i386/npx.c
1105
npxsetregs(struct thread *td, union savefpu *addr, char *xfpustate,
sys/i386/i386/npx.c
124
#define GET_FPU_CW(thread) \
sys/i386/i386/npx.c
1241
struct thread *td;
sys/i386/i386/npx.c
126
(thread)->td_pcb->pcb_save->sv_xmm.sv_env.en_cw : \
sys/i386/i386/npx.c
127
(thread)->td_pcb->pcb_save->sv_87.sv_env.en_cw)
sys/i386/i386/npx.c
128
#define GET_FPU_SW(thread) \
sys/i386/i386/npx.c
130
(thread)->td_pcb->pcb_save->sv_xmm.sv_env.en_sw : \
sys/i386/i386/npx.c
131
(thread)->td_pcb->pcb_save->sv_87.sv_env.en_sw)
sys/i386/i386/npx.c
1402
fpu_kern_enter(struct thread *td, struct fpu_kern_ctx *ctx, u_int flags)
sys/i386/i386/npx.c
1454
fpu_kern_leave(struct thread *td, struct fpu_kern_ctx *ctx)
sys/i386/i386/npx.c
526
npxexit(struct thread *td)
sys/i386/i386/npx.c
804
restore_npx_curthread(struct thread *td, struct pcb *pcb)
sys/i386/i386/npx.c
849
struct thread *td;
sys/i386/i386/npx.c
897
void npxswitch(struct thread *td, struct pcb *pcb);
sys/i386/i386/npx.c
899
npxswitch(struct thread *td, struct pcb *pcb)
sys/i386/i386/npx.c
950
struct thread *td;
sys/i386/i386/npx.c
973
npxgetregs(struct thread *td)
sys/i386/i386/pmap.c
5866
__CONCAT(PMTYPE, activate)(struct thread *td)
sys/i386/i386/pmap_base.c
602
pmap_activate(struct thread *td)
sys/i386/i386/ptrace_machdep.c
165
cpu_ptrace_xmm(struct thread *td, int req, void *addr, int data)
sys/i386/i386/ptrace_machdep.c
202
cpu_ptrace(struct thread *td, int req, void *addr, int data)
sys/i386/i386/ptrace_machdep.c
250
ptrace_set_pc(struct thread *td, u_long addr)
sys/i386/i386/ptrace_machdep.c
258
ptrace_single_step(struct thread *td)
sys/i386/i386/ptrace_machdep.c
270
ptrace_clear_single_step(struct thread *td)
sys/i386/i386/ptrace_machdep.c
53
get_segbases(struct regset *rs, struct thread *td, void *buf,
sys/i386/i386/ptrace_machdep.c
69
set_segbases(struct regset *rs, struct thread *td, void *buf,
sys/i386/i386/ptrace_machdep.c
94
cpu_ptrace_xstate(struct thread *td, int req, void *addr, int data)
sys/i386/i386/sys_machdep.c
102
set_fsbase(struct thread *td, uint32_t base)
sys/i386/i386/sys_machdep.c
115
set_gsbase(struct thread *td, uint32_t base)
sys/i386/i386/sys_machdep.c
135
sysarch(struct thread *td, struct sysarch_args *uap)
sys/i386/i386/sys_machdep.c
279
i386_extend_pcb(struct thread *td)
sys/i386/i386/sys_machdep.c
333
i386_set_ioperm(struct thread *td, struct i386_ioperm_args *uap)
sys/i386/i386/sys_machdep.c
369
i386_get_ioperm(struct thread *td, struct i386_ioperm_args *uap)
sys/i386/i386/sys_machdep.c
478
user_ldt_free(struct thread *td)
sys/i386/i386/sys_machdep.c
520
i386_get_ldt(struct thread *td, struct i386_ldt_args *uap)
sys/i386/i386/sys_machdep.c
554
i386_set_ldt(struct thread *td, struct i386_ldt_args *uap,
sys/i386/i386/sys_machdep.c
705
i386_set_ldt_data(struct thread *td, int start, int num,
sys/i386/i386/sys_machdep.c
731
i386_ldt_grow(struct thread *td, int len)
sys/i386/i386/sys_machdep.c
74
static int i386_set_ldt_data(struct thread *, int start, int num,
sys/i386/i386/sys_machdep.c
76
static int i386_ldt_grow(struct thread *td, int len);
sys/i386/i386/trap.c
1027
cpu_fetch_syscall_args(struct thread *td)
sys/i386/i386/trap.c
1125
struct thread *td;
sys/i386/i386/trap.c
196
struct thread *td;
sys/i386/i386/trap.c
220
struct thread *td;
sys/i386/i386/trap.c
744
struct thread *td;
sys/i386/i386/vm86.c
809
vm86_sysarch(struct thread *td, char *args)
sys/i386/i386/vm_machdep.c
109
get_pcb_td(struct thread *td)
sys/i386/i386/vm_machdep.c
139
copy_thread(struct thread *td1, struct thread *td2)
sys/i386/i386/vm_machdep.c
207
cpu_fork(struct thread *td1, struct proc *p2, struct thread *td2, int flags)
sys/i386/i386/vm_machdep.c
296
x86_set_fork_retval(struct thread *td)
sys/i386/i386/vm_machdep.c
312
cpu_fork_kthread_handler(struct thread *td, void (*func)(void *), void *arg)
sys/i386/i386/vm_machdep.c
323
cpu_exit(struct thread *td)
sys/i386/i386/vm_machdep.c
340
cpu_thread_exit(struct thread *td)
sys/i386/i386/vm_machdep.c
356
cpu_thread_clean(struct thread *td)
sys/i386/i386/vm_machdep.c
373
cpu_thread_alloc(struct thread *td)
sys/i386/i386/vm_machdep.c
378
cpu_thread_new_kstack(struct thread *td)
sys/i386/i386/vm_machdep.c
394
cpu_thread_free(struct thread *td)
sys/i386/i386/vm_machdep.c
408
cpu_procctl(struct thread *td __unused, int idtype __unused, id_t id __unused,
sys/i386/i386/vm_machdep.c
416
cpu_set_syscall_retval(struct thread *td, int error)
sys/i386/i386/vm_machdep.c
452
cpu_copy_thread(struct thread *td, struct thread *td0)
sys/i386/i386/vm_machdep.c
478
cpu_set_upcall(struct thread *td, void (*entry)(void *), void *arg,
sys/i386/i386/vm_machdep.c
502
cpu_set_user_tls(struct thread *td, void *tls_base, int thr_flags __unused)
sys/i386/i386/vm_machdep.c
536
cpu_update_pcb(struct thread *td)
sys/i386/i386/vm_machdep.c
88
get_pcb_user_save_td(struct thread *td)
sys/i386/include/iodev.h
41
int iodev_open(struct thread *td);
sys/i386/include/iodev.h
42
int iodev_close(struct thread *td);
sys/i386/include/md_var.h
76
void set_fsbase(struct thread *td, uint32_t base);
sys/i386/include/md_var.h
77
void set_gsbase(struct thread *td, uint32_t base);
sys/i386/include/md_var.h
80
union savefpu *get_pcb_user_save_td(struct thread *td);
sys/i386/include/npx.h
55
void npxexit(struct thread *td);
sys/i386/include/npx.h
57
int npxgetregs(struct thread *td);
sys/i386/include/npx.h
61
int npxsetregs(struct thread *td, union savefpu *addr,
sys/i386/include/npx.h
63
int npxsetxstate(struct thread *td, char *xfpustate,
sys/i386/include/npx.h
68
void npxuserinited(struct thread *);
sys/i386/include/npx.h
76
void fpu_kern_enter(struct thread *td, struct fpu_kern_ctx *ctx,
sys/i386/include/npx.h
78
int fpu_kern_leave(struct thread *td, struct fpu_kern_ctx *ctx);
sys/i386/include/pcb_ext.h
47
int i386_extend_pcb(struct thread *);
sys/i386/include/pcpu_aux.h
47
static __inline __pure2 struct thread *
sys/i386/include/pcpu_aux.h
50
struct thread *td;
sys/i386/include/pmap.h
261
struct thread;
sys/i386/include/pmap_base.h
66
void (*pm_activate)(struct thread *);
sys/i386/include/proc.h
68
void user_ldt_free(struct thread *);
sys/i386/include/stack.h
14
struct thread *td = curthread; \
sys/i386/include/stack.h
20
kstack_contains(struct thread *td, vm_offset_t va, size_t len)
sys/i386/include/vm86.h
151
struct thread;
sys/i386/include/vm86.h
153
extern int vm86_sysarch(struct thread *, char *);
sys/i386/linux/linux_machdep.c
103
linux_ipc(struct thread *td, struct linux_ipc_args *args)
sys/i386/linux/linux_machdep.c
234
linux_old_select(struct thread *td, struct linux_old_select_args *args)
sys/i386/linux/linux_machdep.c
253
linux_set_cloned_tls(struct thread *td, void *desc)
sys/i386/linux/linux_machdep.c
297
linux_set_upcall(struct thread *td, register_t stack)
sys/i386/linux/linux_machdep.c
312
linux_mmap(struct thread *td, struct linux_mmap_args *args)
sys/i386/linux/linux_machdep.c
327
linux_ioperm(struct thread *td, struct linux_ioperm_args *args)
sys/i386/linux/linux_machdep.c
340
linux_iopl(struct thread *td, struct linux_iopl_args *args)
sys/i386/linux/linux_machdep.c
356
linux_modify_ldt(struct thread *td, struct linux_modify_ldt_args *uap)
sys/i386/linux/linux_machdep.c
419
linux_sigaction(struct thread *td, struct linux_sigaction_args *args)
sys/i386/linux/linux_machdep.c
456
linux_sigsuspend(struct thread *td, struct linux_sigsuspend_args *args)
sys/i386/linux/linux_machdep.c
468
linux_pause(struct thread *td, struct linux_pause_args *args)
sys/i386/linux/linux_machdep.c
480
linux_set_thread_area(struct thread *td, struct linux_set_thread_area_args *args)
sys/i386/linux/linux_machdep.c
552
linux_get_thread_area(struct thread *td, struct linux_get_thread_area_args *args)
sys/i386/linux/linux_machdep.c
620
linux_uselib(struct thread *td, struct linux_uselib_args *args)
sys/i386/linux/linux_proto.h
1736
int linux_exit(struct thread *, struct linux_exit_args *);
sys/i386/linux/linux_proto.h
1737
int linux_fork(struct thread *, struct linux_fork_args *);
sys/i386/linux/linux_proto.h
1738
int linux_write(struct thread *, struct linux_write_args *);
sys/i386/linux/linux_proto.h
1739
int linux_open(struct thread *, struct linux_open_args *);
sys/i386/linux/linux_proto.h
1740
int linux_waitpid(struct thread *, struct linux_waitpid_args *);
sys/i386/linux/linux_proto.h
1741
int linux_creat(struct thread *, struct linux_creat_args *);
sys/i386/linux/linux_proto.h
1742
int linux_link(struct thread *, struct linux_link_args *);
sys/i386/linux/linux_proto.h
1743
int linux_unlink(struct thread *, struct linux_unlink_args *);
sys/i386/linux/linux_proto.h
1744
int linux_execve(struct thread *, struct linux_execve_args *);
sys/i386/linux/linux_proto.h
1745
int linux_chdir(struct thread *, struct linux_chdir_args *);
sys/i386/linux/linux_proto.h
1746
int linux_time(struct thread *, struct linux_time_args *);
sys/i386/linux/linux_proto.h
1747
int linux_mknod(struct thread *, struct linux_mknod_args *);
sys/i386/linux/linux_proto.h
1748
int linux_chmod(struct thread *, struct linux_chmod_args *);
sys/i386/linux/linux_proto.h
1749
int linux_lchown16(struct thread *, struct linux_lchown16_args *);
sys/i386/linux/linux_proto.h
1750
int linux_stat(struct thread *, struct linux_stat_args *);
sys/i386/linux/linux_proto.h
1751
int linux_lseek(struct thread *, struct linux_lseek_args *);
sys/i386/linux/linux_proto.h
1752
int linux_getpid(struct thread *, struct linux_getpid_args *);
sys/i386/linux/linux_proto.h
1753
int linux_mount(struct thread *, struct linux_mount_args *);
sys/i386/linux/linux_proto.h
1754
int linux_oldumount(struct thread *, struct linux_oldumount_args *);
sys/i386/linux/linux_proto.h
1755
int linux_setuid16(struct thread *, struct linux_setuid16_args *);
sys/i386/linux/linux_proto.h
1756
int linux_getuid16(struct thread *, struct linux_getuid16_args *);
sys/i386/linux/linux_proto.h
1757
int linux_stime(struct thread *, struct linux_stime_args *);
sys/i386/linux/linux_proto.h
1758
int linux_ptrace(struct thread *, struct linux_ptrace_args *);
sys/i386/linux/linux_proto.h
1759
int linux_alarm(struct thread *, struct linux_alarm_args *);
sys/i386/linux/linux_proto.h
1760
int linux_pause(struct thread *, struct linux_pause_args *);
sys/i386/linux/linux_proto.h
1761
int linux_utime(struct thread *, struct linux_utime_args *);
sys/i386/linux/linux_proto.h
1762
int linux_access(struct thread *, struct linux_access_args *);
sys/i386/linux/linux_proto.h
1763
int linux_nice(struct thread *, struct linux_nice_args *);
sys/i386/linux/linux_proto.h
1764
int linux_kill(struct thread *, struct linux_kill_args *);
sys/i386/linux/linux_proto.h
1765
int linux_rename(struct thread *, struct linux_rename_args *);
sys/i386/linux/linux_proto.h
1766
int linux_mkdir(struct thread *, struct linux_mkdir_args *);
sys/i386/linux/linux_proto.h
1767
int linux_rmdir(struct thread *, struct linux_rmdir_args *);
sys/i386/linux/linux_proto.h
1768
int linux_pipe(struct thread *, struct linux_pipe_args *);
sys/i386/linux/linux_proto.h
1769
int linux_times(struct thread *, struct linux_times_args *);
sys/i386/linux/linux_proto.h
1770
int linux_brk(struct thread *, struct linux_brk_args *);
sys/i386/linux/linux_proto.h
1771
int linux_setgid16(struct thread *, struct linux_setgid16_args *);
sys/i386/linux/linux_proto.h
1772
int linux_getgid16(struct thread *, struct linux_getgid16_args *);
sys/i386/linux/linux_proto.h
1773
int linux_signal(struct thread *, struct linux_signal_args *);
sys/i386/linux/linux_proto.h
1774
int linux_geteuid16(struct thread *, struct linux_geteuid16_args *);
sys/i386/linux/linux_proto.h
1775
int linux_getegid16(struct thread *, struct linux_getegid16_args *);
sys/i386/linux/linux_proto.h
1776
int linux_umount(struct thread *, struct linux_umount_args *);
sys/i386/linux/linux_proto.h
1777
int linux_ioctl(struct thread *, struct linux_ioctl_args *);
sys/i386/linux/linux_proto.h
1778
int linux_fcntl(struct thread *, struct linux_fcntl_args *);
sys/i386/linux/linux_proto.h
1779
int linux_olduname(struct thread *, struct linux_olduname_args *);
sys/i386/linux/linux_proto.h
1780
int linux_ustat(struct thread *, struct linux_ustat_args *);
sys/i386/linux/linux_proto.h
1781
int linux_getppid(struct thread *, struct linux_getppid_args *);
sys/i386/linux/linux_proto.h
1782
int linux_sigaction(struct thread *, struct linux_sigaction_args *);
sys/i386/linux/linux_proto.h
1783
int linux_sgetmask(struct thread *, struct linux_sgetmask_args *);
sys/i386/linux/linux_proto.h
1784
int linux_ssetmask(struct thread *, struct linux_ssetmask_args *);
sys/i386/linux/linux_proto.h
1785
int linux_setreuid16(struct thread *, struct linux_setreuid16_args *);
sys/i386/linux/linux_proto.h
1786
int linux_setregid16(struct thread *, struct linux_setregid16_args *);
sys/i386/linux/linux_proto.h
1787
int linux_sigsuspend(struct thread *, struct linux_sigsuspend_args *);
sys/i386/linux/linux_proto.h
1788
int linux_sigpending(struct thread *, struct linux_sigpending_args *);
sys/i386/linux/linux_proto.h
1789
int linux_sethostname(struct thread *, struct linux_sethostname_args *);
sys/i386/linux/linux_proto.h
1790
int linux_setrlimit(struct thread *, struct linux_setrlimit_args *);
sys/i386/linux/linux_proto.h
1791
int linux_old_getrlimit(struct thread *, struct linux_old_getrlimit_args *);
sys/i386/linux/linux_proto.h
1792
int linux_getgroups16(struct thread *, struct linux_getgroups16_args *);
sys/i386/linux/linux_proto.h
1793
int linux_setgroups16(struct thread *, struct linux_setgroups16_args *);
sys/i386/linux/linux_proto.h
1794
int linux_old_select(struct thread *, struct linux_old_select_args *);
sys/i386/linux/linux_proto.h
1795
int linux_symlink(struct thread *, struct linux_symlink_args *);
sys/i386/linux/linux_proto.h
1796
int linux_lstat(struct thread *, struct linux_lstat_args *);
sys/i386/linux/linux_proto.h
1797
int linux_readlink(struct thread *, struct linux_readlink_args *);
sys/i386/linux/linux_proto.h
1798
int linux_uselib(struct thread *, struct linux_uselib_args *);
sys/i386/linux/linux_proto.h
1799
int linux_reboot(struct thread *, struct linux_reboot_args *);
sys/i386/linux/linux_proto.h
1800
int linux_readdir(struct thread *, struct linux_readdir_args *);
sys/i386/linux/linux_proto.h
1801
int linux_mmap(struct thread *, struct linux_mmap_args *);
sys/i386/linux/linux_proto.h
1802
int linux_truncate(struct thread *, struct linux_truncate_args *);
sys/i386/linux/linux_proto.h
1803
int linux_ftruncate(struct thread *, struct linux_ftruncate_args *);
sys/i386/linux/linux_proto.h
1804
int linux_getpriority(struct thread *, struct linux_getpriority_args *);
sys/i386/linux/linux_proto.h
1805
int linux_statfs(struct thread *, struct linux_statfs_args *);
sys/i386/linux/linux_proto.h
1806
int linux_fstatfs(struct thread *, struct linux_fstatfs_args *);
sys/i386/linux/linux_proto.h
1807
int linux_ioperm(struct thread *, struct linux_ioperm_args *);
sys/i386/linux/linux_proto.h
1808
int linux_socketcall(struct thread *, struct linux_socketcall_args *);
sys/i386/linux/linux_proto.h
1809
int linux_syslog(struct thread *, struct linux_syslog_args *);
sys/i386/linux/linux_proto.h
1810
int linux_setitimer(struct thread *, struct linux_setitimer_args *);
sys/i386/linux/linux_proto.h
1811
int linux_getitimer(struct thread *, struct linux_getitimer_args *);
sys/i386/linux/linux_proto.h
1812
int linux_newstat(struct thread *, struct linux_newstat_args *);
sys/i386/linux/linux_proto.h
1813
int linux_newlstat(struct thread *, struct linux_newlstat_args *);
sys/i386/linux/linux_proto.h
1814
int linux_newfstat(struct thread *, struct linux_newfstat_args *);
sys/i386/linux/linux_proto.h
1815
int linux_uname(struct thread *, struct linux_uname_args *);
sys/i386/linux/linux_proto.h
1816
int linux_iopl(struct thread *, struct linux_iopl_args *);
sys/i386/linux/linux_proto.h
1817
int linux_vhangup(struct thread *, struct linux_vhangup_args *);
sys/i386/linux/linux_proto.h
1818
int linux_vm86old(struct thread *, struct linux_vm86old_args *);
sys/i386/linux/linux_proto.h
1819
int linux_wait4(struct thread *, struct linux_wait4_args *);
sys/i386/linux/linux_proto.h
1820
int linux_swapoff(struct thread *, struct linux_swapoff_args *);
sys/i386/linux/linux_proto.h
1821
int linux_sysinfo(struct thread *, struct linux_sysinfo_args *);
sys/i386/linux/linux_proto.h
1822
int linux_ipc(struct thread *, struct linux_ipc_args *);
sys/i386/linux/linux_proto.h
1823
int linux_sigreturn(struct thread *, struct linux_sigreturn_args *);
sys/i386/linux/linux_proto.h
1824
int linux_clone(struct thread *, struct linux_clone_args *);
sys/i386/linux/linux_proto.h
1825
int linux_setdomainname(struct thread *, struct linux_setdomainname_args *);
sys/i386/linux/linux_proto.h
1826
int linux_newuname(struct thread *, struct linux_newuname_args *);
sys/i386/linux/linux_proto.h
1827
int linux_modify_ldt(struct thread *, struct linux_modify_ldt_args *);
sys/i386/linux/linux_proto.h
1828
int linux_adjtimex(struct thread *, struct linux_adjtimex_args *);
sys/i386/linux/linux_proto.h
1829
int linux_mprotect(struct thread *, struct linux_mprotect_args *);
sys/i386/linux/linux_proto.h
1830
int linux_sigprocmask(struct thread *, struct linux_sigprocmask_args *);
sys/i386/linux/linux_proto.h
1831
int linux_init_module(struct thread *, struct linux_init_module_args *);
sys/i386/linux/linux_proto.h
1832
int linux_delete_module(struct thread *, struct linux_delete_module_args *);
sys/i386/linux/linux_proto.h
1833
int linux_quotactl(struct thread *, struct linux_quotactl_args *);
sys/i386/linux/linux_proto.h
1834
int linux_bdflush(struct thread *, struct linux_bdflush_args *);
sys/i386/linux/linux_proto.h
1835
int linux_sysfs(struct thread *, struct linux_sysfs_args *);
sys/i386/linux/linux_proto.h
1836
int linux_personality(struct thread *, struct linux_personality_args *);
sys/i386/linux/linux_proto.h
1837
int linux_setfsuid16(struct thread *, struct linux_setfsuid16_args *);
sys/i386/linux/linux_proto.h
1838
int linux_setfsgid16(struct thread *, struct linux_setfsgid16_args *);
sys/i386/linux/linux_proto.h
1839
int linux_llseek(struct thread *, struct linux_llseek_args *);
sys/i386/linux/linux_proto.h
1840
int linux_getdents(struct thread *, struct linux_getdents_args *);
sys/i386/linux/linux_proto.h
1841
int linux_select(struct thread *, struct linux_select_args *);
sys/i386/linux/linux_proto.h
1842
int linux_msync(struct thread *, struct linux_msync_args *);
sys/i386/linux/linux_proto.h
1843
int linux_writev(struct thread *, struct linux_writev_args *);
sys/i386/linux/linux_proto.h
1844
int linux_getsid(struct thread *, struct linux_getsid_args *);
sys/i386/linux/linux_proto.h
1845
int linux_fdatasync(struct thread *, struct linux_fdatasync_args *);
sys/i386/linux/linux_proto.h
1846
int linux_sysctl(struct thread *, struct linux_sysctl_args *);
sys/i386/linux/linux_proto.h
1847
int linux_sched_setparam(struct thread *, struct linux_sched_setparam_args *);
sys/i386/linux/linux_proto.h
1848
int linux_sched_getparam(struct thread *, struct linux_sched_getparam_args *);
sys/i386/linux/linux_proto.h
1849
int linux_sched_setscheduler(struct thread *, struct linux_sched_setscheduler_args *);
sys/i386/linux/linux_proto.h
1850
int linux_sched_getscheduler(struct thread *, struct linux_sched_getscheduler_args *);
sys/i386/linux/linux_proto.h
1851
int linux_sched_get_priority_max(struct thread *, struct linux_sched_get_priority_max_args *);
sys/i386/linux/linux_proto.h
1852
int linux_sched_get_priority_min(struct thread *, struct linux_sched_get_priority_min_args *);
sys/i386/linux/linux_proto.h
1853
int linux_sched_rr_get_interval(struct thread *, struct linux_sched_rr_get_interval_args *);
sys/i386/linux/linux_proto.h
1854
int linux_nanosleep(struct thread *, struct linux_nanosleep_args *);
sys/i386/linux/linux_proto.h
1855
int linux_mremap(struct thread *, struct linux_mremap_args *);
sys/i386/linux/linux_proto.h
1856
int linux_setresuid16(struct thread *, struct linux_setresuid16_args *);
sys/i386/linux/linux_proto.h
1857
int linux_getresuid16(struct thread *, struct linux_getresuid16_args *);
sys/i386/linux/linux_proto.h
1858
int linux_vm86(struct thread *, struct linux_vm86_args *);
sys/i386/linux/linux_proto.h
1859
int linux_poll(struct thread *, struct linux_poll_args *);
sys/i386/linux/linux_proto.h
1860
int linux_setresgid16(struct thread *, struct linux_setresgid16_args *);
sys/i386/linux/linux_proto.h
1861
int linux_getresgid16(struct thread *, struct linux_getresgid16_args *);
sys/i386/linux/linux_proto.h
1862
int linux_prctl(struct thread *, struct linux_prctl_args *);
sys/i386/linux/linux_proto.h
1863
int linux_rt_sigreturn(struct thread *, struct linux_rt_sigreturn_args *);
sys/i386/linux/linux_proto.h
1864
int linux_rt_sigaction(struct thread *, struct linux_rt_sigaction_args *);
sys/i386/linux/linux_proto.h
1865
int linux_rt_sigprocmask(struct thread *, struct linux_rt_sigprocmask_args *);
sys/i386/linux/linux_proto.h
1866
int linux_rt_sigpending(struct thread *, struct linux_rt_sigpending_args *);
sys/i386/linux/linux_proto.h
1867
int linux_rt_sigtimedwait(struct thread *, struct linux_rt_sigtimedwait_args *);
sys/i386/linux/linux_proto.h
1868
int linux_rt_sigqueueinfo(struct thread *, struct linux_rt_sigqueueinfo_args *);
sys/i386/linux/linux_proto.h
1869
int linux_rt_sigsuspend(struct thread *, struct linux_rt_sigsuspend_args *);
sys/i386/linux/linux_proto.h
1870
int linux_pread(struct thread *, struct linux_pread_args *);
sys/i386/linux/linux_proto.h
1871
int linux_pwrite(struct thread *, struct linux_pwrite_args *);
sys/i386/linux/linux_proto.h
1872
int linux_chown16(struct thread *, struct linux_chown16_args *);
sys/i386/linux/linux_proto.h
1873
int linux_getcwd(struct thread *, struct linux_getcwd_args *);
sys/i386/linux/linux_proto.h
1874
int linux_capget(struct thread *, struct linux_capget_args *);
sys/i386/linux/linux_proto.h
1875
int linux_capset(struct thread *, struct linux_capset_args *);
sys/i386/linux/linux_proto.h
1876
int linux_sigaltstack(struct thread *, struct linux_sigaltstack_args *);
sys/i386/linux/linux_proto.h
1877
int linux_sendfile(struct thread *, struct linux_sendfile_args *);
sys/i386/linux/linux_proto.h
1878
int linux_vfork(struct thread *, struct linux_vfork_args *);
sys/i386/linux/linux_proto.h
1879
int linux_getrlimit(struct thread *, struct linux_getrlimit_args *);
sys/i386/linux/linux_proto.h
1880
int linux_mmap2(struct thread *, struct linux_mmap2_args *);
sys/i386/linux/linux_proto.h
1881
int linux_truncate64(struct thread *, struct linux_truncate64_args *);
sys/i386/linux/linux_proto.h
1882
int linux_ftruncate64(struct thread *, struct linux_ftruncate64_args *);
sys/i386/linux/linux_proto.h
1883
int linux_stat64(struct thread *, struct linux_stat64_args *);
sys/i386/linux/linux_proto.h
1884
int linux_lstat64(struct thread *, struct linux_lstat64_args *);
sys/i386/linux/linux_proto.h
1885
int linux_fstat64(struct thread *, struct linux_fstat64_args *);
sys/i386/linux/linux_proto.h
1886
int linux_lchown(struct thread *, struct linux_lchown_args *);
sys/i386/linux/linux_proto.h
1887
int linux_getuid(struct thread *, struct linux_getuid_args *);
sys/i386/linux/linux_proto.h
1888
int linux_getgid(struct thread *, struct linux_getgid_args *);
sys/i386/linux/linux_proto.h
1889
int linux_getgroups(struct thread *, struct linux_getgroups_args *);
sys/i386/linux/linux_proto.h
1890
int linux_setgroups(struct thread *, struct linux_setgroups_args *);
sys/i386/linux/linux_proto.h
1891
int linux_chown(struct thread *, struct linux_chown_args *);
sys/i386/linux/linux_proto.h
1892
int linux_setfsuid(struct thread *, struct linux_setfsuid_args *);
sys/i386/linux/linux_proto.h
1893
int linux_setfsgid(struct thread *, struct linux_setfsgid_args *);
sys/i386/linux/linux_proto.h
1894
int linux_pivot_root(struct thread *, struct linux_pivot_root_args *);
sys/i386/linux/linux_proto.h
1895
int linux_mincore(struct thread *, struct linux_mincore_args *);
sys/i386/linux/linux_proto.h
1896
int linux_madvise(struct thread *, struct linux_madvise_args *);
sys/i386/linux/linux_proto.h
1897
int linux_getdents64(struct thread *, struct linux_getdents64_args *);
sys/i386/linux/linux_proto.h
1898
int linux_fcntl64(struct thread *, struct linux_fcntl64_args *);
sys/i386/linux/linux_proto.h
1899
int linux_gettid(struct thread *, struct linux_gettid_args *);
sys/i386/linux/linux_proto.h
1900
int linux_setxattr(struct thread *, struct linux_setxattr_args *);
sys/i386/linux/linux_proto.h
1901
int linux_lsetxattr(struct thread *, struct linux_lsetxattr_args *);
sys/i386/linux/linux_proto.h
1902
int linux_fsetxattr(struct thread *, struct linux_fsetxattr_args *);
sys/i386/linux/linux_proto.h
1903
int linux_getxattr(struct thread *, struct linux_getxattr_args *);
sys/i386/linux/linux_proto.h
1904
int linux_lgetxattr(struct thread *, struct linux_lgetxattr_args *);
sys/i386/linux/linux_proto.h
1905
int linux_fgetxattr(struct thread *, struct linux_fgetxattr_args *);
sys/i386/linux/linux_proto.h
1906
int linux_listxattr(struct thread *, struct linux_listxattr_args *);
sys/i386/linux/linux_proto.h
1907
int linux_llistxattr(struct thread *, struct linux_llistxattr_args *);
sys/i386/linux/linux_proto.h
1908
int linux_flistxattr(struct thread *, struct linux_flistxattr_args *);
sys/i386/linux/linux_proto.h
1909
int linux_removexattr(struct thread *, struct linux_removexattr_args *);
sys/i386/linux/linux_proto.h
1910
int linux_lremovexattr(struct thread *, struct linux_lremovexattr_args *);
sys/i386/linux/linux_proto.h
1911
int linux_fremovexattr(struct thread *, struct linux_fremovexattr_args *);
sys/i386/linux/linux_proto.h
1912
int linux_tkill(struct thread *, struct linux_tkill_args *);
sys/i386/linux/linux_proto.h
1913
int linux_sendfile64(struct thread *, struct linux_sendfile64_args *);
sys/i386/linux/linux_proto.h
1914
int linux_sys_futex(struct thread *, struct linux_sys_futex_args *);
sys/i386/linux/linux_proto.h
1915
int linux_sched_setaffinity(struct thread *, struct linux_sched_setaffinity_args *);
sys/i386/linux/linux_proto.h
1916
int linux_sched_getaffinity(struct thread *, struct linux_sched_getaffinity_args *);
sys/i386/linux/linux_proto.h
1917
int linux_set_thread_area(struct thread *, struct linux_set_thread_area_args *);
sys/i386/linux/linux_proto.h
1918
int linux_get_thread_area(struct thread *, struct linux_get_thread_area_args *);
sys/i386/linux/linux_proto.h
1919
int linux_fadvise64(struct thread *, struct linux_fadvise64_args *);
sys/i386/linux/linux_proto.h
1920
int linux_exit_group(struct thread *, struct linux_exit_group_args *);
sys/i386/linux/linux_proto.h
1921
int linux_lookup_dcookie(struct thread *, struct linux_lookup_dcookie_args *);
sys/i386/linux/linux_proto.h
1922
int linux_epoll_create(struct thread *, struct linux_epoll_create_args *);
sys/i386/linux/linux_proto.h
1923
int linux_epoll_ctl(struct thread *, struct linux_epoll_ctl_args *);
sys/i386/linux/linux_proto.h
1924
int linux_epoll_wait(struct thread *, struct linux_epoll_wait_args *);
sys/i386/linux/linux_proto.h
1925
int linux_remap_file_pages(struct thread *, struct linux_remap_file_pages_args *);
sys/i386/linux/linux_proto.h
1926
int linux_set_tid_address(struct thread *, struct linux_set_tid_address_args *);
sys/i386/linux/linux_proto.h
1927
int linux_timer_create(struct thread *, struct linux_timer_create_args *);
sys/i386/linux/linux_proto.h
1928
int linux_timer_settime(struct thread *, struct linux_timer_settime_args *);
sys/i386/linux/linux_proto.h
1929
int linux_timer_gettime(struct thread *, struct linux_timer_gettime_args *);
sys/i386/linux/linux_proto.h
1930
int linux_timer_getoverrun(struct thread *, struct linux_timer_getoverrun_args *);
sys/i386/linux/linux_proto.h
1931
int linux_timer_delete(struct thread *, struct linux_timer_delete_args *);
sys/i386/linux/linux_proto.h
1932
int linux_clock_settime(struct thread *, struct linux_clock_settime_args *);
sys/i386/linux/linux_proto.h
1933
int linux_clock_gettime(struct thread *, struct linux_clock_gettime_args *);
sys/i386/linux/linux_proto.h
1934
int linux_clock_getres(struct thread *, struct linux_clock_getres_args *);
sys/i386/linux/linux_proto.h
1935
int linux_clock_nanosleep(struct thread *, struct linux_clock_nanosleep_args *);
sys/i386/linux/linux_proto.h
1936
int linux_statfs64(struct thread *, struct linux_statfs64_args *);
sys/i386/linux/linux_proto.h
1937
int linux_fstatfs64(struct thread *, struct linux_fstatfs64_args *);
sys/i386/linux/linux_proto.h
1938
int linux_tgkill(struct thread *, struct linux_tgkill_args *);
sys/i386/linux/linux_proto.h
1939
int linux_utimes(struct thread *, struct linux_utimes_args *);
sys/i386/linux/linux_proto.h
1940
int linux_fadvise64_64(struct thread *, struct linux_fadvise64_64_args *);
sys/i386/linux/linux_proto.h
1941
int linux_mbind(struct thread *, struct linux_mbind_args *);
sys/i386/linux/linux_proto.h
1942
int linux_get_mempolicy(struct thread *, struct linux_get_mempolicy_args *);
sys/i386/linux/linux_proto.h
1943
int linux_set_mempolicy(struct thread *, struct linux_set_mempolicy_args *);
sys/i386/linux/linux_proto.h
1944
int linux_mq_open(struct thread *, struct linux_mq_open_args *);
sys/i386/linux/linux_proto.h
1945
int linux_mq_unlink(struct thread *, struct linux_mq_unlink_args *);
sys/i386/linux/linux_proto.h
1946
int linux_mq_timedsend(struct thread *, struct linux_mq_timedsend_args *);
sys/i386/linux/linux_proto.h
1947
int linux_mq_timedreceive(struct thread *, struct linux_mq_timedreceive_args *);
sys/i386/linux/linux_proto.h
1948
int linux_mq_notify(struct thread *, struct linux_mq_notify_args *);
sys/i386/linux/linux_proto.h
1949
int linux_mq_getsetattr(struct thread *, struct linux_mq_getsetattr_args *);
sys/i386/linux/linux_proto.h
1950
int linux_kexec_load(struct thread *, struct linux_kexec_load_args *);
sys/i386/linux/linux_proto.h
1951
int linux_waitid(struct thread *, struct linux_waitid_args *);
sys/i386/linux/linux_proto.h
1952
int linux_add_key(struct thread *, struct linux_add_key_args *);
sys/i386/linux/linux_proto.h
1953
int linux_request_key(struct thread *, struct linux_request_key_args *);
sys/i386/linux/linux_proto.h
1954
int linux_keyctl(struct thread *, struct linux_keyctl_args *);
sys/i386/linux/linux_proto.h
1955
int linux_ioprio_set(struct thread *, struct linux_ioprio_set_args *);
sys/i386/linux/linux_proto.h
1956
int linux_ioprio_get(struct thread *, struct linux_ioprio_get_args *);
sys/i386/linux/linux_proto.h
1957
int linux_inotify_init(struct thread *, struct linux_inotify_init_args *);
sys/i386/linux/linux_proto.h
1958
int linux_inotify_add_watch(struct thread *, struct linux_inotify_add_watch_args *);
sys/i386/linux/linux_proto.h
1959
int linux_inotify_rm_watch(struct thread *, struct linux_inotify_rm_watch_args *);
sys/i386/linux/linux_proto.h
1960
int linux_migrate_pages(struct thread *, struct linux_migrate_pages_args *);
sys/i386/linux/linux_proto.h
1961
int linux_openat(struct thread *, struct linux_openat_args *);
sys/i386/linux/linux_proto.h
1962
int linux_mkdirat(struct thread *, struct linux_mkdirat_args *);
sys/i386/linux/linux_proto.h
1963
int linux_mknodat(struct thread *, struct linux_mknodat_args *);
sys/i386/linux/linux_proto.h
1964
int linux_fchownat(struct thread *, struct linux_fchownat_args *);
sys/i386/linux/linux_proto.h
1965
int linux_futimesat(struct thread *, struct linux_futimesat_args *);
sys/i386/linux/linux_proto.h
1966
int linux_fstatat64(struct thread *, struct linux_fstatat64_args *);
sys/i386/linux/linux_proto.h
1967
int linux_unlinkat(struct thread *, struct linux_unlinkat_args *);
sys/i386/linux/linux_proto.h
1968
int linux_renameat(struct thread *, struct linux_renameat_args *);
sys/i386/linux/linux_proto.h
1969
int linux_linkat(struct thread *, struct linux_linkat_args *);
sys/i386/linux/linux_proto.h
1970
int linux_symlinkat(struct thread *, struct linux_symlinkat_args *);
sys/i386/linux/linux_proto.h
1971
int linux_readlinkat(struct thread *, struct linux_readlinkat_args *);
sys/i386/linux/linux_proto.h
1972
int linux_fchmodat(struct thread *, struct linux_fchmodat_args *);
sys/i386/linux/linux_proto.h
1973
int linux_faccessat(struct thread *, struct linux_faccessat_args *);
sys/i386/linux/linux_proto.h
1974
int linux_pselect6(struct thread *, struct linux_pselect6_args *);
sys/i386/linux/linux_proto.h
1975
int linux_ppoll(struct thread *, struct linux_ppoll_args *);
sys/i386/linux/linux_proto.h
1976
int linux_unshare(struct thread *, struct linux_unshare_args *);
sys/i386/linux/linux_proto.h
1977
int linux_set_robust_list(struct thread *, struct linux_set_robust_list_args *);
sys/i386/linux/linux_proto.h
1978
int linux_get_robust_list(struct thread *, struct linux_get_robust_list_args *);
sys/i386/linux/linux_proto.h
1979
int linux_splice(struct thread *, struct linux_splice_args *);
sys/i386/linux/linux_proto.h
1980
int linux_sync_file_range(struct thread *, struct linux_sync_file_range_args *);
sys/i386/linux/linux_proto.h
1981
int linux_tee(struct thread *, struct linux_tee_args *);
sys/i386/linux/linux_proto.h
1982
int linux_vmsplice(struct thread *, struct linux_vmsplice_args *);
sys/i386/linux/linux_proto.h
1983
int linux_move_pages(struct thread *, struct linux_move_pages_args *);
sys/i386/linux/linux_proto.h
1984
int linux_getcpu(struct thread *, struct linux_getcpu_args *);
sys/i386/linux/linux_proto.h
1985
int linux_epoll_pwait(struct thread *, struct linux_epoll_pwait_args *);
sys/i386/linux/linux_proto.h
1986
int linux_utimensat(struct thread *, struct linux_utimensat_args *);
sys/i386/linux/linux_proto.h
1987
int linux_signalfd(struct thread *, struct linux_signalfd_args *);
sys/i386/linux/linux_proto.h
1988
int linux_timerfd_create(struct thread *, struct linux_timerfd_create_args *);
sys/i386/linux/linux_proto.h
1989
int linux_eventfd(struct thread *, struct linux_eventfd_args *);
sys/i386/linux/linux_proto.h
1990
int linux_fallocate(struct thread *, struct linux_fallocate_args *);
sys/i386/linux/linux_proto.h
1991
int linux_timerfd_settime(struct thread *, struct linux_timerfd_settime_args *);
sys/i386/linux/linux_proto.h
1992
int linux_timerfd_gettime(struct thread *, struct linux_timerfd_gettime_args *);
sys/i386/linux/linux_proto.h
1993
int linux_signalfd4(struct thread *, struct linux_signalfd4_args *);
sys/i386/linux/linux_proto.h
1994
int linux_eventfd2(struct thread *, struct linux_eventfd2_args *);
sys/i386/linux/linux_proto.h
1995
int linux_epoll_create1(struct thread *, struct linux_epoll_create1_args *);
sys/i386/linux/linux_proto.h
1996
int linux_dup3(struct thread *, struct linux_dup3_args *);
sys/i386/linux/linux_proto.h
1997
int linux_pipe2(struct thread *, struct linux_pipe2_args *);
sys/i386/linux/linux_proto.h
1998
int linux_inotify_init1(struct thread *, struct linux_inotify_init1_args *);
sys/i386/linux/linux_proto.h
1999
int linux_preadv(struct thread *, struct linux_preadv_args *);
sys/i386/linux/linux_proto.h
2000
int linux_pwritev(struct thread *, struct linux_pwritev_args *);
sys/i386/linux/linux_proto.h
2001
int linux_rt_tgsigqueueinfo(struct thread *, struct linux_rt_tgsigqueueinfo_args *);
sys/i386/linux/linux_proto.h
2002
int linux_perf_event_open(struct thread *, struct linux_perf_event_open_args *);
sys/i386/linux/linux_proto.h
2003
int linux_recvmmsg(struct thread *, struct linux_recvmmsg_args *);
sys/i386/linux/linux_proto.h
2004
int linux_fanotify_init(struct thread *, struct linux_fanotify_init_args *);
sys/i386/linux/linux_proto.h
2005
int linux_fanotify_mark(struct thread *, struct linux_fanotify_mark_args *);
sys/i386/linux/linux_proto.h
2006
int linux_prlimit64(struct thread *, struct linux_prlimit64_args *);
sys/i386/linux/linux_proto.h
2007
int linux_name_to_handle_at(struct thread *, struct linux_name_to_handle_at_args *);
sys/i386/linux/linux_proto.h
2008
int linux_open_by_handle_at(struct thread *, struct linux_open_by_handle_at_args *);
sys/i386/linux/linux_proto.h
2009
int linux_clock_adjtime(struct thread *, struct linux_clock_adjtime_args *);
sys/i386/linux/linux_proto.h
2010
int linux_syncfs(struct thread *, struct linux_syncfs_args *);
sys/i386/linux/linux_proto.h
2011
int linux_sendmmsg(struct thread *, struct linux_sendmmsg_args *);
sys/i386/linux/linux_proto.h
2012
int linux_setns(struct thread *, struct linux_setns_args *);
sys/i386/linux/linux_proto.h
2013
int linux_process_vm_readv(struct thread *, struct linux_process_vm_readv_args *);
sys/i386/linux/linux_proto.h
2014
int linux_process_vm_writev(struct thread *, struct linux_process_vm_writev_args *);
sys/i386/linux/linux_proto.h
2015
int linux_kcmp(struct thread *, struct linux_kcmp_args *);
sys/i386/linux/linux_proto.h
2016
int linux_finit_module(struct thread *, struct linux_finit_module_args *);
sys/i386/linux/linux_proto.h
2017
int linux_sched_setattr(struct thread *, struct linux_sched_setattr_args *);
sys/i386/linux/linux_proto.h
2018
int linux_sched_getattr(struct thread *, struct linux_sched_getattr_args *);
sys/i386/linux/linux_proto.h
2019
int linux_renameat2(struct thread *, struct linux_renameat2_args *);
sys/i386/linux/linux_proto.h
2020
int linux_seccomp(struct thread *, struct linux_seccomp_args *);
sys/i386/linux/linux_proto.h
2021
int linux_getrandom(struct thread *, struct linux_getrandom_args *);
sys/i386/linux/linux_proto.h
2022
int linux_memfd_create(struct thread *, struct linux_memfd_create_args *);
sys/i386/linux/linux_proto.h
2023
int linux_bpf(struct thread *, struct linux_bpf_args *);
sys/i386/linux/linux_proto.h
2024
int linux_execveat(struct thread *, struct linux_execveat_args *);
sys/i386/linux/linux_proto.h
2025
int linux_socket(struct thread *, struct linux_socket_args *);
sys/i386/linux/linux_proto.h
2026
int linux_socketpair(struct thread *, struct linux_socketpair_args *);
sys/i386/linux/linux_proto.h
2027
int linux_bind(struct thread *, struct linux_bind_args *);
sys/i386/linux/linux_proto.h
2028
int linux_connect(struct thread *, struct linux_connect_args *);
sys/i386/linux/linux_proto.h
2029
int linux_listen(struct thread *, struct linux_listen_args *);
sys/i386/linux/linux_proto.h
2030
int linux_accept4(struct thread *, struct linux_accept4_args *);
sys/i386/linux/linux_proto.h
2031
int linux_getsockopt(struct thread *, struct linux_getsockopt_args *);
sys/i386/linux/linux_proto.h
2032
int linux_setsockopt(struct thread *, struct linux_setsockopt_args *);
sys/i386/linux/linux_proto.h
2033
int linux_getsockname(struct thread *, struct linux_getsockname_args *);
sys/i386/linux/linux_proto.h
2034
int linux_getpeername(struct thread *, struct linux_getpeername_args *);
sys/i386/linux/linux_proto.h
2035
int linux_sendto(struct thread *, struct linux_sendto_args *);
sys/i386/linux/linux_proto.h
2036
int linux_sendmsg(struct thread *, struct linux_sendmsg_args *);
sys/i386/linux/linux_proto.h
2037
int linux_recvfrom(struct thread *, struct linux_recvfrom_args *);
sys/i386/linux/linux_proto.h
2038
int linux_recvmsg(struct thread *, struct linux_recvmsg_args *);
sys/i386/linux/linux_proto.h
2039
int linux_shutdown(struct thread *, struct linux_shutdown_args *);
sys/i386/linux/linux_proto.h
2040
int linux_userfaultfd(struct thread *, struct linux_userfaultfd_args *);
sys/i386/linux/linux_proto.h
2041
int linux_membarrier(struct thread *, struct linux_membarrier_args *);
sys/i386/linux/linux_proto.h
2042
int linux_mlock2(struct thread *, struct linux_mlock2_args *);
sys/i386/linux/linux_proto.h
2043
int linux_copy_file_range(struct thread *, struct linux_copy_file_range_args *);
sys/i386/linux/linux_proto.h
2044
int linux_preadv2(struct thread *, struct linux_preadv2_args *);
sys/i386/linux/linux_proto.h
2045
int linux_pwritev2(struct thread *, struct linux_pwritev2_args *);
sys/i386/linux/linux_proto.h
2046
int linux_pkey_mprotect(struct thread *, struct linux_pkey_mprotect_args *);
sys/i386/linux/linux_proto.h
2047
int linux_pkey_alloc(struct thread *, struct linux_pkey_alloc_args *);
sys/i386/linux/linux_proto.h
2048
int linux_pkey_free(struct thread *, struct linux_pkey_free_args *);
sys/i386/linux/linux_proto.h
2049
int linux_statx(struct thread *, struct linux_statx_args *);
sys/i386/linux/linux_proto.h
2050
int linux_arch_prctl(struct thread *, struct linux_arch_prctl_args *);
sys/i386/linux/linux_proto.h
2051
int linux_io_pgetevents(struct thread *, struct linux_io_pgetevents_args *);
sys/i386/linux/linux_proto.h
2052
int linux_rseq(struct thread *, struct linux_rseq_args *);
sys/i386/linux/linux_proto.h
2053
int linux_semget(struct thread *, struct linux_semget_args *);
sys/i386/linux/linux_proto.h
2054
int linux_semctl(struct thread *, struct linux_semctl_args *);
sys/i386/linux/linux_proto.h
2055
int linux_shmget(struct thread *, struct linux_shmget_args *);
sys/i386/linux/linux_proto.h
2056
int linux_shmctl(struct thread *, struct linux_shmctl_args *);
sys/i386/linux/linux_proto.h
2057
int linux_shmat(struct thread *, struct linux_shmat_args *);
sys/i386/linux/linux_proto.h
2058
int linux_shmdt(struct thread *, struct linux_shmdt_args *);
sys/i386/linux/linux_proto.h
2059
int linux_msgget(struct thread *, struct linux_msgget_args *);
sys/i386/linux/linux_proto.h
2060
int linux_msgsnd(struct thread *, struct linux_msgsnd_args *);
sys/i386/linux/linux_proto.h
2061
int linux_msgrcv(struct thread *, struct linux_msgrcv_args *);
sys/i386/linux/linux_proto.h
2062
int linux_msgctl(struct thread *, struct linux_msgctl_args *);
sys/i386/linux/linux_proto.h
2063
int linux_clock_gettime64(struct thread *, struct linux_clock_gettime64_args *);
sys/i386/linux/linux_proto.h
2064
int linux_clock_settime64(struct thread *, struct linux_clock_settime64_args *);
sys/i386/linux/linux_proto.h
2065
int linux_clock_adjtime64(struct thread *, struct linux_clock_adjtime64_args *);
sys/i386/linux/linux_proto.h
2066
int linux_clock_getres_time64(struct thread *, struct linux_clock_getres_time64_args *);
sys/i386/linux/linux_proto.h
2067
int linux_clock_nanosleep_time64(struct thread *, struct linux_clock_nanosleep_time64_args *);
sys/i386/linux/linux_proto.h
2068
int linux_timer_gettime64(struct thread *, struct linux_timer_gettime64_args *);
sys/i386/linux/linux_proto.h
2069
int linux_timer_settime64(struct thread *, struct linux_timer_settime64_args *);
sys/i386/linux/linux_proto.h
2070
int linux_timerfd_gettime64(struct thread *, struct linux_timerfd_gettime64_args *);
sys/i386/linux/linux_proto.h
2071
int linux_timerfd_settime64(struct thread *, struct linux_timerfd_settime64_args *);
sys/i386/linux/linux_proto.h
2072
int linux_utimensat_time64(struct thread *, struct linux_utimensat_time64_args *);
sys/i386/linux/linux_proto.h
2073
int linux_pselect6_time64(struct thread *, struct linux_pselect6_time64_args *);
sys/i386/linux/linux_proto.h
2074
int linux_ppoll_time64(struct thread *, struct linux_ppoll_time64_args *);
sys/i386/linux/linux_proto.h
2075
int linux_io_pgetevents_time64(struct thread *, struct linux_io_pgetevents_time64_args *);
sys/i386/linux/linux_proto.h
2076
int linux_recvmmsg_time64(struct thread *, struct linux_recvmmsg_time64_args *);
sys/i386/linux/linux_proto.h
2077
int linux_mq_timedsend_time64(struct thread *, struct linux_mq_timedsend_time64_args *);
sys/i386/linux/linux_proto.h
2078
int linux_mq_timedreceive_time64(struct thread *, struct linux_mq_timedreceive_time64_args *);
sys/i386/linux/linux_proto.h
2079
int linux_semtimedop_time64(struct thread *, struct linux_semtimedop_time64_args *);
sys/i386/linux/linux_proto.h
2080
int linux_rt_sigtimedwait_time64(struct thread *, struct linux_rt_sigtimedwait_time64_args *);
sys/i386/linux/linux_proto.h
2081
int linux_sys_futex_time64(struct thread *, struct linux_sys_futex_time64_args *);
sys/i386/linux/linux_proto.h
2082
int linux_sched_rr_get_interval_time64(struct thread *, struct linux_sched_rr_get_interval_time64_args *);
sys/i386/linux/linux_proto.h
2083
int linux_pidfd_send_signal(struct thread *, struct linux_pidfd_send_signal_args *);
sys/i386/linux/linux_proto.h
2084
int linux_io_uring_setup(struct thread *, struct linux_io_uring_setup_args *);
sys/i386/linux/linux_proto.h
2085
int linux_io_uring_enter(struct thread *, struct linux_io_uring_enter_args *);
sys/i386/linux/linux_proto.h
2086
int linux_io_uring_register(struct thread *, struct linux_io_uring_register_args *);
sys/i386/linux/linux_proto.h
2087
int linux_open_tree(struct thread *, struct linux_open_tree_args *);
sys/i386/linux/linux_proto.h
2088
int linux_move_mount(struct thread *, struct linux_move_mount_args *);
sys/i386/linux/linux_proto.h
2089
int linux_fsopen(struct thread *, struct linux_fsopen_args *);
sys/i386/linux/linux_proto.h
2090
int linux_fsconfig(struct thread *, struct linux_fsconfig_args *);
sys/i386/linux/linux_proto.h
2091
int linux_fsmount(struct thread *, struct linux_fsmount_args *);
sys/i386/linux/linux_proto.h
2092
int linux_fspick(struct thread *, struct linux_fspick_args *);
sys/i386/linux/linux_proto.h
2093
int linux_pidfd_open(struct thread *, struct linux_pidfd_open_args *);
sys/i386/linux/linux_proto.h
2094
int linux_clone3(struct thread *, struct linux_clone3_args *);
sys/i386/linux/linux_proto.h
2095
int linux_close_range(struct thread *, struct linux_close_range_args *);
sys/i386/linux/linux_proto.h
2096
int linux_openat2(struct thread *, struct linux_openat2_args *);
sys/i386/linux/linux_proto.h
2097
int linux_pidfd_getfd(struct thread *, struct linux_pidfd_getfd_args *);
sys/i386/linux/linux_proto.h
2098
int linux_faccessat2(struct thread *, struct linux_faccessat2_args *);
sys/i386/linux/linux_proto.h
2099
int linux_process_madvise(struct thread *, struct linux_process_madvise_args *);
sys/i386/linux/linux_proto.h
2100
int linux_epoll_pwait2_64(struct thread *, struct linux_epoll_pwait2_64_args *);
sys/i386/linux/linux_proto.h
2101
int linux_mount_setattr(struct thread *, struct linux_mount_setattr_args *);
sys/i386/linux/linux_proto.h
2102
int linux_quotactl_fd(struct thread *, struct linux_quotactl_fd_args *);
sys/i386/linux/linux_proto.h
2103
int linux_landlock_create_ruleset(struct thread *, struct linux_landlock_create_ruleset_args *);
sys/i386/linux/linux_proto.h
2104
int linux_landlock_add_rule(struct thread *, struct linux_landlock_add_rule_args *);
sys/i386/linux/linux_proto.h
2105
int linux_landlock_restrict_self(struct thread *, struct linux_landlock_restrict_self_args *);
sys/i386/linux/linux_proto.h
2106
int linux_memfd_secret(struct thread *, struct linux_memfd_secret_args *);
sys/i386/linux/linux_proto.h
2107
int linux_process_mrelease(struct thread *, struct linux_process_mrelease_args *);
sys/i386/linux/linux_proto.h
2108
int linux_futex_waitv(struct thread *, struct linux_futex_waitv_args *);
sys/i386/linux/linux_proto.h
2109
int linux_set_mempolicy_home_node(struct thread *, struct linux_set_mempolicy_home_node_args *);
sys/i386/linux/linux_proto.h
2110
int linux_cachestat(struct thread *, struct linux_cachestat_args *);
sys/i386/linux/linux_proto.h
2111
int linux_fchmodat2(struct thread *, struct linux_fchmodat2_args *);
sys/i386/linux/linux_proto.h
23
struct thread;
sys/i386/linux/linux_ptrace_machdep.c
212
linux_proc_read_fpxregs(struct thread *td, struct linux_pt_fpxreg *fpxregs)
sys/i386/linux/linux_ptrace_machdep.c
223
linux_proc_write_fpxregs(struct thread *td, struct linux_pt_fpxreg *fpxregs)
sys/i386/linux/linux_ptrace_machdep.c
234
linux_ptrace(struct thread *td, struct linux_ptrace_args *uap)
sys/i386/linux/linux_ptrace_machdep.c
329
struct thread *td2;
sys/i386/linux/linux_sysvec.c
102
static void linux_exec_setregs(struct thread *td,
sys/i386/linux/linux_sysvec.c
107
static void linux_set_fork_retval(struct thread *td);
sys/i386/linux/linux_sysvec.c
155
struct thread *td = curthread;
sys/i386/linux/linux_sysvec.c
259
struct thread *td = curthread;
sys/i386/linux/linux_sysvec.c
356
linux_sigreturn(struct thread *td, struct linux_sigreturn_args *args)
sys/i386/linux/linux_sysvec.c
429
linux_rt_sigreturn(struct thread *td, struct linux_rt_sigreturn_args *args)
sys/i386/linux/linux_sysvec.c
507
linux_fetch_syscall_args(struct thread *td)
sys/i386/linux/linux_sysvec.c
539
linux_set_syscall_retval(struct thread *td, int error)
sys/i386/linux/linux_sysvec.c
552
linux_set_fork_retval(struct thread *td)
sys/i386/linux/linux_sysvec.c
565
linux_exec_setregs(struct thread *td, struct image_params *imgp,
sys/kern/coredump_vnode.c
162
vnode_close_locked(struct thread *td, struct vnode *vp)
sys/kern/coredump_vnode.c
172
struct thread *td)
sys/kern/coredump_vnode.c
207
corefile_open_last(struct thread *td, char *name, int indexpos,
sys/kern/coredump_vnode.c
304
corefile_open(const char *comm, uid_t uid, pid_t pid, struct thread *td,
sys/kern/coredump_vnode.c
433
coredump_vnode(struct thread *td, off_t limit)
sys/kern/genoffset.c
36
OFFSYM(td_priority, thread, u_char);
sys/kern/genoffset.c
37
OFFSYM(td_critnest, thread, u_int);
sys/kern/genoffset.c
38
OFFSYM(td_pinned, thread, int);
sys/kern/genoffset.c
39
OFFSYM(td_owepreempt, thread, u_char);
sys/kern/imgact_elf.c
111
static size_t __elfN(prepare_register_notes)(struct thread *td,
sys/kern/imgact_elf.c
112
struct note_info_list *list, struct thread *target_td);
sys/kern/imgact_elf.c
1605
static void each_dumpable_segment(struct thread *, segment_callback, void *,
sys/kern/imgact_elf.c
1609
static void __elfN(putnote)(struct thread *td, struct note_info *, struct sbuf *);
sys/kern/imgact_elf.c
1633
__elfN(coredump)(struct thread *td, struct coredump_writer *cdw, off_t limit, int flags)
sys/kern/imgact_elf.c
1802
__elfN(size_segments)(struct thread *td, struct sseg_closure *seginfo,
sys/kern/imgact_elf.c
1817
each_dumpable_segment(struct thread *td, segment_callback func, void *closure,
sys/kern/imgact_elf.c
1910
__elfN(prepare_notes)(struct thread *td, struct note_info_list *list,
sys/kern/imgact_elf.c
1914
struct thread *thr;
sys/kern/imgact_elf.c
1966
__elfN(puthdr)(struct thread *td, void *hdr, size_t hdrsize, int numsegs,
sys/kern/imgact_elf.c
2054
__elfN(register_regset_note)(struct thread *td, struct note_info_list *list,
sys/kern/imgact_elf.c
2055
struct regset *regset, struct thread *target_td)
sys/kern/imgact_elf.c
2082
__elfN(register_note)(struct thread *td, struct note_info_list *list,
sys/kern/imgact_elf.c
2153
__elfN(putnote)(struct thread *td, struct note_info *ninfo, struct sbuf *sb)
sys/kern/imgact_elf.c
2314
__elfN(get_prstatus)(struct regset *rs, struct thread *td, void *buf,
sys/kern/imgact_elf.c
2342
__elfN(set_prstatus)(struct regset *rs, struct thread *td, void *buf,
sys/kern/imgact_elf.c
2366
__elfN(get_fpregset)(struct regset *rs, struct thread *td, void *buf,
sys/kern/imgact_elf.c
2386
__elfN(set_fpregset)(struct regset *rs, struct thread *td, void *buf,
sys/kern/imgact_elf.c
2410
__elfN(get_thrmisc)(struct regset *rs, struct thread *td, void *buf,
sys/kern/imgact_elf.c
2434
__elfN(get_lwpinfo)(struct regset *rs, struct thread *td, void *buf,
sys/kern/imgact_elf.c
2476
__elfN(prepare_register_notes)(struct thread *td, struct note_info_list *list,
sys/kern/imgact_elf.c
2477
struct thread *target_td)
sys/kern/imgact_elf.c
2518
struct thread *td;
sys/kern/imgact_elf.c
2522
td = (struct thread *)arg;
sys/kern/imgact_elf.c
788
__elfN(load_interp_file)(struct thread *td, const char *file, u_long *addr,
sys/kern/imgact_elf.c
97
static int __elfN(load_interp_file)(struct thread *td, const char *file, u_long *addr,
sys/kern/init_main.c
122
linux_alloc_current_noop(struct thread *td __unused, int flags __unused)
sys/kern/init_main.c
126
int (*lkpi_alloc_current)(struct thread *, int) = linux_alloc_current_noop;
sys/kern/init_main.c
405
null_fetch_syscall_args(struct thread *td __unused)
sys/kern/init_main.c
412
null_set_syscall_retval(struct thread *td __unused, int error __unused)
sys/kern/init_main.c
419
null_set_fork_retval(struct thread *td __unused)
sys/kern/init_main.c
467
struct thread *td;
sys/kern/init_main.c
656
struct thread *td;
sys/kern/init_main.c
737
struct thread *td;
sys/kern/init_main.c
824
struct thread *td;
sys/kern/init_main.c
867
struct thread *td;
sys/kern/kern_acct.c
127
static int acct_disable(struct thread *, int);
sys/kern/kern_acct.c
199
sys_acct(struct thread *td, struct acct_args *uap)
sys/kern/kern_acct.c
308
acct_disable(struct thread *td, int logging)
sys/kern/kern_acct.c
331
acct_process(struct thread *td)
sys/kern/kern_alq.c
101
struct thread *ald_thread;
sys/kern/kern_alq.c
313
struct thread *td;
sys/kern/kern_clock.c
178
deadlres_td_on_lock(struct proc *p, struct thread *td, int blkticks)
sys/kern/kern_clock.c
203
deadlres_td_sleep_q(struct proc *p, struct thread *td, int slpticks)
sys/kern/kern_clock.c
241
struct thread *td;
sys/kern/kern_clock.c
292
(struct thread **)NULL
sys/kern/kern_clock.c
380
ast_oweupc(struct thread *td, int tda __unused)
sys/kern/kern_clock.c
390
ast_alrm(struct thread *td, int tda __unused)
sys/kern/kern_clock.c
401
ast_prof(struct thread *td, int tda __unused)
sys/kern/kern_clock.c
450
hardclock_itimer(struct thread *td, struct pstats *pstats, int cnt, int usermode)
sys/kern/kern_clock.c
480
struct thread *td = curthread;
sys/kern/kern_clock.c
689
struct thread *td;
sys/kern/kern_clock.c
771
struct thread *td;
sys/kern/kern_clocksource.c
681
struct thread *td;
sys/kern/kern_clocksource.c
793
struct thread *td;
sys/kern/kern_condvar.c
115
struct thread *td __ktrace_used;
sys/kern/kern_condvar.c
177
struct thread *td __ktrace_used;
sys/kern/kern_condvar.c
235
struct thread *td __ktrace_used;
sys/kern/kern_condvar.c
304
struct thread *td __ktrace_used;
sys/kern/kern_condvar.c
374
struct thread *td __ktrace_used;
sys/kern/kern_conf.c
340
no_poll(struct cdev *dev __unused, int events, struct thread *td __unused)
sys/kern/kern_conf.c
347
giant_open(struct cdev *dev, int oflags, int devtype, struct thread *td)
sys/kern/kern_conf.c
363
giant_fdopen(struct cdev *dev, int oflags, struct thread *td, struct file *fp)
sys/kern/kern_conf.c
379
giant_close(struct cdev *dev, int fflag, int devtype, struct thread *td)
sys/kern/kern_conf.c
414
giant_ioctl(struct cdev *dev, u_long cmd, caddr_t data, int fflag, struct thread *td)
sys/kern/kern_conf.c
462
giant_poll(struct cdev *dev, int events, struct thread *td)
sys/kern/kern_context.c
101
sys_swapcontext(struct thread *td, struct swapcontext_args *uap)
sys/kern/kern_context.c
61
sys_getcontext(struct thread *td, struct getcontext_args *uap)
sys/kern/kern_context.c
80
sys_setcontext(struct thread *td, struct setcontext_args *uap)
sys/kern/kern_cpuset.c
1069
cpuset_update_thread(struct thread *td, struct cpuset *nset)
sys/kern/kern_cpuset.c
1181
cpuset_setproc_newbase(struct thread *td, struct cpuset *set,
sys/kern/kern_cpuset.c
1250
struct thread *td;
sys/kern/kern_cpuset.c
151
static int cpuset_which2(cpuwhich_t *, id_t, struct proc **, struct thread **,
sys/kern/kern_cpuset.c
1512
struct thread *td;
sys/kern/kern_cpuset.c
1701
cpuset_kernthread(struct thread *td)
sys/kern/kern_cpuset.c
1766
cpuset_capmode_allowed(struct thread *td, cpulevel_t level, cpuwhich_t which,
sys/kern/kern_cpuset.c
1788
cpuset_check_capabilities(struct thread *td, cpulevel_t level, cpuwhich_t which,
sys/kern/kern_cpuset.c
1845
sys_cpuset(struct thread *td, struct cpuset_args *uap)
sys/kern/kern_cpuset.c
1874
sys_cpuset_setid(struct thread *td, struct cpuset_setid_args *uap)
sys/kern/kern_cpuset.c
1881
kern_cpuset_setid(struct thread *td, cpuwhich_t which,
sys/kern/kern_cpuset.c
1909
sys_cpuset_getid(struct thread *td, struct cpuset_getid_args *uap)
sys/kern/kern_cpuset.c
1917
kern_cpuset_getid(struct thread *td, cpulevel_t level, cpuwhich_t which,
sys/kern/kern_cpuset.c
1922
struct thread *ttd;
sys/kern/kern_cpuset.c
1977
sys_cpuset_getaffinity(struct thread *td, struct cpuset_getaffinity_args *uap)
sys/kern/kern_cpuset.c
1985
kern_cpuset_getaffinity(struct thread *td, cpulevel_t level, cpuwhich_t which,
sys/kern/kern_cpuset.c
1988
struct thread *ttd;
sys/kern/kern_cpuset.c
2077
user_cpuset_getaffinity(struct thread *td, cpulevel_t level, cpuwhich_t which,
sys/kern/kern_cpuset.c
2124
sys_cpuset_setaffinity(struct thread *td, struct cpuset_setaffinity_args *uap)
sys/kern/kern_cpuset.c
2132
kern_cpuset_setaffinity(struct thread *td, cpulevel_t level, cpuwhich_t which,
sys/kern/kern_cpuset.c
2137
struct thread *ttd;
sys/kern/kern_cpuset.c
2223
user_cpuset_setaffinity(struct thread *td, cpulevel_t level, cpuwhich_t which,
sys/kern/kern_cpuset.c
2276
sys_cpuset_getdomain(struct thread *td, struct cpuset_getdomain_args *uap)
sys/kern/kern_cpuset.c
2284
kern_cpuset_getdomain(struct thread *td, cpulevel_t level, cpuwhich_t which,
sys/kern/kern_cpuset.c
2289
struct thread *ttd;
sys/kern/kern_cpuset.c
2404
sys_cpuset_setdomain(struct thread *td, struct cpuset_setdomain_args *uap)
sys/kern/kern_cpuset.c
2465
kern_cpuset_setdomain(struct thread *td, cpulevel_t level, cpuwhich_t which,
sys/kern/kern_cpuset.c
2471
struct thread *ttd;
sys/kern/kern_cpuset.c
282
cpuset_lookup(cpusetid_t setid, struct thread *td)
sys/kern/kern_cpuset.c
595
struct thread *td;
sys/kern/kern_cpuset.c
897
cpuset_which(cpuwhich_t which, id_t id, struct proc **pp, struct thread **tdp,
sys/kern/kern_cpuset.c
901
struct thread *td;
sys/kern/kern_cpuset.c
992
cpuset_which2(cpuwhich_t *which, id_t id, struct proc **pp, struct thread **tdp,
sys/kern/kern_ctf.c
58
struct thread *td = curthread;
sys/kern/kern_descrip.c
1033
getmaxfd(struct thread *td)
sys/kern/kern_descrip.c
104
struct thread *td, bool holdleaders, bool audit);
sys/kern/kern_descrip.c
1043
kern_dup(struct thread *td, u_int mode, int flags, int old, int new)
sys/kern/kern_descrip.c
113
static int fget_unlocked_seq(struct thread *td, int fd,
sys/kern/kern_descrip.c
116
static int getmaxfd(struct thread *td);
sys/kern/kern_descrip.c
1399
closefp_impl(struct filedesc *fdp, int fd, struct file *fp, struct thread *td,
sys/kern/kern_descrip.c
1437
closefp_hl(struct filedesc *fdp, int fd, struct file *fp, struct thread *td,
sys/kern/kern_descrip.c
1471
closefp(struct filedesc *fdp, int fd, struct file *fp, struct thread *td,
sys/kern/kern_descrip.c
1494
sys_close(struct thread *td, struct close_args *uap)
sys/kern/kern_descrip.c
1501
kern_close(struct thread *td, int fd)
sys/kern/kern_descrip.c
1520
close_range_flags(struct thread *td, u_int lowfd, u_int highfd, int flags)
sys/kern/kern_descrip.c
1547
close_range_impl(struct thread *td, u_int lowfd, u_int highfd)
sys/kern/kern_descrip.c
1584
kern_close_range(struct thread *td, int flags, u_int lowfd, u_int highfd)
sys/kern/kern_descrip.c
1611
sys_close_range(struct thread *td, struct close_range_args *uap)
sys/kern/kern_descrip.c
1634
freebsd12_closefrom(struct thread *td, struct freebsd12_closefrom_args *uap)
sys/kern/kern_descrip.c
1661
ofstat(struct thread *td, struct ofstat_args *uap)
sys/kern/kern_descrip.c
1678
freebsd11_fstat(struct thread *td, struct freebsd11_fstat_args *uap)
sys/kern/kern_descrip.c
1705
sys_fstat(struct thread *td, struct fstat_args *uap)
sys/kern/kern_descrip.c
1717
kern_fstat(struct thread *td, int fd, struct stat *sbp)
sys/kern/kern_descrip.c
1759
freebsd11_nfstat(struct thread *td, struct freebsd11_nfstat_args *uap)
sys/kern/kern_descrip.c
1786
sys_fpathconf(struct thread *td, struct fpathconf_args *uap)
sys/kern/kern_descrip.c
1798
kern_fpathconf(struct thread *td, int fd, int name, long *valuep)
sys/kern/kern_descrip.c
2126
fdalloc(struct thread *td, int minfd, int *result)
sys/kern/kern_descrip.c
2184
fdallocn(struct thread *td, int minfd, int *fds, int n)
sys/kern/kern_descrip.c
2213
falloc_caps(struct thread *td, struct file **resultfp, int *resultfd, int flags,
sys/kern/kern_descrip.c
2243
_falloc_noinstall(struct thread *td, struct file **resultfp, u_int n)
sys/kern/kern_descrip.c
2275
falloc_abort(struct thread *td, struct file *fp)
sys/kern/kern_descrip.c
2315
finstall_refed(struct thread *td, struct file *fp, int *fd, int flags,
sys/kern/kern_descrip.c
2333
finstall(struct thread *td, struct file *fp, int *fd, int flags,
sys/kern/kern_descrip.c
2505
fdunshare(struct thread *td)
sys/kern/kern_descrip.c
2522
pdunshare(struct thread *td)
sys/kern/kern_descrip.c
2648
fdclearlocks(struct thread *td)
sys/kern/kern_descrip.c
2727
fdescfree_fds(struct thread *td, struct filedesc *fdp)
sys/kern/kern_descrip.c
2765
fdescfree(struct thread *td)
sys/kern/kern_descrip.c
2796
pdescfree(struct thread *td)
sys/kern/kern_descrip.c
2840
fdsetugidsafety(struct thread *td)
sys/kern/kern_descrip.c
2874
fdclose(struct thread *td, struct file *fp, int idx)
sys/kern/kern_descrip.c
2891
fdcloseexec(struct thread *td)
sys/kern/kern_descrip.c
2927
fdcheckstd(struct thread *td)
sys/kern/kern_descrip.c
2966
closef(struct file *fp, struct thread *td)
sys/kern/kern_descrip.c
3105
fget_cap(struct thread *td, int fd, const cap_rights_t *needrightsp,
sys/kern/kern_descrip.c
3146
fget_cap(struct thread *td, int fd, const cap_rights_t *needrightsp,
sys/kern/kern_descrip.c
3159
fget_remote(struct thread *td, struct proc *p, int fd, struct filecaps *fcaps,
sys/kern/kern_descrip.c
3208
fget_remote_foreach(struct thread *td, struct proc *p,
sys/kern/kern_descrip.c
3366
struct thread *td;
sys/kern/kern_descrip.c
344
sys_getdtablesize(struct thread *td, struct getdtablesize_args *uap)
sys/kern/kern_descrip.c
3448
fget_unlocked_seq(struct thread *td, int fd, const cap_rights_t *needrightsp,
sys/kern/kern_descrip.c
3507
fget_unlocked_seq(struct thread *td, int fd, const cap_rights_t *needrightsp,
sys/kern/kern_descrip.c
3554
fget_unlocked_flags(struct thread *td, int fd, const cap_rights_t *needrightsp,
sys/kern/kern_descrip.c
3618
fget_unlocked(struct thread *td, int fd, const cap_rights_t *needrightsp,
sys/kern/kern_descrip.c
3700
_fget(struct thread *td, int fd, struct file **fpp, int flags,
sys/kern/kern_descrip.c
3747
fget(struct thread *td, int fd, const cap_rights_t *rightsp, struct file **fpp)
sys/kern/kern_descrip.c
375
sys_dup2(struct thread *td, struct dup2_args *uap)
sys/kern/kern_descrip.c
3754
fget_mmap(struct thread *td, int fd, const cap_rights_t *rightsp,
sys/kern/kern_descrip.c
3798
fget_read(struct thread *td, int fd, const cap_rights_t *rightsp,
sys/kern/kern_descrip.c
3806
fget_write(struct thread *td, int fd, const cap_rights_t *rightsp,
sys/kern/kern_descrip.c
3814
fget_fcntl(struct thread *td, int fd, const cap_rights_t *rightsp,
sys/kern/kern_descrip.c
3853
_fgetvp(struct thread *td, int fd, int flags, const cap_rights_t *needrightsp,
sys/kern/kern_descrip.c
3875
fgetvp(struct thread *td, int fd, const cap_rights_t *rightsp,
sys/kern/kern_descrip.c
3883
fgetvp_rights(struct thread *td, int fd, const cap_rights_t *needrightsp,
sys/kern/kern_descrip.c
391
sys_dup(struct thread *td, struct dup_args *uap)
sys/kern/kern_descrip.c
3915
fgetvp_read(struct thread *td, int fd, const cap_rights_t *rightsp,
sys/kern/kern_descrip.c
3923
fgetvp_exec(struct thread *td, int fd, const cap_rights_t *rightsp,
sys/kern/kern_descrip.c
3932
fgetvp_write(struct thread *td, int fd, const cap_rights_t *rightsp,
sys/kern/kern_descrip.c
3947
_fdrop(struct file *fp, struct thread *td)
sys/kern/kern_descrip.c
3977
sys_flock(struct thread *td, struct flock_args *uap)
sys/kern/kern_descrip.c
4025
dupfdopen(struct thread *td, struct filedesc *fdp, int dfd, int mode,
sys/kern/kern_descrip.c
409
sys_fcntl(struct thread *td, struct fcntl_args *uap)
sys/kern/kern_descrip.c
416
kern_fcntl_freebsd(struct thread *td, int fd, int cmd, intptr_t arg)
sys/kern/kern_descrip.c
4200
pwd_hold(struct thread *td)
sys/kern/kern_descrip.c
4275
pwd_chroot(struct thread *td, struct vnode *vp)
sys/kern/kern_descrip.c
4318
pwd_chdir(struct thread *td, struct vnode *vp)
sys/kern/kern_descrip.c
4340
pwd_altroot(struct thread *td, struct vnode *altroot_vp)
sys/kern/kern_descrip.c
4374
pwd_chroot_chdir(struct thread *td, struct vnode *vp)
sys/kern/kern_descrip.c
5473
int flags, struct thread *td)
sys/kern/kern_descrip.c
5481
struct thread *td)
sys/kern/kern_descrip.c
5489
struct thread *td)
sys/kern/kern_descrip.c
5497
struct thread *td)
sys/kern/kern_descrip.c
5518
badfo_close(struct file *fp, struct thread *td)
sys/kern/kern_descrip.c
5526
struct thread *td)
sys/kern/kern_descrip.c
5534
struct thread *td)
sys/kern/kern_descrip.c
5543
struct thread *td)
sys/kern/kern_descrip.c
5573
struct thread *td)
sys/kern/kern_descrip.c
5579
path_close(struct file *fp, struct thread *td)
sys/kern/kern_descrip.c
5606
int flags, struct thread *td)
sys/kern/kern_descrip.c
5614
struct thread *td)
sys/kern/kern_descrip.c
5622
struct ucred *active_cred, struct thread *td)
sys/kern/kern_descrip.c
5630
struct thread *td)
sys/kern/kern_descrip.c
5645
struct thread *td)
sys/kern/kern_descrip.c
5653
struct thread *td)
sys/kern/kern_descrip.c
5662
struct thread *td)
sys/kern/kern_descrip.c
5683
fdopen(struct cdev *dev, int mode, int type, struct thread *td)
sys/kern/kern_descrip.c
569
kern_fcntl(struct thread *td, int fd, int cmd, intptr_t arg)
sys/kern/kern_devctl.c
220
devopen(struct cdev *dev, int oflags, int devtype, struct thread *td)
sys/kern/kern_devctl.c
234
devclose(struct cdev *dev, int fflag, int devtype, struct thread *td)
sys/kern/kern_devctl.c
285
devioctl(struct cdev *dev, u_long cmd, caddr_t data, int fflag, struct thread *td)
sys/kern/kern_devctl.c
317
devpoll(struct cdev *dev, int events, struct thread *td)
sys/kern/kern_dtrace.c
92
kdtrace_thread_ctor(struct thread *td)
sys/kern/kern_dtrace.c
99
kdtrace_thread_dtor(struct thread *td)
sys/kern/kern_environment.c
101
kenv_dump(struct thread *td, char **envp, int what, char *value, int len)
sys/kern/kern_environment.c
165
kenv_read_allowed(struct thread *td, int which)
sys/kern/kern_environment.c
192
sys_kenv(struct thread *td, struct kenv_args *uap)
sys/kern/kern_event.c
111
struct thread *td, int mflag);
sys/kern/kern_event.c
115
static void kqueue_drain(struct kqueue *kq, struct thread *td);
sys/kern/kern_event.c
1207
sys_kqueue(struct thread *td, struct kqueue_args *uap)
sys/kern/kern_event.c
1214
sys_kqueuex(struct thread *td, struct kqueuex_args *uap)
sys/kern/kern_event.c
122
struct kevent *keva, struct thread *td);
sys/kern/kern_event.c
1240
kern_kqueue_alloc(struct thread *td, struct filedesc *fdp, int *fdip,
sys/kern/kern_event.c
127
static int kern_kevent_generic(struct thread *td,
sys/kern/kern_event.c
1277
kern_kqueue(struct thread *td, int flags, bool cponfork, struct filecaps *fcaps)
sys/kern/kern_event.c
1304
sys_kevent(struct thread *td, struct kevent_args *uap)
sys/kern/kern_event.c
1325
kern_kevent_generic(struct thread *td, struct g_kevent_args *uap,
sys/kern/kern_event.c
1454
freebsd11_kevent(struct thread *td, struct freebsd11_kevent_args *uap)
sys/kern/kern_event.c
1476
kern_kevent(struct thread *td, int fd, int nchanges, int nevents,
sys/kern/kern_event.c
1499
kqueue_kevent(struct kqueue *kq, struct thread *td, int nchanges, int nevents,
sys/kern/kern_event.c
1543
kern_kevent_fp(struct thread *td, struct file *fp, int nchanges, int nevents,
sys/kern/kern_event.c
1562
kern_kevent_anonymous(struct thread *td, int nevents,
sys/kern/kern_event.c
158
static void knote_drop(struct knote *kn, struct thread *td);
sys/kern/kern_event.c
159
static void knote_drop_detached(struct knote *kn, struct thread *td);
sys/kern/kern_event.c
1665
kqueue_register(struct kqueue *kq, struct kevent *kev, struct thread *td,
sys/kern/kern_event.c
1997
ast_kqueue(struct thread *td, int tda __unused)
sys/kern/kern_event.c
2119
const struct timespec *tsp, struct kevent *keva, struct thread *td)
sys/kern/kern_event.c
2321
struct ucred *active_cred, struct thread *td)
sys/kern/kern_event.c
2369
struct thread *td)
sys/kern/kern_event.c
2411
kqueue_drain(struct kqueue *kq, struct thread *td)
sys/kern/kern_event.c
2491
kqueue_close(struct file *fp, struct thread *td)
sys/kern/kern_event.c
2792
knlist_cleardel(struct knlist *knl, struct thread *td, int islocked, int killkn)
sys/kern/kern_event.c
2860
knote_fdclose(struct thread *td, int fd)
sys/kern/kern_event.c
2924
knote_drop(struct knote *kn, struct thread *td)
sys/kern/kern_event.c
2933
knote_drop_detached(struct knote *kn, struct thread *td)
sys/kern/kern_event.c
3030
kqfd_register(int fd, struct kevent *kev, struct thread *td, int mflag)
sys/kern/kern_event.c
3054
struct thread *td)
sys/kern/kern_event.c
3178
struct proc *p1, struct thread *td)
sys/kern/kern_event.c
3213
struct proc *p1, struct thread *td)
sys/kern/kern_event.c
3344
kern_proc_kqueues_out1(struct thread *td, struct proc *p, struct sbuf *s,
sys/kern/kern_event.c
3379
sysctl_kern_proc_kqueue_one(struct thread *td, struct sbuf *s, struct proc *p,
sys/kern/kern_event.c
3403
struct thread *td;
sys/kern/kern_exec.c
1168
exec_cleanup(struct thread *td, struct vmspace *oldvmspace)
sys/kern/kern_exec.c
1224
exec_onexec_old(struct thread *td)
sys/kern/kern_exec.c
1261
struct thread *td = curthread;
sys/kern/kern_exec.c
127
static int do_execve(struct thread *td, struct image_args *args,
sys/kern/kern_exec.c
1955
struct thread *td;
sys/kern/kern_exec.c
225
sys_execve(struct thread *td, struct execve_args *uap)
sys/kern/kern_exec.c
250
sys_fexecve(struct thread *td, struct fexecve_args *uap)
sys/kern/kern_exec.c
279
sys___mac_execve(struct thread *td, struct __mac_execve_args *uap)
sys/kern/kern_exec.c
301
pre_execve(struct thread *td, struct vmspace **oldvmspace)
sys/kern/kern_exec.c
322
post_execve(struct thread *td, int error, struct vmspace *oldvmspace)
sys/kern/kern_exec.c
351
kern_execve(struct thread *td, struct image_args *args, struct mac *mac_p,
sys/kern/kern_exec.c
394
execve_block(struct thread *td, struct proc *p)
sys/kern/kern_exec.c
415
execve_block_wait(struct thread *td, struct proc *p)
sys/kern/kern_exec.c
425
execve_unblock(struct thread *td, struct proc *p)
sys/kern/kern_exec.c
439
execve_block_pass(struct thread *td)
sys/kern/kern_exec.c
458
do_execve(struct thread *td, struct image_args *args, struct mac *mac_p,
sys/kern/kern_exit.c
1185
proc_to_reap(struct thread *td, struct proc *p, idtype_t idtype, id_t id,
sys/kern/kern_exit.c
1290
kern_wait(struct thread *td, pid_t pid, int *status, int options,
sys/kern/kern_exit.c
1331
report_alive_proc(struct thread *td, struct proc *p, siginfo_t *siginfo,
sys/kern/kern_exit.c
1393
wait6_check_alive(struct thread *td, int options, struct proc *p, int *status,
sys/kern/kern_exit.c
1441
kern_wait6(struct thread *td, idtype_t idtype, id_t id, int *status,
sys/kern/kern_exit.c
1555
kern_pdwait(struct thread *td, int fd, int *status,
sys/kern/kern_exit.c
208
sys__exit(struct thread *td, struct _exit_args *uap)
sys/kern/kern_exit.c
222
ast_async_exit(struct thread *td, int asts)
sys/kern/kern_exit.c
239
kern_exit(struct thread *td, int rval, int signo)
sys/kern/kern_exit.c
269
exit1(struct thread *td, int rval, int signo)
sys/kern/kern_exit.c
272
struct thread *tdt;
sys/kern/kern_exit.c
787
sys_abort2(struct thread *td, struct abort2_args *uap)
sys/kern/kern_exit.c
819
kern_abort2(struct thread *td, const char *why, int nargs, void **uargs)
sys/kern/kern_exit.c
886
owait(struct thread *td, struct owait_args *uap __unused)
sys/kern/kern_exit.c
901
sys_wait4(struct thread *td, struct wait4_args *uap)
sys/kern/kern_exit.c
919
sys_wait6(struct thread *td, struct wait6_args *uap)
sys/kern/kern_exit.c
957
sys_pdwait(struct thread *td, struct pdwait_args *uap)
sys/kern/kern_exit.c
989
proc_reap(struct thread *td, struct proc *p, int *status, int options)
sys/kern/kern_ffclock.c
387
sys_ffclock_getcounter(struct thread *td, struct ffclock_getcounter_args *uap)
sys/kern/kern_ffclock.c
416
sys_ffclock_setestimate(struct thread *td, struct ffclock_setestimate_args *uap)
sys/kern/kern_ffclock.c
448
sys_ffclock_getestimate(struct thread *td, struct ffclock_getestimate_args *uap)
sys/kern/kern_ffclock.c
463
sys_ffclock_getcounter(struct thread *td, struct ffclock_getcounter_args *uap)
sys/kern/kern_ffclock.c
470
sys_ffclock_setestimate(struct thread *td, struct ffclock_setestimate_args *uap)
sys/kern/kern_ffclock.c
477
sys_ffclock_getestimate(struct thread *td, struct ffclock_getestimate_args *uap)
sys/kern/kern_fork.c
101
sys_fork(struct thread *td, struct fork_args *uap)
sys/kern/kern_fork.c
1180
struct thread *td;
sys/kern/kern_fork.c
1181
struct thread *dtd;
sys/kern/kern_fork.c
119
sys_pdfork(struct thread *td, struct pdfork_args *uap)
sys/kern/kern_fork.c
1241
fork_return(struct thread *td, struct trapframe *frame)
sys/kern/kern_fork.c
146
sys_vfork(struct thread *td, struct vfork_args *uap)
sys/kern/kern_fork.c
163
sys_rfork(struct thread *td, struct rfork_args *uap)
sys/kern/kern_fork.c
194
sys_pdrfork(struct thread *td, struct pdrfork_args *uap)
sys/kern/kern_fork.c
353
fork_norfproc(struct thread *td, int flags)
sys/kern/kern_fork.c
415
do_fork(struct thread *td, struct fork_req *fr, struct proc *p2, struct thread *td2,
sys/kern/kern_fork.c
511
__rangeof(struct thread, td_startzero, td_endzero));
sys/kern/kern_fork.c
514
__rangeof(struct thread, td_startcopy, td_endcopy));
sys/kern/kern_fork.c
862
ast_vfork(struct thread *td, int tda __unused)
sys/kern/kern_fork.c
907
fork1(struct thread *td, struct fork_req *fr)
sys/kern/kern_fork.c
910
struct thread *td2;
sys/kern/kern_idle.c
57
struct thread *td;
sys/kern/kern_intr.c
1248
struct thread *td;
sys/kern/kern_intr.c
1349
struct thread *td;
sys/kern/kern_intr.c
1352
bool filter, thread;
sys/kern/kern_intr.c
1369
thread = false;
sys/kern/kern_intr.c
1390
thread = true;
sys/kern/kern_intr.c
1428
if (!thread) {
sys/kern/kern_intr.c
1430
thread = true;
sys/kern/kern_intr.c
1437
if (thread) {
sys/kern/kern_intr.c
1446
if (thread) {
sys/kern/kern_intr.c
1456
if (!thread && !filter)
sys/kern/kern_intr.c
186
struct thread *td;
sys/kern/kern_intr.c
486
struct thread *td;
sys/kern/kern_intr.c
557
struct thread *td;
sys/kern/kern_intr.c
581
struct thread *td;
sys/kern/kern_intr.c
74
struct thread *it_thread; /* Kernel thread. */
sys/kern/kern_intr.c
832
struct thread *td;
sys/kern/kern_intr.c
85
struct thread *td;
sys/kern/kern_intr.c
963
struct thread *td;
sys/kern/kern_intr.c
964
struct thread *ctd;
sys/kern/kern_jail.c
1010
kern_jail_set(struct thread *td, struct uio *optuio, int flags)
sys/kern/kern_jail.c
160
static int do_jail_attach(struct thread *td, struct prison *pr, int *drflagsp);
sys/kern/kern_jail.c
161
static int prison_attach_thread_single(struct thread *td);
sys/kern/kern_jail.c
162
static void prison_attach_thread_single_end(struct thread *td);
sys/kern/kern_jail.c
2550
sys_jail_get(struct thread *td, struct jail_get_args *uap)
sys/kern/kern_jail.c
2571
kern_jail_get(struct thread *td, struct uio *optuio, int flags)
sys/kern/kern_jail.c
2990
sys_jail_remove(struct thread *td, struct jail_remove_args *uap)
sys/kern/kern_jail.c
3024
sys_jail_remove_jd(struct thread *td, struct jail_remove_jd_args *uap)
sys/kern/kern_jail.c
3067
sys_jail_attach(struct thread *td, struct jail_attach_args *uap)
sys/kern/kern_jail.c
3115
sys_jail_attach_jd(struct thread *td, struct jail_attach_jd_args *uap)
sys/kern/kern_jail.c
3162
do_jail_attach(struct thread *td, struct prison *pr, int *drflagsp)
sys/kern/kern_jail.c
3277
prison_attach_thread_single(struct thread *td)
sys/kern/kern_jail.c
3294
prison_attach_thread_single_end(struct thread *td)
sys/kern/kern_jail.c
352
sys_jail(struct thread *td, struct jail_args *uap)
sys/kern/kern_jail.c
401
kern_jail(struct thread *td, struct jail *j)
sys/kern/kern_jail.c
566
sys_jail_set(struct thread *td, struct jail_set_args *uap)
sys/kern/kern_jaildesc.c
114
jaildesc_find(struct thread *td, int fd, struct prison **prp,
sys/kern/kern_jaildesc.c
145
jaildesc_alloc(struct thread *td, struct file **fpp, int *fdp, int owning)
sys/kern/kern_jaildesc.c
244
jaildesc_close(struct file *fp, struct thread *td)
sys/kern/kern_jaildesc.c
300
struct thread *td)
sys/kern/kern_jaildesc.c
426
jaildesc_cmp(struct file *fp1, struct file *fp2, struct thread *td)
sys/kern/kern_kcov.c
125
struct thread *thread; /* (l) */
sys/kern/kern_kcov.c
165
get_kinfo(struct thread *td)
sys/kern/kern_kcov.c
194
struct thread *td;
sys/kern/kern_kcov.c
225
struct thread *td;
sys/kern/kern_kcov.c
272
struct thread *thread;
sys/kern/kern_kcov.c
285
thread = info->thread;
sys/kern/kern_kcov.c
288
if (thread != NULL)
sys/kern/kern_kcov.c
302
kcov_open(struct cdev *dev, int oflags, int devtype, struct thread *td)
sys/kern/kern_kcov.c
309
info->thread = NULL;
sys/kern/kern_kcov.c
319
kcov_close(struct cdev *dev, int fflag, int devtype, struct thread *td)
sys/kern/kern_kcov.c
421
struct thread *td)
sys/kern/kern_kcov.c
469
KASSERT(info->thread == NULL,
sys/kern/kern_kcov.c
471
info->thread = td;
sys/kern/kern_kcov.c
502
info->thread = NULL;
sys/kern/kern_kcov.c
514
kcov_thread_dtor(void *arg __unused, struct thread *td)
sys/kern/kern_kcov.c
538
info->thread = NULL;
sys/kern/kern_kexec.c
161
kern_kexec_load(struct thread *td, u_long entry, u_long nseg,
sys/kern/kern_kexec.c
341
sys_kexec_load(struct thread *td, struct kexec_load_args *uap)
sys/kern/kern_kthread.c
158
struct thread *td;
sys/kern/kern_kthread.c
265
struct thread **newtdp, int flags, int pages, const char *tdname)
sys/kern/kern_kthread.c
267
struct thread *newtd, *oldtd;
sys/kern/kern_kthread.c
297
__rangeof(struct thread, td_startzero, td_endzero));
sys/kern/kern_kthread.c
299
__rangeof(struct thread, td_startcopy, td_endcopy));
sys/kern/kern_kthread.c
345
struct thread **newtdp, int flags, int pages, const char *fmt, ...)
sys/kern/kern_kthread.c
364
struct thread *td;
sys/kern/kern_kthread.c
401
kthread_suspend(struct thread *td, int timo)
sys/kern/kern_kthread.c
432
kthread_resume(struct thread *td)
sys/kern/kern_kthread.c
463
struct thread *td;
sys/kern/kern_kthread.c
489
struct proc **procptr, struct thread **tdptr,
sys/kern/kern_kthread.c
495
struct thread *td;
sys/kern/kern_kthread.c
85
struct thread *td;
sys/kern/kern_ktr.c
331
struct thread *td;
sys/kern/kern_ktrace.c
1023
struct thread *td = curthread;
sys/kern/kern_ktrace.c
1043
struct thread *td = curthread;
sys/kern/kern_ktrace.c
1060
ktrexterr(struct thread *td)
sys/kern/kern_ktrace.c
1082
ktrexterr(struct thread *td __unused)
sys/kern/kern_ktrace.c
1099
sys_ktrace(struct thread *td, struct ktrace_args *uap)
sys/kern/kern_ktrace.c
1234
sys_utrace(struct thread *td, struct utrace_args *uap)
sys/kern/kern_ktrace.c
1268
ktrops(struct thread *td, struct proc *p, int ops, int facs,
sys/kern/kern_ktrace.c
1328
ktrsetchildren(struct thread *td, struct proc *top, int ops, int facs,
sys/kern/kern_ktrace.c
1361
ktr_writerequest(struct thread *td, struct ktr_request *req)
sys/kern/kern_ktrace.c
1477
ktrcanset(struct thread *td, struct proc *targetp)
sys/kern/kern_ktrace.c
169
static struct ktr_request *ktr_getrequest_entered(struct thread *td, int type);
sys/kern/kern_ktrace.c
171
static void ktr_submitrequest(struct thread *td, struct ktr_request *req);
sys/kern/kern_ktrace.c
175
static void ktr_writerequest(struct thread *td, struct ktr_request *req);
sys/kern/kern_ktrace.c
176
static int ktrcanset(struct thread *,struct proc *);
sys/kern/kern_ktrace.c
177
static int ktrsetchildren(struct thread *, struct proc *, int, int,
sys/kern/kern_ktrace.c
179
static int ktrops(struct thread *, struct proc *, int, int,
sys/kern/kern_ktrace.c
181
static void ktrprocctor_entered(struct thread *, struct proc *);
sys/kern/kern_ktrace.c
190
ktrace_enter(struct thread *td)
sys/kern/kern_ktrace.c
198
ktrace_exit(struct thread *td)
sys/kern/kern_ktrace.c
206
ktrace_assert(struct thread *td)
sys/kern/kern_ktrace.c
213
ast_ktrace(struct thread *td, int tda __unused)
sys/kern/kern_ktrace.c
239
struct thread *td;
sys/kern/kern_ktrace.c
309
(sizeof((struct thread *)NULL)->td_name));
sys/kern/kern_ktrace.c
312
ktr_getrequest_entered(struct thread *td, int type)
sys/kern/kern_ktrace.c
356
struct thread *td = curthread;
sys/kern/kern_ktrace.c
374
ktr_enqueuerequest(struct thread *td, struct ktr_request *req)
sys/kern/kern_ktrace.c
397
ktr_drain(struct thread *td)
sys/kern/kern_ktrace.c
426
ktr_submitrequest(struct thread *td, struct ktr_request *req)
sys/kern/kern_ktrace.c
488
ktr_io_params_alloc(struct thread *td, struct vnode *vp)
sys/kern/kern_ktrace.c
633
ktrprocexit(struct thread *td)
sys/kern/kern_ktrace.c
660
ktrprocctor_entered(struct thread *td, struct proc *p)
sys/kern/kern_ktrace.c
664
struct thread *td2;
sys/kern/kern_ktrace.c
679
struct thread *td = curthread;
sys/kern/kern_ktrace.c
720
ktruserret(struct thread *td)
sys/kern/kern_ktrace.c
825
struct thread *td = curthread;
sys/kern/kern_ktrace.c
844
struct thread *td = curthread;
sys/kern/kern_ktrace.c
967
struct thread *td = curthread;
sys/kern/kern_linker.c
111
static struct thread *kld_busy_owner;
sys/kern/kern_linker.c
1203
kern_kldload(struct thread *td, const char *file, int *fileid)
sys/kern/kern_linker.c
1253
sys_kldload(struct thread *td, struct kldload_args *uap)
sys/kern/kern_linker.c
1272
kern_kldunload(struct thread *td, int fileid, int flags)
sys/kern/kern_linker.c
1317
sys_kldunload(struct thread *td, struct kldunload_args *uap)
sys/kern/kern_linker.c
1324
sys_kldunloadf(struct thread *td, struct kldunloadf_args *uap)
sys/kern/kern_linker.c
1334
sys_kldfind(struct thread *td, struct kldfind_args *uap)
sys/kern/kern_linker.c
1367
sys_kldnext(struct thread *td, struct kldnext_args *uap)
sys/kern/kern_linker.c
1404
sys_kldstat(struct thread *td, struct kldstat_args *uap)
sys/kern/kern_linker.c
1428
kern_kldstat(struct thread *td, int fileid, struct kld_file_stat *stat)
sys/kern/kern_linker.c
1485
sys_kldfirstmod(struct thread *td, struct kldfirstmod_args *uap)
sys/kern/kern_linker.c
1514
sys_kldsym(struct thread *td, struct kldsym_args *uap)
sys/kern/kern_linker.c
1944
struct thread *td = curthread; /* XXX */
sys/kern/kern_linker.c
1998
struct thread *td = curthread; /* XXX */
sys/kern/kern_lock.c
153
struct thread **owner);
sys/kern/kern_lock.c
1641
struct thread *td;
sys/kern/kern_lock.c
1652
if (td == (struct thread *)LK_KERNPROC)
sys/kern/kern_lock.c
1777
lockmgr_chain(struct thread *td, struct thread **ownerp)
sys/kern/kern_lock.c
1801
struct thread *td;
sys/kern/kern_lock.c
1813
if (td == (struct thread *)LK_KERNPROC)
sys/kern/kern_lock.c
249
static __inline struct thread *
sys/kern/kern_lock.c
255
return ((x & LK_SHARE) ? NULL : (struct thread *)LK_HOLDER(x));
sys/kern/kern_lock.c
419
owner_lockmgr(const struct lock_object *lock, struct thread **owner)
sys/kern/kern_lock.c
548
struct thread *owner;
sys/kern/kern_lock.c
553
owner = (struct thread *)LK_HOLDER(x);
sys/kern/kern_lock.c
556
if (owner == (struct thread *)LK_KERNPROC)
sys/kern/kern_lock.c
572
owner = (struct thread *)LK_HOLDER(x);
sys/kern/kern_lock.c
733
struct thread *owner;
sys/kern/kern_lock.c
738
owner = (struct thread *)LK_HOLDER(x);
sys/kern/kern_lock.c
745
if (owner == (struct thread *)LK_KERNPROC)
sys/kern/kern_lock.c
757
owner = (struct thread *)LK_HOLDER(x);
sys/kern/kern_loginclass.c
180
sys_getloginclass(struct thread *td, struct getloginclass_args *uap)
sys/kern/kern_loginclass.c
202
sys_setloginclass(struct thread *td, struct setloginclass_args *uap)
sys/kern/kern_membarrier.c
118
kern_membarrier(struct thread *td, int cmd, unsigned flags, int cpu_id)
sys/kern/kern_membarrier.c
121
struct thread *td1;
sys/kern/kern_membarrier.c
251
sys_membarrier(struct thread *td, struct membarrier_args *uap)
sys/kern/kern_module.c
306
sys_modnext(struct thread *td, struct modnext_args *uap)
sys/kern/kern_module.c
337
sys_modfnext(struct thread *td, struct modfnext_args *uap)
sys/kern/kern_module.c
375
sys_modstat(struct thread *td, struct modstat_args *uap)
sys/kern/kern_module.c
447
sys_modfind(struct thread *td, struct modfind_args *uap)
sys/kern/kern_module.c
499
freebsd32_modstat(struct thread *td, struct freebsd32_modstat_args *uap)
sys/kern/kern_mutex.c
1002
thread_lock_block_wait(struct thread *td)
sys/kern/kern_mutex.c
1013
thread_lock_set(struct thread *td, struct mtx *new)
sys/kern/kern_mutex.c
107
struct thread **owner);
sys/kern/kern_mutex.c
1255
struct thread *td;
sys/kern/kern_mutex.c
1305
struct thread *owner;
sys/kern/kern_mutex.c
1335
struct thread *td;
sys/kern/kern_mutex.c
261
owner_mtx(const struct lock_object *lock, struct thread **owner)
sys/kern/kern_mutex.c
268
*owner = (struct thread *)(x & ~MTX_FLAGMASK);
sys/kern/kern_mutex.c
436
struct thread *td;
sys/kern/kern_mutex.c
518
struct thread *td;
sys/kern/kern_mutex.c
522
struct thread *owner;
sys/kern/kern_mutex.c
620
sched_tdname((struct thread *)tid),
sys/kern/kern_mutex.c
629
sched_tdname((struct thread *)tid),
sys/kern/kern_mutex.c
771
KTR_STATE1(KTR_SCHED, "thread", sched_tdname((struct thread *)tid),
sys/kern/kern_mutex.c
802
KTR_STATE0(KTR_SCHED, "thread", sched_tdname((struct thread *)tid),
sys/kern/kern_mutex.c
843
_thread_lock(struct thread *td, int opts, const char *file, int line)
sys/kern/kern_mutex.c
846
_thread_lock(struct thread *td)
sys/kern/kern_mutex.c
880
thread_lock_flags_(struct thread *td, int opts, const char *file, int line)
sys/kern/kern_mutex.c
979
thread_lock_block(struct thread *td)
sys/kern/kern_mutex.c
991
thread_lock_unblock(struct thread *td, struct mtx *new)
sys/kern/kern_ntptime.c
287
sys_ntp_gettime(struct thread *td, struct ntp_gettime_args *uap)
sys/kern/kern_ntptime.c
345
kern_ntp_adjtime(struct thread *td, struct timex *ntv, int *retvalp)
sys/kern/kern_ntptime.c
481
sys_ntp_adjtime(struct thread *td, struct ntp_adjtime_args *uap)
sys/kern/kern_ntptime.c
937
sys_adjtime(struct thread *td, struct adjtime_args *uap)
sys/kern/kern_ntptime.c
956
kern_adjtime(struct thread *td, struct timeval *delta, struct timeval *olddelta)
sys/kern/kern_pmc.c
70
int __read_mostly (*pmc_hook)(struct thread *td, int function, void *arg) = NULL;
sys/kern/kern_pmc.c
76
void __read_mostly (*hwt_hook)(struct thread *td, int func, void *arg) = NULL;
sys/kern/kern_poll.c
554
struct thread *td = curthread;
sys/kern/kern_priv.c
270
priv_check(struct thread *td, int priv)
sys/kern/kern_proc.c
1064
struct thread *td;
sys/kern/kern_proc.c
1085
struct thread *td0;
sys/kern/kern_proc.c
116
static void fill_kinfo_thread(struct thread *td, struct kinfo_proc *kp,
sys/kern/kern_proc.c
1251
fill_kinfo_thread(struct thread *td, struct kinfo_proc *kp, int preferthread)
sys/kern/kern_proc.c
153
const int thread_off_td_tid = offsetof(struct thread, td_tid);
sys/kern/kern_proc.c
154
const int thread_off_td_name = offsetof(struct thread, td_name);
sys/kern/kern_proc.c
1548
struct thread *td;
sys/kern/kern_proc.c
155
const int thread_off_td_oncpu = offsetof(struct thread, td_oncpu);
sys/kern/kern_proc.c
156
const int thread_off_td_pcb = offsetof(struct thread, td_pcb);
sys/kern/kern_proc.c
157
const int thread_off_td_plist = offsetof(struct thread, td_plist);
sys/kern/kern_proc.c
1841
proc_read_string(struct thread *td, struct vmspace *vm, const char *sptr,
sys/kern/kern_proc.c
1867
get_proc_vector32(struct thread *td, struct proc *p, struct vmspace *vm,
sys/kern/kern_proc.c
1941
get_proc_vector(struct thread *td, struct proc *p, struct vmspace *vm,
sys/kern/kern_proc.c
2032
get_ps_strings(struct thread *td, struct proc *p, struct sbuf *sb,
sys/kern/kern_proc.c
2088
proc_getargv(struct thread *td, struct proc *p, struct sbuf *sb)
sys/kern/kern_proc.c
2095
proc_getenvv(struct thread *td, struct proc *p, struct sbuf *sb)
sys/kern/kern_proc.c
2102
proc_getauxv(struct thread *td, struct proc *p, struct sbuf *sb)
sys/kern/kern_proc.c
217
struct thread *td;
sys/kern/kern_proc.c
239
struct thread *td;
sys/kern/kern_proc.c
2427
struct thread *td;
sys/kern/kern_proc.c
2648
struct thread *td;
sys/kern/kern_proc.c
2863
struct thread *td, *ctd;
sys/kern/kern_proc.c
2995
struct thread *td;
sys/kern/kern_proc.c
3233
struct thread *td1;
sys/kern/kern_proc.c
3302
struct thread *td;
sys/kern/kern_proc.c
514
struct thread *td1;
sys/kern/kern_procctl.c
1017
int (*exec)(struct thread *, struct proc *, void *);
sys/kern/kern_procctl.c
1018
bool (*sapblk)(struct thread *, void *);
sys/kern/kern_procctl.c
108
protect_set(struct thread *td, struct proc *p, void *data)
sys/kern/kern_procctl.c
1172
sys_procctl(struct thread *td, struct procctl_args *uap)
sys/kern/kern_procctl.c
1211
kern_procctl_single(struct thread *td, struct proc *p, int com, void *data)
sys/kern/kern_procctl.c
1225
kern_procctl(struct thread *td, idtype_t idtype, id_t id, int com, void *data)
sys/kern/kern_procctl.c
145
reap_acquire(struct thread *td, struct proc *p, void *data __unused)
sys/kern/kern_procctl.c
162
reap_release(struct thread *td, struct proc *p, void *data __unused)
sys/kern/kern_procctl.c
177
reap_status(struct thread *td, struct proc *p, void *data)
sys/kern/kern_procctl.c
228
reap_getpids(struct thread *td, struct proc *p, void *data)
sys/kern/kern_procctl.c
385
reap_kill_children(struct thread *td, struct proc *reaper,
sys/kern/kern_procctl.c
415
reap_kill_subtree_once(struct thread *td, struct proc *p, struct proc **reaperp,
sys/kern/kern_procctl.c
508
reap_kill_subtree(struct thread *td, struct proc *p, struct proc **reaperp,
sys/kern/kern_procctl.c
547
reap_kill_sapblk(struct thread *td __unused, void *data)
sys/kern/kern_procctl.c
556
reap_kill(struct thread *td, struct proc *p, void *data)
sys/kern/kern_procctl.c
56
protect_setchild(struct thread *td, struct proc *p, int flags)
sys/kern/kern_procctl.c
604
trace_ctl(struct thread *td, struct proc *p, void *data)
sys/kern/kern_procctl.c
646
trace_status(struct thread *td, struct proc *p, void *data)
sys/kern/kern_procctl.c
664
trapcap_ctl(struct thread *td, struct proc *p, void *data)
sys/kern/kern_procctl.c
685
trapcap_status(struct thread *td, struct proc *p, void *data)
sys/kern/kern_procctl.c
696
no_new_privs_ctl(struct thread *td, struct proc *p, void *data)
sys/kern/kern_procctl.c
710
no_new_privs_status(struct thread *td, struct proc *p, void *data)
sys/kern/kern_procctl.c
719
protmax_ctl(struct thread *td, struct proc *p, void *data)
sys/kern/kern_procctl.c
74
protect_setchildren(struct thread *td, struct proc *top, int flags)
sys/kern/kern_procctl.c
745
protmax_status(struct thread *td, struct proc *p, void *data)
sys/kern/kern_procctl.c
767
aslr_ctl(struct thread *td, struct proc *p, void *data)
sys/kern/kern_procctl.c
793
aslr_status(struct thread *td, struct proc *p, void *data)
sys/kern/kern_procctl.c
822
stackgap_ctl(struct thread *td, struct proc *p, void *data)
sys/kern/kern_procctl.c
862
stackgap_status(struct thread *td, struct proc *p, void *data)
sys/kern/kern_procctl.c
877
wxmap_ctl(struct thread *td, struct proc *p, void *data)
sys/kern/kern_procctl.c
917
wxmap_status(struct thread *td, struct proc *p, void *data)
sys/kern/kern_procctl.c
942
pdeathsig_ctl(struct thread *td, struct proc *p, void *data)
sys/kern/kern_procctl.c
954
pdeathsig_status(struct thread *td, struct proc *p, void *data)
sys/kern/kern_procctl.c
963
logsigexit_ctl(struct thread *td, struct proc *p, void *data)
sys/kern/kern_procctl.c
988
logsigexit_status(struct thread *td, struct proc *p, void *data)
sys/kern/kern_prot.c
1016
sys_seteuid(struct thread *td, struct seteuid_args *uap)
sys/kern/kern_prot.c
1074
sys_setgid(struct thread *td, struct setgid_args *uap)
sys/kern/kern_prot.c
1173
sys_setegid(struct thread *td, struct setegid_args *uap)
sys/kern/kern_prot.c
1215
freebsd14_setgroups(struct thread *td, struct freebsd14_setgroups_args *uap)
sys/kern/kern_prot.c
1259
sys_setgroups(struct thread *td, struct setgroups_args *uap)
sys/kern/kern_prot.c
1297
kern_setgroups(struct thread *td, int *ngrpp, gid_t *groups)
sys/kern/kern_prot.c
130
sys_getpid(struct thread *td, struct getpid_args *uap)
sys/kern/kern_prot.c
1357
sys_setreuid(struct thread *td, struct setreuid_args *uap)
sys/kern/kern_prot.c
1440
sys_setregid(struct thread *td, struct setregid_args *uap)
sys/kern/kern_prot.c
149
sys_getppid(struct thread *td, struct getppid_args *uap)
sys/kern/kern_prot.c
1506
sys_setresuid(struct thread *td, struct setresuid_args *uap)
sys/kern/kern_prot.c
157
kern_getppid(struct thread *td)
sys/kern/kern_prot.c
1601
sys_setresgid(struct thread *td, struct setresgid_args *uap)
sys/kern/kern_prot.c
1669
sys_getresuid(struct thread *td, struct getresuid_args *uap)
sys/kern/kern_prot.c
1696
sys_getresgid(struct thread *td, struct getresgid_args *uap)
sys/kern/kern_prot.c
1721
sys_issetugid(struct thread *td, struct issetugid_args *uap)
sys/kern/kern_prot.c
173
sys_getpgrp(struct thread *td, struct getpgrp_args *uap)
sys/kern/kern_prot.c
1738
sys___setugid(struct thread *td, struct __setugid_args *uap)
sys/kern/kern_prot.c
190
sys_getpgid(struct thread *td, struct getpgid_args *uap)
sys/kern/kern_prot.c
2052
p_cansee(struct thread *td, struct proc *p)
sys/kern/kern_prot.c
2173
p_cansignal(struct thread *td, struct proc *p, int signum)
sys/kern/kern_prot.c
2214
p_cansched(struct thread *td, struct proc *p)
sys/kern/kern_prot.c
222
sys_getsid(struct thread *td, struct getsid_args *uap)
sys/kern/kern_prot.c
229
kern_getsid(struct thread *td, pid_t pid)
sys/kern/kern_prot.c
2325
p_candebug(struct thread *td, struct proc *p)
sys/kern/kern_prot.c
2429
p_canwait(struct thread *td, struct proc *p)
sys/kern/kern_prot.c
2487
crunuse(struct thread *td)
sys/kern/kern_prot.c
2538
crcowfree(struct thread *td)
sys/kern/kern_prot.c
2550
struct thread *td;
sys/kern/kern_prot.c
2573
credbatch_add(struct credbatch *crb, struct thread *td)
sys/kern/kern_prot.c
263
sys_getuid(struct thread *td, struct getuid_args *uap)
sys/kern/kern_prot.c
2635
struct thread *td;
sys/kern/kern_prot.c
2656
struct thread *td;
sys/kern/kern_prot.c
2777
cru2xt(struct thread *td, struct xucred *xcr)
sys/kern/kern_prot.c
280
sys_geteuid(struct thread *td, struct geteuid_args *uap)
sys/kern/kern_prot.c
294
sys_getgid(struct thread *td, struct getgid_args *uap)
sys/kern/kern_prot.c
3071
sys_getlogin(struct thread *td, struct getlogin_args *uap)
sys/kern/kern_prot.c
3099
sys_setlogin(struct thread *td, struct setlogin_args *uap)
sys/kern/kern_prot.c
311
sys_getegid(struct thread *td, struct getegid_args *uap)
sys/kern/kern_prot.c
320
freebsd14_getgroups(struct thread *td, struct freebsd14_getgroups_args *uap)
sys/kern/kern_prot.c
358
sys_getgroups(struct thread *td, struct getgroups_args *uap)
sys/kern/kern_prot.c
386
sys_setsid(struct thread *td, struct setsid_args *uap)
sys/kern/kern_prot.c
446
sys_setpgid(struct thread *td, struct setpgid_args *uap)
sys/kern/kern_prot.c
593
user_setcred(struct thread *td, const u_int flags, struct setcred *const wcred)
sys/kern/kern_prot.c
660
sys_setcred(struct thread *td, struct setcred_args *uap)
sys/kern/kern_prot.c
677
kern_setcred(struct thread *const td, const u_int flags,
sys/kern/kern_prot.c
889
sys_setuid(struct thread *td, struct setuid_args *uap)
sys/kern/kern_racct.c
440
struct thread *td;
sys/kern/kern_racct.c
881
ast_racct(struct thread *td, int tda __unused)
sys/kern/kern_racct.c
908
struct thread *td;
sys/kern/kern_rangelock.c
292
struct thread *rl_q_owner;
sys/kern/kern_rctl.c
1609
sys_rctl_get_racct(struct thread *td, struct rctl_get_racct_args *uap)
sys/kern/kern_rctl.c
1705
sys_rctl_get_rules(struct thread *td, struct rctl_get_rules_args *uap)
sys/kern/kern_rctl.c
1791
sys_rctl_get_limits(struct thread *td, struct rctl_get_limits_args *uap)
sys/kern/kern_rctl.c
1874
sys_rctl_add_rule(struct thread *td, struct rctl_add_rule_args *uap)
sys/kern/kern_rctl.c
1919
sys_rctl_remove_rule(struct thread *td, struct rctl_remove_rule_args *uap)
sys/kern/kern_rctl.c
2213
sys_rctl_get_racct(struct thread *td, struct rctl_get_racct_args *uap)
sys/kern/kern_rctl.c
2220
sys_rctl_get_rules(struct thread *td, struct rctl_get_rules_args *uap)
sys/kern/kern_rctl.c
2227
sys_rctl_get_limits(struct thread *td, struct rctl_get_limits_args *uap)
sys/kern/kern_rctl.c
2234
sys_rctl_add_rule(struct thread *td, struct rctl_add_rule_args *uap)
sys/kern/kern_rctl.c
2241
sys_rctl_remove_rule(struct thread *td, struct rctl_remove_rule_args *uap)
sys/kern/kern_resource.c
1186
sys_getrusage(struct thread *td, struct getrusage_args *uap)
sys/kern/kern_resource.c
1198
kern_getrusage(struct thread *td, int who, struct rusage *rup)
sys/kern/kern_resource.c
1265
ruxagg_ext_locked(struct rusage_ext *rux, struct thread *td)
sys/kern/kern_resource.c
1275
ruxagg_locked(struct proc *p, struct thread *td)
sys/kern/kern_resource.c
1289
ruxagg(struct proc *p, struct thread *td)
sys/kern/kern_resource.c
1304
struct thread *td;
sys/kern/kern_resource.c
1358
struct thread *td;
sys/kern/kern_resource.c
1406
limbatch_add(struct limbatch *lb, struct thread *td)
sys/kern/kern_resource.c
1449
lim_max(struct thread *td, int which)
sys/kern/kern_resource.c
1471
(lim_cur)(struct thread *td, int which)
sys/kern/kern_resource.c
1493
lim_rlimit(struct thread *td, int which, struct rlimit *rlp)
sys/kern/kern_resource.c
1802
struct thread *td;
sys/kern/kern_resource.c
187
sys_setpriority(struct thread *td, struct setpriority_args *uap)
sys/kern/kern_resource.c
194
kern_setpriority(struct thread *td, int which, int who, int prio)
sys/kern/kern_resource.c
282
donice(struct thread *td, struct proc *p, int n)
sys/kern/kern_resource.c
315
sys_rtprio_thread(struct thread *td, struct rtprio_thread_args *uap)
sys/kern/kern_resource.c
319
struct thread *td1;
sys/kern/kern_resource.c
396
sys_rtprio(struct thread *td, struct rtprio_args *uap)
sys/kern/kern_resource.c
399
struct thread *tdp;
sys/kern/kern_resource.c
490
rtp_to_pri(struct rtprio *rtp, struct thread *td)
sys/kern/kern_resource.c
533
pri_to_rtp(struct thread *td, struct rtprio *rtp)
sys/kern/kern_resource.c
562
osetrlimit(struct thread *td, struct osetrlimit_args *uap)
sys/kern/kern_resource.c
583
ogetrlimit(struct thread *td, struct ogetrlimit_args *uap)
sys/kern/kern_resource.c
616
sys_setrlimit(struct thread *td, struct setrlimit_args *uap)
sys/kern/kern_resource.c
631
struct thread *td;
sys/kern/kern_resource.c
663
kern_setrlimit(struct thread *td, u_int which, struct rlimit *limp)
sys/kern/kern_resource.c
670
kern_proc_setrlimit(struct thread *td, struct proc *p, u_int which,
sys/kern/kern_resource.c
77
static int donice(struct thread *td, struct proc *chgp, int n);
sys/kern/kern_resource.c
79
static void ruxagg_ext_locked(struct rusage_ext *rux, struct thread *td);
sys/kern/kern_resource.c
814
sys_getrlimit(struct thread *td, struct getrlimit_args *uap)
sys/kern/kern_resource.c
830
struct thread *td;
sys/kern/kern_resource.c
91
sys_getpriority(struct thread *td, struct getpriority_args *uap)
sys/kern/kern_resource.c
927
sys_getrlimitusage(struct thread *td, struct getrlimitusage_args *uap)
sys/kern/kern_resource.c
963
struct thread *td;
sys/kern/kern_resource.c
98
kern_getpriority(struct thread *td, int which, int who)
sys/kern/kern_resource.c
993
rufetchtd(struct thread *td, struct rusage *ru)
sys/kern/kern_rmlock.c
139
struct thread *td;
sys/kern/kern_rmlock.c
180
owner_rm(const struct lock_object *lock, struct thread **owner)
sys/kern/kern_rmlock.c
224
const struct thread *td)
sys/kern/kern_rmlock.c
436
struct thread *td = curthread;
sys/kern/kern_rmlock.c
472
_rm_unlock_hard(struct thread *td,struct rm_priotracker *tracker)
sys/kern/kern_rmlock.c
508
struct thread *td = tracker->rmp_thread;
sys/kern/kern_rmlock.c
818
struct thread *td;
sys/kern/kern_rmlock.c
82
static int owner_rm(const struct lock_object *lock, struct thread **owner);
sys/kern/kern_rwlock.c
136
(struct thread *)RW_OWNER((v)))
sys/kern/kern_rwlock.c
1545
struct thread *td;
sys/kern/kern_rwlock.c
211
owner_rw(const struct lock_object *lock, struct thread **owner)
sys/kern/kern_rwlock.c
317
struct thread *td;
sys/kern/kern_rwlock.c
402
__rw_can_read(struct thread *td, uintptr_t v, bool fp)
sys/kern/kern_rwlock.c
414
__rw_rlock_try(struct rwlock *rw, struct thread *td, uintptr_t *vp, bool fp
sys/kern/kern_rwlock.c
444
__rw_rlock_hard(struct rwlock *rw, struct thread *td, uintptr_t v
sys/kern/kern_rwlock.c
448
struct thread *owner;
sys/kern/kern_rwlock.c
514
owner = (struct thread *)RW_OWNER(v);
sys/kern/kern_rwlock.c
677
struct thread *td;
sys/kern/kern_rwlock.c
760
__rw_runlock_try(struct rwlock *rw, struct thread *td, uintptr_t *vp)
sys/kern/kern_rwlock.c
77
static int owner_rw(const struct lock_object *lock, struct thread **owner);
sys/kern/kern_rwlock.c
783
__rw_runlock_hard(struct rwlock *rw, struct thread *td, uintptr_t v
sys/kern/kern_rwlock.c
858
struct thread *td;
sys/kern/kern_rwlock.c
916
struct thread *owner;
sys/kern/kern_rwlock.c
968
if (__predict_false(lv_rw_wowner(v) == (struct thread *)tid)) {
sys/kern/kern_sendfile.c
1212
sendfile(struct thread *td, struct sendfile_args *uap, int compat)
sys/kern/kern_sendfile.c
1297
sys_sendfile(struct thread *td, struct sendfile_args *uap)
sys/kern/kern_sendfile.c
1305
freebsd4_sendfile(struct thread *td, struct freebsd4_sendfile_args *uap)
sys/kern/kern_sendfile.c
530
sendfile_getobj(struct thread *td, struct file *fp, vm_object_t *obj_res,
sys/kern/kern_sendfile.c
608
sendfile_getsock(struct thread *td, int s, struct file **sock_fp,
sys/kern/kern_sendfile.c
711
struct thread *td)
sys/kern/kern_shutdown.c
1035
struct thread *td;
sys/kern/kern_shutdown.c
1041
td = (struct thread *)arg;
sys/kern/kern_shutdown.c
294
sys_reboot(struct thread *td, struct reboot_args *uap)
sys/kern/kern_shutdown.c
896
struct thread *td = curthread;
sys/kern/kern_sig.c
1000
osigaction(struct thread *td, struct osigaction_args *uap)
sys/kern/kern_sig.c
1034
osigreturn(struct thread *td, struct osigreturn_args *uap)
sys/kern/kern_sig.c
105
static int killpg1(struct thread *td, int sig, int pgid, int all,
sys/kern/kern_sig.c
107
static int issignal(struct thread *td);
sys/kern/kern_sig.c
1085
struct thread *td;
sys/kern/kern_sig.c
110
static void tdsigwakeup(struct thread *, int, sig_t, int);
sys/kern/kern_sig.c
111
static bool sig_suspend_threads(struct thread *, struct proc *);
sys/kern/kern_sig.c
1122
kern_sigprocmask(struct thread *td, int how, sigset_t *set, sigset_t *oset,
sys/kern/kern_sig.c
115
static struct thread *sigtd(struct proc *p, int sig, bool fast_sigblock);
sys/kern/kern_sig.c
117
static void sigfastblock_setpend(struct thread *td, bool resched);
sys/kern/kern_sig.c
118
static void sig_handle_first_stop(struct thread *td, struct proc *p,
sys/kern/kern_sig.c
1196
sys_sigprocmask(struct thread *td, struct sigprocmask_args *uap)
sys/kern/kern_sig.c
1224
osigprocmask(struct thread *td, struct osigprocmask_args *uap)
sys/kern/kern_sig.c
1237
sys_sigwait(struct thread *td, struct sigwait_args *uap)
sys/kern/kern_sig.c
1270
sys_sigtimedwait(struct thread *td, struct sigtimedwait_args *uap)
sys/kern/kern_sig.c
1304
sys_sigwaitinfo(struct thread *td, struct sigwaitinfo_args *uap)
sys/kern/kern_sig.c
1327
proc_td_siginfo_capture(struct thread *td, siginfo_t *si)
sys/kern/kern_sig.c
1329
struct thread *thr;
sys/kern/kern_sig.c
1340
kern_sigtimedwait(struct thread *td, sigset_t waitset, ksiginfo_t *ksi,
sys/kern/kern_sig.c
1479
sys_sigpending(struct thread *td, struct sigpending_args *uap)
sys/kern/kern_sig.c
1498
osigpending(struct thread *td, struct osigpending_args *uap)
sys/kern/kern_sig.c
1525
osigvec(struct thread *td, struct osigvec_args *uap)
sys/kern/kern_sig.c
1563
osigblock(struct thread *td, struct osigblock_args *uap)
sys/kern/kern_sig.c
1579
osigsetmask(struct thread *td, struct osigsetmask_args *uap)
sys/kern/kern_sig.c
1601
sys_sigsuspend(struct thread *td, struct sigsuspend_args *uap)
sys/kern/kern_sig.c
1613
kern_sigsuspend(struct thread *td, sigset_t mask)
sys/kern/kern_sig.c
1679
osigsuspend(struct thread *td, struct osigsuspend_args *uap)
sys/kern/kern_sig.c
1697
osigstack(struct thread *td, struct osigstack_args *uap)
sys/kern/kern_sig.c
1730
sys_sigaltstack(struct thread *td, struct sigaltstack_args *uap)
sys/kern/kern_sig.c
1750
kern_sigaltstack(struct thread *td, stack_t *ss, stack_t *oss)
sys/kern/kern_sig.c
1782
struct thread *td;
sys/kern/kern_sig.c
1836
killpg1(struct thread *td, int sig, int pgid, int all, ksiginfo_t *ksi)
sys/kern/kern_sig.c
1897
sys_kill(struct thread *td, struct kill_args *uap)
sys/kern/kern_sig.c
1904
kern_kill(struct thread *td, pid_t pid, int signum)
sys/kern/kern_sig.c
1956
sys_pdkill(struct thread *td, struct pdkill_args *uap)
sys/kern/kern_sig.c
1992
okillpg(struct thread *td, struct okillpg_args *uap)
sys/kern/kern_sig.c
2018
sys_sigqueue(struct thread *td, struct sigqueue_args *uap)
sys/kern/kern_sig.c
2028
kern_sigqueue(struct thread *td, pid_t pid, int signumf, union sigval *value)
sys/kern/kern_sig.c
2032
struct thread *td2;
sys/kern/kern_sig.c
2111
postsig_done(int sig, struct thread *td, struct sigacts *ps)
sys/kern/kern_sig.c
2132
trapsignal(struct thread *td, ksiginfo_t *ksi)
sys/kern/kern_sig.c
2183
static struct thread *
sys/kern/kern_sig.c
2186
struct thread *td, *signal_td;
sys/kern/kern_sig.c
2252
sigev_findtd(struct proc *p, struct sigevent *sigev, struct thread **ttd)
sys/kern/kern_sig.c
2254
struct thread *td;
sys/kern/kern_sig.c
2269
tdsignal(struct thread *td, int sig)
sys/kern/kern_sig.c
2280
tdksignal(struct thread *td, int sig, ksiginfo_t *ksi)
sys/kern/kern_sig.c
2287
sig_sleepq_abort(struct thread *td, int intrval)
sys/kern/kern_sig.c
2298
tdsendsignal(struct proc *p, struct thread *td, int sig, ksiginfo_t *ksi)
sys/kern/kern_sig.c
2585
tdsigwakeup(struct thread *td, int sig, sig_t action, int intrval)
sys/kern/kern_sig.c
264
ast_sig(struct thread *td, int tda)
sys/kern/kern_sig.c
2665
ptrace_coredumpreq(struct thread *td, struct proc *p,
sys/kern/kern_sig.c
2693
ptrace_syscallreq(struct thread *td, struct proc *p,
sys/kern/kern_sig.c
2778
ptrace_remotereq(struct thread *td, int flag)
sys/kern/kern_sig.c
2818
sig_suspend_threads(struct thread *td, struct proc *p)
sys/kern/kern_sig.c
2820
struct thread *td2;
sys/kern/kern_sig.c
2860
sig_handle_first_stop(struct thread *td, struct proc *p, int sig)
sys/kern/kern_sig.c
2890
ptracestop(struct thread *td, int sig, ksiginfo_t *si)
sys/kern/kern_sig.c
2893
struct thread *td2;
sys/kern/kern_sig.c
3001
struct thread *td;
sys/kern/kern_sig.c
3040
tdsigcleanup(struct thread *td)
sys/kern/kern_sig.c
3088
struct thread *td;
sys/kern/kern_sig.c
3130
struct thread *td;
sys/kern/kern_sig.c
3163
sigprocess(struct thread *td, int sig)
sys/kern/kern_sig.c
3345
issignal(struct thread *td)
sys/kern/kern_sig.c
340
ast_sigsuspend(struct thread *td, int tda __unused)
sys/kern/kern_sig.c
3443
struct thread *td;
sys/kern/kern_sig.c
3513
sig_ast_checksusp(struct thread *td)
sys/kern/kern_sig.c
3530
sig_ast_needsigchk(struct thread *td)
sys/kern/kern_sig.c
3580
struct thread *td;
sys/kern/kern_sig.c
3601
struct thread *td;
sys/kern/kern_sig.c
3752
nosys(struct thread *td, struct nosys_args *args)
sys/kern/kern_sig.c
3758
kern_nosys(struct thread *td, int dummy)
sys/kern/kern_sig.c
3924
sigfastblock_failed(struct thread *td, bool sendsig, bool write)
sys/kern/kern_sig.c
3944
sigfastblock_fetch_sig(struct thread *td, bool sendsig, uint32_t *valp)
sys/kern/kern_sig.c
3960
sigfastblock_resched(struct thread *td, bool resched)
sys/kern/kern_sig.c
3974
sys_sigfastblock(struct thread *td, struct sigfastblock_args *uap)
sys/kern/kern_sig.c
4071
sigfastblock_clear(struct thread *td)
sys/kern/kern_sig.c
4085
sigfastblock_fetch(struct thread *td)
sys/kern/kern_sig.c
4093
sigfastblock_setpend1(struct thread *td)
sys/kern/kern_sig.c
4124
sigfastblock_setpend(struct thread *td, bool resched)
sys/kern/kern_sig.c
668
struct thread *td0;
sys/kern/kern_sig.c
710
cursig(struct thread *td)
sys/kern/kern_sig.c
724
signotify(struct thread *td)
sys/kern/kern_sig.c
741
struct thread *td;
sys/kern/kern_sig.c
791
kern_sigaction(struct thread *td, int sig, const struct sigaction *act,
sys/kern/kern_sig.c
943
sys_sigaction(struct thread *td, struct sigaction_args *uap)
sys/kern/kern_sig.c
971
freebsd4_sigaction(struct thread *td, struct freebsd4_sigaction_args *uap)
sys/kern/kern_switch.c
156
static __noinline struct thread *
sys/kern/kern_switch.c
157
choosethread_panic(struct thread *td)
sys/kern/kern_switch.c
177
struct thread *
sys/kern/kern_switch.c
180
struct thread *td;
sys/kern/kern_switch.c
205
struct thread *td = curthread;
sys/kern/kern_switch.c
215
struct thread *td;
sys/kern/kern_switch.c
250
struct thread *td = curthread;
sys/kern/kern_switch.c
403
runq_add(struct runq *rq, struct thread *td, int flags)
sys/kern/kern_switch.c
410
runq_add_idx(struct runq *rq, struct thread *td, int idx, int flags)
sys/kern/kern_switch.c
437
runq_remove(struct runq *rq, struct thread *td)
sys/kern/kern_switch.c
541
struct thread **const tdp = data;
sys/kern/kern_switch.c
542
struct thread *const td = TAILQ_FIRST(q);
sys/kern/kern_switch.c
552
extern inline struct thread *
sys/kern/kern_switch.c
556
struct thread *td = NULL;
sys/kern/kern_switch.c
562
static inline struct thread *
sys/kern/kern_switch.c
598
struct thread *
sys/kern/kern_switch.c
601
struct thread *td;
sys/kern/kern_switch.c
615
struct thread *td;
sys/kern/kern_switch.c
623
struct thread *td;
sys/kern/kern_switch.c
632
struct thread *td2 = td;
sys/kern/kern_switch.c
652
struct thread *
sys/kern/kern_sx.c
1020
struct thread *td;
sys/kern/kern_sx.c
1022
struct thread *owner;
sys/kern/kern_sx.c
1170
owner = (struct thread *)SX_OWNER(x);
sys/kern/kern_sx.c
120
static int owner_sx(const struct lock_object *lock, struct thread **owner);
sys/kern/kern_sx.c
1262
struct thread *td;
sys/kern/kern_sx.c
1299
_sx_sunlock_try(struct sx *sx, struct thread *td, uintptr_t *xp)
sys/kern/kern_sx.c
1322
_sx_sunlock_hard(struct sx *sx, struct thread *td, uintptr_t x
sys/kern/kern_sx.c
1369
struct thread *td;
sys/kern/kern_sx.c
1492
struct thread *td;
sys/kern/kern_sx.c
1536
sx_chain(struct thread *td, struct thread **ownerp)
sys/kern/kern_sx.c
211
owner_sx(const struct lock_object *lock, struct thread **owner)
sys/kern/kern_sx.c
220
((*owner = (struct thread *)SX_OWNER(x)) != NULL));
sys/kern/kern_sx.c
347
struct thread *td;
sys/kern/kern_sx.c
569
struct thread *owner;
sys/kern/kern_sx.c
619
if (__predict_false(lv_sx_owner(x) == (struct thread *)tid)) {
sys/kern/kern_sx.c
763
owner = (struct thread *)SX_OWNER(x);
sys/kern/kern_sx.c
980
__sx_can_read(struct thread *td, uintptr_t x, bool fp)
sys/kern/kern_sx.c
992
__sx_slock_try(struct sx *sx, struct thread *td, uintptr_t *xp, bool fp
sys/kern/kern_synch.c
134
struct thread *td __ktrace_used;
sys/kern/kern_synch.c
244
struct thread *td __ktrace_used;
sys/kern/kern_synch.c
470
struct thread *td;
sys/kern/kern_synch.c
546
setrunnable(struct thread *td, int srqflags)
sys/kern/kern_synch.c
600
ast_scheduler(struct thread *td, int tda __unused)
sys/kern/kern_synch.c
643
struct thread *td;
sys/kern/kern_synch.c
660
sys_yield(struct thread *td, struct yield_args *uap)
sys/kern/kern_synch.c
672
sys_sched_getcpu(struct thread *td, struct sched_getcpu_args *uap)
sys/kern/kern_syscalls.c
110
syscall_thread_exit(struct thread *td, struct sysent *se)
sys/kern/kern_syscalls.c
51
lkmnosys(struct thread *td, struct nosys_args *args)
sys/kern/kern_syscalls.c
58
lkmressys(struct thread *td, struct nosys_args *args)
sys/kern/kern_syscalls.c
92
syscall_thread_enter(struct thread *td, struct sysent **se)
sys/kern/kern_sysctl.c
2129
kernel_sysctl(struct thread *td, int *name, u_int namelen, void *old,
sys/kern/kern_sysctl.c
2176
kernel_sysctlbyname(struct thread *td, char *name, void *old, size_t *oldlenp,
sys/kern/kern_sysctl.c
2445
sys___sysctl(struct thread *td, struct __sysctl_args *uap)
sys/kern/kern_sysctl.c
2471
kern___sysctlbyname(struct thread *td, const char *oname, size_t namelen,
sys/kern/kern_sysctl.c
2517
sys___sysctlbyname(struct thread *td, struct __sysctlbyname_args *uap)
sys/kern/kern_sysctl.c
2537
userland_sysctl(struct thread *td, int *name, u_int namelen, void *old,
sys/kern/kern_tc.c
1271
sleeping_on_old_rtc(struct thread *td)
sys/kern/kern_thr.c
110
thr_create_initthr(struct thread *td, void *thunk)
sys/kern/kern_thr.c
123
sys_thr_create(struct thread *td, struct thr_create_args *uap)
sys/kern/kern_thr.c
136
sys_thr_new(struct thread *td, struct thr_new_args *uap)
sys/kern/kern_thr.c
151
thr_new_initthr(struct thread *td, void *thunk)
sys/kern/kern_thr.c
183
kern_thr_new(struct thread *td, struct thr_param *param)
sys/kern/kern_thr.c
206
thread_create(struct thread *td, struct rtprio *rtp,
sys/kern/kern_thr.c
207
int (*initialize_thread)(struct thread *, void *), void *thunk)
sys/kern/kern_thr.c
209
struct thread *newtd;
sys/kern/kern_thr.c
249
__rangeof(struct thread, td_startzero, td_endzero));
sys/kern/kern_thr.c
251
__rangeof(struct thread, td_startcopy, td_endcopy));
sys/kern/kern_thr.c
315
sys_thr_self(struct thread *td, struct thr_self_args *uap)
sys/kern/kern_thr.c
327
sys_thr_exit(struct thread *td, struct thr_exit_args *uap)
sys/kern/kern_thr.c
343
kern_thr_exit(struct thread *td)
sys/kern/kern_thr.c
417
sys_thr_kill(struct thread *td, struct thr_kill_args *uap)
sys/kern/kern_thr.c
421
struct thread *ttd;
sys/kern/kern_thr.c
464
sys_thr_kill2(struct thread *td, struct thr_kill2_args *uap)
sys/kern/kern_thr.c
468
struct thread *ttd;
sys/kern/kern_thr.c
521
sys_thr_suspend(struct thread *td, struct thr_suspend_args *uap)
sys/kern/kern_thr.c
539
kern_thr_suspend(struct thread *td, struct timespec *tsp)
sys/kern/kern_thr.c
583
sys_thr_wake(struct thread *td, struct thr_wake_args *uap)
sys/kern/kern_thr.c
587
struct thread *ttd;
sys/kern/kern_thr.c
607
sys_thr_set_name(struct thread *td, struct thr_set_name_args *uap)
sys/kern/kern_thr.c
611
struct thread *ttd;
sys/kern/kern_thr.c
645
kern_thr_alloc(struct proc *p, int pages, struct thread **ntd)
sys/kern/kern_thread.c
1052
struct thread *td;
sys/kern/kern_thread.c
1076
thread_link(struct thread *td, struct proc *p)
sys/kern/kern_thread.c
109
_Static_assert(offsetof(struct thread, td_flags) == 0x9c,
sys/kern/kern_thread.c
1105
thread_unlink(struct thread *td)
sys/kern/kern_thread.c
111
_Static_assert(offsetof(struct thread, td_pflags) == 0xa8,
sys/kern/kern_thread.c
113
_Static_assert(offsetof(struct thread, td_frame) == 0x33c,
sys/kern/kern_thread.c
1146
weed_inhib(int mode, struct thread *td2, struct proc *p)
sys/kern/kern_thread.c
115
_Static_assert(offsetof(struct thread, td_emuldata) == 0x380,
sys/kern/kern_thread.c
1225
struct thread *td;
sys/kern/kern_thread.c
1226
struct thread *td2;
sys/kern/kern_thread.c
1365
struct thread *td;
sys/kern/kern_thread.c
138
struct thread *tdd_zombies;
sys/kern/kern_thread.c
1410
struct thread *td;
sys/kern/kern_thread.c
147
static void thread_zombie(struct thread *);
sys/kern/kern_thread.c
152
static void thread_unsuspend_one(struct thread *td, struct proc *p,
sys/kern/kern_thread.c
1523
thread_check_susp(struct thread *td, bool sleep)
sys/kern/kern_thread.c
154
static void thread_free_batched(struct thread *td);
sys/kern/kern_thread.c
1547
thread_suspend_switch(struct thread *td, struct proc *p)
sys/kern/kern_thread.c
1575
thread_suspend_one(struct thread *td)
sys/kern/kern_thread.c
1590
thread_unsuspend_one(struct thread *td, struct proc *p, bool boundary)
sys/kern/kern_thread.c
1609
thread_run_flash(struct thread *td)
sys/kern/kern_thread.c
1638
struct thread *td;
sys/kern/kern_thread.c
167
static LIST_HEAD(tidhashhead, thread) *tidhashtbl;
sys/kern/kern_thread.c
1670
struct thread *td;
sys/kern/kern_thread.c
1725
tdfind_hash(lwpid_t tid, pid_t pid, struct proc **pp, struct thread **tdp)
sys/kern/kern_thread.c
1729
struct thread *td;
sys/kern/kern_thread.c
1767
struct thread *
sys/kern/kern_thread.c
1771
struct thread *td;
sys/kern/kern_thread.c
1802
tidhash_add(struct thread *td)
sys/kern/kern_thread.c
1810
tidhash_remove(struct thread *td)
sys/kern/kern_thread.c
310
tidbatch_add(struct tidbatch *tb, struct thread *td)
sys/kern/kern_thread.c
357
tdcountbatch_add(struct tdcountbatch *tb, struct thread *td __unused)
sys/kern/kern_thread.c
388
struct thread *td;
sys/kern/kern_thread.c
390
td = (struct thread *)mem;
sys/kern/kern_thread.c
418
struct thread *td;
sys/kern/kern_thread.c
420
td = (struct thread *)mem;
sys/kern/kern_thread.c
460
struct thread *td;
sys/kern/kern_thread.c
462
td = (struct thread *)mem;
sys/kern/kern_thread.c
480
struct thread *td;
sys/kern/kern_thread.c
482
td = (struct thread *)mem;
sys/kern/kern_thread.c
499
proc_linkup0(struct proc *p, struct thread *td)
sys/kern/kern_thread.c
506
proc_linkup(struct proc *p, struct thread *td)
sys/kern/kern_thread.c
521
ast_suspend(struct thread *td, int tda __unused)
sys/kern/kern_thread.c
601
thread_zombie(struct thread *td)
sys/kern/kern_thread.c
604
struct thread *ztd;
sys/kern/kern_thread.c
621
thread_stash(struct thread *td)
sys/kern/kern_thread.c
633
struct thread *itd, *ntd;
sys/kern/kern_thread.c
646
itd = (struct thread *)atomic_swap_ptr((uintptr_t *)&tdd->tdd_zombies,
sys/kern/kern_thread.c
782
struct thread *
sys/kern/kern_thread.c
785
struct thread *td;
sys/kern/kern_thread.c
812
thread_recycle(struct thread *td, int pages)
sys/kern/kern_thread.c
830
thread_free_batched(struct thread *td)
sys/kern/kern_thread.c
850
thread_free(struct thread *td)
sys/kern/kern_thread.c
862
thread_cow_get_proc(struct thread *newtd, struct proc *p)
sys/kern/kern_thread.c
873
thread_cow_get(struct thread *newtd, struct thread *td)
sys/kern/kern_thread.c
884
thread_cow_free(struct thread *td)
sys/kern/kern_thread.c
89
_Static_assert(offsetof(struct thread, td_flags) == 0x108,
sys/kern/kern_thread.c
894
thread_cow_update(struct thread *td)
sys/kern/kern_thread.c
91
_Static_assert(offsetof(struct thread, td_pflags) == 0x114,
sys/kern/kern_thread.c
913
thread_cow_synced(struct thread *td)
sys/kern/kern_thread.c
93
_Static_assert(offsetof(struct thread, td_frame) == 0x4e8,
sys/kern/kern_thread.c
938
struct thread *td;
sys/kern/kern_thread.c
939
struct thread *td2;
sys/kern/kern_thread.c
95
_Static_assert(offsetof(struct thread, td_emuldata) == 0x700,
sys/kern/kern_time.c
120
settime(struct thread *td, struct timeval *tv)
sys/kern/kern_time.c
1252
sys_ktimer_create(struct thread *td, struct ktimer_create_args *uap)
sys/kern/kern_time.c
1276
kern_ktimer_create(struct thread *td, clockid_t clock_id, struct sigevent *evp,
sys/kern/kern_time.c
1388
sys_ktimer_delete(struct thread *td, struct ktimer_delete_args *uap)
sys/kern/kern_time.c
1414
kern_ktimer_delete(struct thread *td, int timerid)
sys/kern/kern_time.c
1454
sys_ktimer_settime(struct thread *td, struct ktimer_settime_args *uap)
sys/kern/kern_time.c
1470
kern_ktimer_settime(struct thread *td, int timer_id, int flags,
sys/kern/kern_time.c
1500
sys_ktimer_gettime(struct thread *td, struct ktimer_gettime_args *uap)
sys/kern/kern_time.c
1512
kern_ktimer_gettime(struct thread *td, int timer_id, struct itimerspec *val)
sys/kern/kern_time.c
1539
sys_ktimer_getoverrun(struct thread *td, struct ktimer_getoverrun_args *uap)
sys/kern/kern_time.c
1546
kern_ktimer_getoverrun(struct thread *td, int timer_id)
sys/kern/kern_time.c
1798
struct thread *td;
sys/kern/kern_time.c
181
sys_clock_getcpuclockid2(struct thread *td, struct clock_getcpuclockid2_args *uap)
sys/kern/kern_time.c
193
kern_clock_getcpuclockid2(struct thread *td, id_t id, int which,
sys/kern/kern_time.c
231
sys_clock_gettime(struct thread *td, struct clock_gettime_args *uap)
sys/kern/kern_time.c
253
kern_thread_cputime(struct thread *targettd, struct timespec *ats)
sys/kern/kern_time.c
290
get_cputime(struct thread *td, clockid_t clock_id, struct timespec *ats)
sys/kern/kern_time.c
293
struct thread *td2;
sys/kern/kern_time.c
318
kern_clock_gettime(struct thread *td, clockid_t clock_id, struct timespec *ats)
sys/kern/kern_time.c
398
sys_clock_settime(struct thread *td, struct clock_settime_args *uap)
sys/kern/kern_time.c
414
kern_clock_settime(struct thread *td, clockid_t clock_id, struct timespec *ats)
sys/kern/kern_time.c
442
sys_clock_getres(struct thread *td, struct clock_getres_args *uap)
sys/kern/kern_time.c
457
kern_clock_getres(struct thread *td, clockid_t clock_id, struct timespec *ts)
sys/kern/kern_time.c
502
kern_nanosleep(struct thread *td, struct timespec *rqt, struct timespec *rmt)
sys/kern/kern_time.c
516
kern_clock_nanosleep(struct thread *td, clockid_t clock_id, int flags,
sys/kern/kern_time.c
632
sys_nanosleep(struct thread *td, struct nanosleep_args *uap)
sys/kern/kern_time.c
649
sys_clock_nanosleep(struct thread *td, struct clock_nanosleep_args *uap)
sys/kern/kern_time.c
659
user_clock_nanosleep(struct thread *td, clockid_t clock_id, int flags,
sys/kern/kern_time.c
685
sys_gettimeofday(struct thread *td, struct gettimeofday_args *uap)
sys/kern/kern_time.c
711
sys_settimeofday(struct thread *td, struct settimeofday_args *uap)
sys/kern/kern_time.c
735
kern_settimeofday(struct thread *td, struct timeval *tv, struct timezone *tzp)
sys/kern/kern_time.c
780
sys_getitimer(struct thread *td, struct getitimer_args *uap)
sys/kern/kern_time.c
792
kern_getitimer(struct thread *td, u_int which, struct itimerval *aitv)
sys/kern/kern_time.c
836
sys_setitimer(struct thread *td, struct setitimer_args *uap)
sys/kern/kern_time.c
855
kern_setitimer(struct thread *td, u_int which, struct itimerval *aitv,
sys/kern/kern_time.c
87
static int settime(struct thread *, struct timeval *);
sys/kern/kern_time.c
89
static int user_clock_nanosleep(struct thread *td, clockid_t clock_id,
sys/kern/kern_timeout.c
170
struct thread *cc_thread;
sys/kern/kern_timeout.c
371
struct thread *td;
sys/kern/kern_timeout.c
428
struct thread *td;
sys/kern/kern_timeout.c
434
struct thread *td;
sys/kern/kern_timeout.c
832
struct thread *td = curthread;
sys/kern/kern_ucoredump.c
136
sigexit(struct thread *td, int sig)
sys/kern/kern_ucoredump.c
213
coredump(struct thread *td, const char **errmsg)
sys/kern/kern_ucoredump.c
55
static int coredump(struct thread *td, const char **);
sys/kern/kern_umtx.c
1038
do_unlock_umtx(struct thread *td, struct umtx *umtx, u_long id)
sys/kern/kern_umtx.c
1101
do_lock_umtx32(struct thread *td, uint32_t *m, uint32_t id,
sys/kern/kern_umtx.c
1219
do_unlock_umtx32(struct thread *td, uint32_t *m, uint32_t id)
sys/kern/kern_umtx.c
1282
do_wait(struct thread *td, void *addr, u_long id,
sys/kern/kern_umtx.c
1336
kern_umtx_wake(struct thread *td, void *uaddr, int n_wake, int is_private)
sys/kern/kern_umtx.c
1355
do_lock_normal(struct thread *td, struct umutex *m, uint32_t flags,
sys/kern/kern_umtx.c
1530
do_unlock_normal(struct thread *td, struct umutex *m, uint32_t flags, bool rb)
sys/kern/kern_umtx.c
1605
do_wake_umutex(struct thread *td, struct umutex *m)
sys/kern/kern_umtx.c
1671
do_wake2_umutex(struct thread *td, struct umutex *m, uint32_t flags)
sys/kern/kern_umtx.c
1772
umtx_pi_adjust_thread(struct umtx_pi *pi, struct thread *td)
sys/kern/kern_umtx.c
1775
struct thread *td1;
sys/kern/kern_umtx.c
180
static int do_unlock_pp(struct thread *td, struct umutex *m, uint32_t flags,
sys/kern/kern_umtx.c
182
static void umtx_thread_cleanup(struct thread *td);
sys/kern/kern_umtx.c
1858
umtx_propagate_priority(struct thread *td)
sys/kern/kern_umtx.c
1943
umtx_pi_setowner(struct umtx_pi *pi, struct thread *owner)
sys/kern/kern_umtx.c
1970
umtx_pi_claim(struct umtx_pi *pi, struct thread *owner)
sys/kern/kern_umtx.c
2006
umtx_pi_adjust(struct thread *td, u_char oldpri)
sys/kern/kern_umtx.c
2031
struct thread *td;
sys/kern/kern_umtx.c
2047
struct thread *ownertd;
sys/kern/kern_umtx.c
2173
umtx_pi_drop(struct thread *td, struct umtx_key *key, bool rb, int *count)
sys/kern/kern_umtx.c
2240
do_lock_pi(struct thread *td, struct umutex *m, uint32_t flags,
sys/kern/kern_umtx.c
2452
do_unlock_pi(struct thread *td, struct umutex *m, uint32_t flags, bool rb)
sys/kern/kern_umtx.c
2535
do_lock_pp(struct thread *td, struct umutex *m, uint32_t flags,
sys/kern/kern_umtx.c
2704
do_unlock_pp(struct thread *td, struct umutex *m, uint32_t flags, bool rb)
sys/kern/kern_umtx.c
2787
do_set_ceiling(struct thread *td, struct umutex *m, uint32_t ceiling,
sys/kern/kern_umtx.c
2885
do_lock_umutex(struct thread *td, struct umutex *m,
sys/kern/kern_umtx.c
2923
do_unlock_umutex(struct thread *td, struct umutex *m, bool rb)
sys/kern/kern_umtx.c
2945
do_cv_wait(struct thread *td, struct ucond *cv, struct umutex *m,
sys/kern/kern_umtx.c
3022
do_cv_signal(struct thread *td, struct ucond *cv)
sys/kern/kern_umtx.c
3051
do_cv_broadcast(struct thread *td, struct ucond *cv)
sys/kern/kern_umtx.c
3079
do_rw_rdlock(struct thread *td, struct urwlock *rwlock, long fflag,
sys/kern/kern_umtx.c
3267
do_rw_wrlock(struct thread *td, struct urwlock *rwlock, struct _umtx_time *timeout)
sys/kern/kern_umtx.c
3465
do_rw_unlock(struct thread *td, struct urwlock *rwlock)
sys/kern/kern_umtx.c
3564
do_sem_wait(struct thread *td, struct _usem *sem, struct _umtx_time *timeout)
sys/kern/kern_umtx.c
3636
do_sem_wake(struct thread *td, struct _usem *sem)
sys/kern/kern_umtx.c
3673
do_sem2_wait(struct thread *td, struct _usem2 *sem, struct _umtx_time *timeout)
sys/kern/kern_umtx.c
3758
do_sem2_wake(struct thread *td, struct _usem2 *sem)
sys/kern/kern_umtx.c
3807
freebsd10__umtx_lock(struct thread *td, struct freebsd10__umtx_lock_args *uap)
sys/kern/kern_umtx.c
3813
freebsd10__umtx_unlock(struct thread *td,
sys/kern/kern_umtx.c
3878
__umtx_op_lock_umtx(struct thread *td, struct _umtx_op_args *uap,
sys/kern/kern_umtx.c
3901
__umtx_op_unlock_umtx(struct thread *td, struct _umtx_op_args *uap,
sys/kern/kern_umtx.c
3914
__umtx_op_unimpl(struct thread *td __unused, struct _umtx_op_args *uap __unused,
sys/kern/kern_umtx.c
3922
__umtx_op_wait(struct thread *td, struct _umtx_op_args *uap,
sys/kern/kern_umtx.c
3941
__umtx_op_wait_uint(struct thread *td, struct _umtx_op_args *uap,
sys/kern/kern_umtx.c
3960
__umtx_op_wait_uint_private(struct thread *td, struct _umtx_op_args *uap,
sys/kern/kern_umtx.c
3979
__umtx_op_wake(struct thread *td, struct _umtx_op_args *uap,
sys/kern/kern_umtx.c
3988
__umtx_op_nwake_private_native(struct thread *td, struct _umtx_op_args *uap)
sys/kern/kern_umtx.c
4010
__umtx_op_nwake_private_compat32(struct thread *td, struct _umtx_op_args *uap)
sys/kern/kern_umtx.c
4033
__umtx_op_nwake_private(struct thread *td, struct _umtx_op_args *uap,
sys/kern/kern_umtx.c
4043
__umtx_op_wake_private(struct thread *td, struct _umtx_op_args *uap,
sys/kern/kern_umtx.c
4051
__umtx_op_lock_umutex(struct thread *td, struct _umtx_op_args *uap,
sys/kern/kern_umtx.c
4071
__umtx_op_trylock_umutex(struct thread *td, struct _umtx_op_args *uap,
sys/kern/kern_umtx.c
4079
__umtx_op_wait_umutex(struct thread *td, struct _umtx_op_args *uap,
sys/kern/kern_umtx.c
4099
__umtx_op_wake_umutex(struct thread *td, struct _umtx_op_args *uap,
sys/kern/kern_umtx.c
4107
__umtx_op_unlock_umutex(struct thread *td, struct _umtx_op_args *uap,
sys/kern/kern_umtx.c
4115
__umtx_op_set_ceiling(struct thread *td, struct _umtx_op_args *uap,
sys/kern/kern_umtx.c
4123
__umtx_op_cv_wait(struct thread *td, struct _umtx_op_args *uap,
sys/kern/kern_umtx.c
4186
__umtx_op_cv_signal(struct thread *td, struct _umtx_op_args *uap,
sys/kern/kern_umtx.c
4194
__umtx_op_cv_broadcast(struct thread *td, struct _umtx_op_args *uap,
sys/kern/kern_umtx.c
4202
__umtx_op_rw_rdlock(struct thread *td, struct _umtx_op_args *uap,
sys/kern/kern_umtx.c
4222
__umtx_op_rw_wrlock(struct thread *td, struct _umtx_op_args *uap,
sys/kern/kern_umtx.c
4243
__umtx_op_rw_unlock(struct thread *td, struct _umtx_op_args *uap,
sys/kern/kern_umtx.c
4252
__umtx_op_sem_wait(struct thread *td, struct _umtx_op_args *uap,
sys/kern/kern_umtx.c
4272
__umtx_op_sem_wake(struct thread *td, struct _umtx_op_args *uap,
sys/kern/kern_umtx.c
4281
__umtx_op_wake2_umutex(struct thread *td, struct _umtx_op_args *uap,
sys/kern/kern_umtx.c
4289
__umtx_op_sem2_wait(struct thread *td, struct _umtx_op_args *uap,
sys/kern/kern_umtx.c
4323
__umtx_op_sem2_wake(struct thread *td, struct _umtx_op_args *uap,
sys/kern/kern_umtx.c
4524
umtx_shm_create_reg(struct thread *td, const struct umtx_key *key,
sys/kern/kern_umtx.c
4594
umtx_shm_alive(struct thread *td, void *addr)
sys/kern/kern_umtx.c
4630
umtx_shm(struct thread *td, void *addr, u_int flags)
sys/kern/kern_umtx.c
4675
__umtx_op_shm(struct thread *td, struct _umtx_op_args *uap,
sys/kern/kern_umtx.c
4683
__umtx_op_robust_lists(struct thread *td, struct _umtx_op_args *uap,
sys/kern/kern_umtx.c
4713
__umtx_op_get_min_timeout(struct thread *td, struct _umtx_op_args *uap,
sys/kern/kern_umtx.c
4730
__umtx_op_set_min_timeout(struct thread *td, struct _umtx_op_args *uap,
sys/kern/kern_umtx.c
4920
typedef int (*_umtx_op_func)(struct thread *td, struct _umtx_op_args *uap,
sys/kern/kern_umtx.c
5010
kern__umtx_op(struct thread *td, void *obj, int op, unsigned long val,
sys/kern/kern_umtx.c
5027
sys__umtx_op(struct thread *td, struct _umtx_op_args *uap)
sys/kern/kern_umtx.c
5055
freebsd10_freebsd32__umtx_lock(struct thread *td,
sys/kern/kern_umtx.c
5062
freebsd10_freebsd32__umtx_unlock(struct thread *td,
sys/kern/kern_umtx.c
5070
freebsd32__umtx_op(struct thread *td, struct freebsd32__umtx_op_args *uap)
sys/kern/kern_umtx.c
5079
umtx_thread_init(struct thread *td)
sys/kern/kern_umtx.c
5087
umtx_thread_fini(struct thread *td)
sys/kern/kern_umtx.c
5097
umtx_thread_alloc(struct thread *td)
sys/kern/kern_umtx.c
5120
struct thread *td;
sys/kern/kern_umtx.c
5145
umtx_thread_exit(struct thread *td)
sys/kern/kern_umtx.c
5152
umtx_read_uptr(struct thread *td, uintptr_t ptr, uintptr_t *res, bool compat32)
sys/kern/kern_umtx.c
5173
umtx_read_rb_list(struct thread *td, struct umutex *m, uintptr_t *rb_list,
sys/kern/kern_umtx.c
5187
umtx_handle_rb(struct thread *td, uintptr_t rbp, uintptr_t *rb_list, bool inact,
sys/kern/kern_umtx.c
5208
umtx_cleanup_rb_list(struct thread *td, uintptr_t rb_list, uintptr_t *rb_inact,
sys/kern/kern_umtx.c
5240
umtx_thread_cleanup(struct thread *td)
sys/kern/kern_umtx.c
865
struct thread *td = curthread;
sys/kern/kern_umtx.c
920
do_lock_umtx(struct thread *td, struct umtx *umtx, u_long id,
sys/kern/kern_uuid.c
177
sys_uuidgen(struct thread *td, struct uuidgen_args *uap)
sys/kern/kern_xxx.c
101
oquota(struct thread *td, struct oquota_args *uap)
sys/kern/kern_xxx.c
164
ogetkerninfo(struct thread *td, struct ogetkerninfo_args *uap)
sys/kern/kern_xxx.c
314
freebsd4_uname(struct thread *td, struct freebsd4_uname_args *uap)
sys/kern/kern_xxx.c
395
freebsd4_getdomainname(struct thread *td,
sys/kern/kern_xxx.c
415
freebsd4_setdomainname(struct thread *td,
sys/kern/kern_xxx.c
49
ogethostname(struct thread *td, struct ogethostname_args *uap)
sys/kern/kern_xxx.c
61
osethostname(struct thread *td, struct osethostname_args *uap)
sys/kern/kern_xxx.c
78
ogethostid(struct thread *td, struct ogethostid_args *uap)
sys/kern/kern_xxx.c
90
osethostid(struct thread *td, struct osethostid_args *uap)
sys/kern/ksched.c
106
getscheduler(struct ksched *ksched, struct thread *td, int *policy)
sys/kern/ksched.c
129
struct thread *td, const struct sched_param *param)
sys/kern/ksched.c
140
ksched_getparam(struct ksched *ksched, struct thread *td,
sys/kern/ksched.c
170
ksched_setscheduler(struct ksched *ksched, struct thread *td, int policy,
sys/kern/ksched.c
208
ksched_getscheduler(struct ksched *ksched, struct thread *td, int *policy)
sys/kern/ksched.c
266
ksched_rr_get_interval(struct ksched *ksched, struct thread *td,
sys/kern/link_elf.c
993
struct thread* td = curthread; /* XXX */
sys/kern/link_elf_obj.c
719
struct thread *td = curthread; /* XXX */
sys/kern/p1003_1b.c
110
sys_sched_setparam(struct thread *td, struct sched_setparam_args *uap)
sys/kern/p1003_1b.c
112
struct thread *targettd;
sys/kern/p1003_1b.c
138
kern_sched_setparam(struct thread *td, struct thread *targettd,
sys/kern/p1003_1b.c
155
sys_sched_getparam(struct thread *td, struct sched_getparam_args *uap)
sys/kern/p1003_1b.c
159
struct thread *targettd;
sys/kern/p1003_1b.c
182
kern_sched_getparam(struct thread *td, struct thread *targettd,
sys/kern/p1003_1b.c
198
sys_sched_setscheduler(struct thread *td, struct sched_setscheduler_args *uap)
sys/kern/p1003_1b.c
202
struct thread *targettd;
sys/kern/p1003_1b.c
227
kern_sched_setscheduler(struct thread *td, struct thread *targettd,
sys/kern/p1003_1b.c
249
sys_sched_getscheduler(struct thread *td, struct sched_getscheduler_args *uap)
sys/kern/p1003_1b.c
252
struct thread *targettd;
sys/kern/p1003_1b.c
275
kern_sched_getscheduler(struct thread *td, struct thread *targettd,
sys/kern/p1003_1b.c
291
sys_sched_yield(struct thread *td, struct sched_yield_args *uap)
sys/kern/p1003_1b.c
299
sys_sched_get_priority_max(struct thread *td,
sys/kern/p1003_1b.c
310
sys_sched_get_priority_min(struct thread *td,
sys/kern/p1003_1b.c
321
sys_sched_rr_get_interval(struct thread *td,
sys/kern/p1003_1b.c
334
kern_sched_rr_get_interval(struct thread *td, pid_t pid,
sys/kern/p1003_1b.c
338
struct thread *targettd;
sys/kern/p1003_1b.c
358
kern_sched_rr_get_interval_td(struct thread *td, struct thread *targettd,
sys/kern/p1003_1b.c
62
syscall_not_present(struct thread *td, const char *s, struct nosys_args *uap)
sys/kern/sched_4bsd.c
1000
sched_4bsd_sswitch(struct thread *td, int flags)
sys/kern/sched_4bsd.c
1002
struct thread *newtd;
sys/kern/sched_4bsd.c
1133
sched_4bsd_wakeup(struct thread *td, int srqflags)
sys/kern/sched_4bsd.c
122
_Static_assert(sizeof(struct thread) + sizeof(struct td_sched) <=
sys/kern/sched_4bsd.c
1282
sched_pickcpu(struct thread *td)
sys/kern/sched_4bsd.c
1308
sched_4bsd_add(struct thread *td, int flags)
sys/kern/sched_4bsd.c
135
static void sched_priority(struct thread *td, u_char prio);
sys/kern/sched_4bsd.c
136
static void maybe_resched(struct thread *td);
sys/kern/sched_4bsd.c
137
static void updatepri(struct thread *td);
sys/kern/sched_4bsd.c
138
static void resetpriority(struct thread *td);
sys/kern/sched_4bsd.c
139
static void resetpriority_thread(struct thread *td);
sys/kern/sched_4bsd.c
141
static int sched_pickcpu(struct thread *td);
sys/kern/sched_4bsd.c
1455
sched_4bsd_rem(struct thread *td)
sys/kern/sched_4bsd.c
1484
static struct thread *
sys/kern/sched_4bsd.c
1487
struct thread *td;
sys/kern/sched_4bsd.c
1492
struct thread *tdcpu;
sys/kern/sched_4bsd.c
1530
sched_4bsd_preempt(struct thread *td)
sys/kern/sched_4bsd.c
1547
sched_4bsd_userret_slowpath(struct thread *td)
sys/kern/sched_4bsd.c
1557
sched_4bsd_bind(struct thread *td, int cpu)
sys/kern/sched_4bsd.c
1578
sched_4bsd_unbind(struct thread* td)
sys/kern/sched_4bsd.c
1586
sched_4bsd_is_bound(struct thread *td)
sys/kern/sched_4bsd.c
1593
sched_4bsd_relinquish(struct thread *td)
sys/kern/sched_4bsd.c
1614
return (sizeof(struct thread) + sizeof(struct td_sched));
sys/kern/sched_4bsd.c
1618
sched_4bsd_pctcpu(struct thread *td)
sys/kern/sched_4bsd.c
1628
sched_4bsd_estcpu(struct thread *td)
sys/kern/sched_4bsd.c
1658
sched_throw_tail(struct thread *td)
sys/kern/sched_4bsd.c
1660
struct thread *newtd;
sys/kern/sched_4bsd.c
1704
sched_4bsd_throw(struct thread *td)
sys/kern/sched_4bsd.c
1718
sched_4bsd_fork_exit(struct thread *td)
sys/kern/sched_4bsd.c
1737
sched_4bsd_tdname(struct thread *td)
sys/kern/sched_4bsd.c
1753
sched_4bsd_clear_tdname(struct thread *td)
sys/kern/sched_4bsd.c
1764
sched_4bsd_affinity(struct thread *td)
sys/kern/sched_4bsd.c
281
maybe_resched_ast(struct thread *td, int tda)
sys/kern/sched_4bsd.c
295
maybe_resched(struct thread *td)
sys/kern/sched_4bsd.c
297
struct thread *ctd;
sys/kern/sched_4bsd.c
312
maybe_preempt(struct thread *td)
sys/kern/sched_4bsd.c
315
struct thread *ctd;
sys/kern/sched_4bsd.c
455
struct thread *td;
sys/kern/sched_4bsd.c
568
updatepri(struct thread *td)
sys/kern/sched_4bsd.c
593
resetpriority(struct thread *td)
sys/kern/sched_4bsd.c
614
resetpriority_thread(struct thread *td)
sys/kern/sched_4bsd.c
719
sched_clock_tick(struct thread *td)
sys/kern/sched_4bsd.c
764
sched_4bsd_clock(struct thread *td, int cnt)
sys/kern/sched_4bsd.c
775
sched_4bsd_exit(struct proc *p, struct thread *td)
sys/kern/sched_4bsd.c
786
sched_4bsd_exit_thread(struct thread *td, struct thread *child)
sys/kern/sched_4bsd.c
802
sched_4bsd_fork(struct thread *td, struct thread *childtd)
sys/kern/sched_4bsd.c
808
sched_4bsd_fork_thread(struct thread *td, struct thread *childtd)
sys/kern/sched_4bsd.c
829
struct thread *td;
sys/kern/sched_4bsd.c
842
sched_4bsd_class(struct thread *td, int class)
sys/kern/sched_4bsd.c
852
sched_priority(struct thread *td, u_char prio)
sys/kern/sched_4bsd.c
881
sched_4bsd_lend_prio(struct thread *td, u_char prio)
sys/kern/sched_4bsd.c
897
sched_4bsd_unlend_prio(struct thread *td, u_char prio)
sys/kern/sched_4bsd.c
914
sched_4bsd_prio(struct thread *td, u_char prio)
sys/kern/sched_4bsd.c
941
sched_4bsd_ithread_prio(struct thread *td, u_char prio)
sys/kern/sched_4bsd.c
950
sched_4bsd_user_prio(struct thread *td, u_char prio)
sys/kern/sched_4bsd.c
961
sched_4bsd_lend_user_prio(struct thread *td, u_char prio)
sys/kern/sched_4bsd.c
977
sched_4bsd_lend_user_prio_cond(struct thread *td, u_char prio)
sys/kern/sched_4bsd.c
989
sched_4bsd_sleep(struct thread *td, int pri)
sys/kern/sched_shim.c
41
struct thread *, childtd)
sys/kern/sched_shim.c
42
DEFINE_SHIM2(fork, void, sched_fork, struct thread *, td,
sys/kern/sched_shim.c
43
struct thread *, childtd)
sys/kern/sched_shim.c
44
DEFINE_SHIM1(fork_exit, void, sched_fork_exit, struct thread *, td)
sys/kern/sched_shim.c
45
DEFINE_SHIM2(class, void, sched_class, struct thread *, td, int, class)
sys/kern/sched_shim.c
48
DEFINE_SHIM2(exit_thread, void, sched_exit_thread, struct thread *, td,
sys/kern/sched_shim.c
49
struct thread *, child)
sys/kern/sched_shim.c
50
DEFINE_SHIM1(estcpu, u_int, sched_estcpu, struct thread *, td)
sys/kern/sched_shim.c
51
DEFINE_SHIM2(fork_thread, void, sched_fork_thread, struct thread *, td,
sys/kern/sched_shim.c
52
struct thread *, child)
sys/kern/sched_shim.c
53
DEFINE_SHIM2(ithread_prio, void, sched_ithread_prio, struct thread *, td,
sys/kern/sched_shim.c
55
DEFINE_SHIM2(lend_prio, void, sched_lend_prio, struct thread *, td,
sys/kern/sched_shim.c
57
DEFINE_SHIM2(lend_user_prio, void, sched_lend_user_prio, struct thread *, td,
sys/kern/sched_shim.c
60
struct thread *, td, u_char, pri)
sys/kern/sched_shim.c
61
DEFINE_SHIM1(pctcpu, fixpt_t, sched_pctcpu, struct thread *, td)
sys/kern/sched_shim.c
62
DEFINE_SHIM2(prio, void, sched_prio, struct thread *, td, u_char, prio)
sys/kern/sched_shim.c
63
DEFINE_SHIM2(sleep, void, sched_sleep, struct thread *, td, int, prio)
sys/kern/sched_shim.c
64
DEFINE_SHIM2(sswitch, void, sched_switch, struct thread *, td, int, flags)
sys/kern/sched_shim.c
65
DEFINE_SHIM1(throw, void, sched_throw, struct thread *, td)
sys/kern/sched_shim.c
66
DEFINE_SHIM2(unlend_prio, void, sched_unlend_prio, struct thread *, td,
sys/kern/sched_shim.c
68
DEFINE_SHIM2(user_prio, void, sched_user_prio, struct thread *, td,
sys/kern/sched_shim.c
71
struct thread *, td)
sys/kern/sched_shim.c
72
DEFINE_SHIM2(add, void, sched_add, struct thread *, td, int, flags)
sys/kern/sched_shim.c
73
DEFINE_SHIM0(choose, struct thread *, sched_choose)
sys/kern/sched_shim.c
74
DEFINE_SHIM2(clock, void, sched_clock, struct thread *, td, int, cnt)
sys/kern/sched_shim.c
76
DEFINE_SHIM1(preempt, void, sched_preempt, struct thread *, td)
sys/kern/sched_shim.c
77
DEFINE_SHIM1(relinquish, void, sched_relinquish, struct thread *, td)
sys/kern/sched_shim.c
78
DEFINE_SHIM1(rem, void, sched_rem, struct thread *, td)
sys/kern/sched_shim.c
79
DEFINE_SHIM2(wakeup, void, sched_wakeup, struct thread *, td, int, srqflags)
sys/kern/sched_shim.c
80
DEFINE_SHIM2(bind, void, sched_bind, struct thread *, td, int, cpu)
sys/kern/sched_shim.c
81
DEFINE_SHIM1(unbind, void, sched_unbind, struct thread *, td)
sys/kern/sched_shim.c
82
DEFINE_SHIM1(is_bound, int, sched_is_bound, struct thread *, td)
sys/kern/sched_shim.c
83
DEFINE_SHIM1(affinity, void, sched_affinity, struct thread *, td)
sys/kern/sched_shim.c
86
DEFINE_SHIM1(tdname, char *, sched_tdname, struct thread *, td)
sys/kern/sched_shim.c
87
DEFINE_SHIM1(clear_tdname, void, sched_clear_tdname, struct thread *, td)
sys/kern/sched_ule.c
1069
struct thread *td;
sys/kern/sched_ule.c
111
_Static_assert(sizeof(struct thread) + sizeof(struct td_sched) <=
sys/kern/sched_ule.c
1256
struct thread *td;
sys/kern/sched_ule.c
1264
struct thread *td;
sys/kern/sched_ule.c
1279
static inline struct thread *
sys/kern/sched_ule.c
1299
static inline struct thread *
sys/kern/sched_ule.c
1310
static inline struct thread *
sys/kern/sched_ule.c
1313
struct thread *td;
sys/kern/sched_ule.c
1325
static inline struct thread *
sys/kern/sched_ule.c
1336
static struct thread *
sys/kern/sched_ule.c
1339
struct thread *td;
sys/kern/sched_ule.c
1356
sched_setcpu(struct thread *td, int cpu, int flags)
sys/kern/sched_ule.c
1396
sched_pickcpu(struct thread *td, int flags)
sys/kern/sched_ule.c
1530
static inline struct thread *
sys/kern/sched_ule.c
1537
static struct thread *
sys/kern/sched_ule.c
1540
struct thread *td;
sys/kern/sched_ule.c
1552
static inline struct thread *
sys/kern/sched_ule.c
1562
static struct thread *
sys/kern/sched_ule.c
1565
struct thread *td;
sys/kern/sched_ule.c
1717
sched_interact_score(struct thread *td)
sys/kern/sched_ule.c
1757
sched_priority(struct thread *td)
sys/kern/sched_ule.c
1820
sched_interact_update(struct thread *td)
sys/kern/sched_ule.c
1865
sched_interact_fork(struct thread *td)
sys/kern/sched_ule.c
1991
sched_thread_priority(struct thread *td, u_char prio)
sys/kern/sched_ule.c
2044
sched_ule_lend_prio(struct thread *td, u_char prio)
sys/kern/sched_ule.c
2060
sched_ule_unlend_prio(struct thread *td, u_char prio)
sys/kern/sched_ule.c
2080
sched_ule_prio(struct thread *td, u_char prio)
sys/kern/sched_ule.c
2110
sched_ule_ithread_prio(struct thread *td, u_char prio)
sys/kern/sched_ule.c
2122
sched_ule_user_prio(struct thread *td, u_char prio)
sys/kern/sched_ule.c
2132
sched_ule_lend_user_prio(struct thread *td, u_char prio)
sys/kern/sched_ule.c
2148
sched_ule_lend_user_prio_cond(struct thread *td, u_char prio)
sys/kern/sched_ule.c
2272
sched_switch_migrate(struct tdq *tdq, struct thread *td, int flags)
sys/kern/sched_ule.c
2307
thread_unblock_switch(struct thread *td, struct mtx *mtx)
sys/kern/sched_ule.c
2320
sched_ule_sswitch(struct thread *td, int flags)
sys/kern/sched_ule.c
2322
struct thread *newtd;
sys/kern/sched_ule.c
2461
struct thread *td;
sys/kern/sched_ule.c
2478
sched_ule_sleep(struct thread *td, int prio)
sys/kern/sched_ule.c
2499
sched_ule_wakeup(struct thread *td, int srqflags)
sys/kern/sched_ule.c
2539
sched_ule_fork(struct thread *td, struct thread *child)
sys/kern/sched_ule.c
2558
sched_ule_fork_thread(struct thread *td, struct thread *child)
sys/kern/sched_ule.c
2604
sched_ule_class(struct thread *td, int class)
sys/kern/sched_ule.c
2617
sched_ule_exit(struct proc *p, struct thread *child)
sys/kern/sched_ule.c
2619
struct thread *td;
sys/kern/sched_ule.c
2635
sched_ule_exit_thread(struct thread *td, struct thread *child)
sys/kern/sched_ule.c
2653
sched_ule_preempt(struct thread *td)
sys/kern/sched_ule.c
2684
sched_ule_userret_slowpath(struct thread *td)
sys/kern/sched_ule.c
2699
td_slice(struct thread *td, struct tdq *tdq)
sys/kern/sched_ule.c
270
struct thread *tdq_curthread; /* (t) Current executing thread. */
sys/kern/sched_ule.c
2711
sched_ule_clock(struct thread *td, int cnt)
sys/kern/sched_ule.c
2797
sched_ule_estcpu(struct thread *td __unused)
sys/kern/sched_ule.c
2820
static struct thread *
sys/kern/sched_ule.c
2823
struct thread *td;
sys/kern/sched_ule.c
2848
struct thread *ctd;
sys/kern/sched_ule.c
2870
tdq_add(struct tdq *tdq, struct thread *td, int flags)
sys/kern/sched_ule.c
2898
sched_ule_add(struct thread *td, int flags)
sys/kern/sched_ule.c
2958
sched_ule_rem(struct thread *td)
sys/kern/sched_ule.c
2981
sched_ule_pctcpu(struct thread *td)
sys/kern/sched_ule.c
3003
sched_ule_affinity(struct thread *td)
sys/kern/sched_ule.c
3034
sched_ule_bind(struct thread *td, int cpu)
sys/kern/sched_ule.c
3058
sched_ule_unbind(struct thread *td)
sys/kern/sched_ule.c
3072
sched_ule_is_bound(struct thread *td)
sys/kern/sched_ule.c
3082
sched_ule_relinquish(struct thread *td)
sys/kern/sched_ule.c
3116
return (sizeof(struct thread) + sizeof(struct td_sched));
sys/kern/sched_ule.c
3132
struct thread *td;
sys/kern/sched_ule.c
3216
static struct thread *
sys/kern/sched_ule.c
3219
struct thread *newtd;
sys/kern/sched_ule.c
3235
struct thread *newtd;
sys/kern/sched_ule.c
3263
sched_ule_throw(struct thread *td)
sys/kern/sched_ule.c
3265
struct thread *newtd;
sys/kern/sched_ule.c
3294
sched_ule_fork_exit(struct thread *td)
sys/kern/sched_ule.c
3320
sched_ule_tdname(struct thread *td)
sys/kern/sched_ule.c
3336
sched_ule_clear_tdname(struct thread *td)
sys/kern/sched_ule.c
354
static void sched_priority(struct thread *);
sys/kern/sched_ule.c
355
static void sched_thread_priority(struct thread *, u_char);
sys/kern/sched_ule.c
356
static int sched_interact_score(struct thread *);
sys/kern/sched_ule.c
357
static void sched_interact_update(struct thread *);
sys/kern/sched_ule.c
358
static void sched_interact_fork(struct thread *);
sys/kern/sched_ule.c
362
static inline struct thread *runq_choose_realtime(struct runq *const rq);
sys/kern/sched_ule.c
363
static inline struct thread *runq_choose_timeshare(struct runq *const rq,
sys/kern/sched_ule.c
365
static inline struct thread *runq_choose_idle(struct runq *const rq);
sys/kern/sched_ule.c
366
static struct thread *tdq_choose(struct tdq *);
sys/kern/sched_ule.c
369
static void tdq_load_add(struct tdq *, struct thread *);
sys/kern/sched_ule.c
370
static void tdq_load_rem(struct tdq *, struct thread *);
sys/kern/sched_ule.c
371
static inline void tdq_runq_add(struct tdq *, struct thread *, int);
sys/kern/sched_ule.c
373
static inline void tdq_runq_rem(struct tdq *, struct thread *);
sys/kern/sched_ule.c
377
static int tdq_add(struct tdq *, struct thread *, int);
sys/kern/sched_ule.c
385
static inline struct thread *runq_steal_range(struct runq *const rq,
sys/kern/sched_ule.c
387
static inline struct thread *runq_steal_realtime(struct runq *const rq,
sys/kern/sched_ule.c
389
static inline struct thread *runq_steal_timeshare(struct runq *const rq,
sys/kern/sched_ule.c
391
static inline struct thread *runq_steal_idle(struct runq *const rq,
sys/kern/sched_ule.c
393
static struct thread *tdq_steal(struct tdq *, int);
sys/kern/sched_ule.c
395
static int sched_pickcpu(struct thread *, int);
sys/kern/sched_ule.c
398
static inline struct tdq *sched_setcpu(struct thread *, int, int);
sys/kern/sched_ule.c
399
static inline void thread_unblock_switch(struct thread *, struct mtx *);
sys/kern/sched_ule.c
409
struct thread *td;
sys/kern/sched_ule.c
504
tdq_runq_add(struct tdq *tdq, struct thread *td, int flags)
sys/kern/sched_ule.c
600
tdq_runq_rem(struct tdq *tdq, struct thread *td)
sys/kern/sched_ule.c
630
tdq_load_add(struct tdq *tdq, struct thread *td)
sys/kern/sched_ule.c
648
tdq_load_rem(struct tdq *tdq, struct thread *td)
sys/kern/sched_ule.c
692
tdq_setlowpri(struct tdq *tdq, struct thread *ctd)
sys/kern/sched_ule.c
694
struct thread *td;
sys/kern/sched_ule.c
923
struct thread *td;
sys/kern/subr_asan.c
298
kasan_thread_alloc(struct thread *td)
sys/kern/subr_bus.c
5753
struct thread *td)
sys/kern/subr_devstat.c
528
struct thread *td)
sys/kern/subr_epoch.c
127
TAILQ_HEAD (threadlist, thread);
sys/kern/subr_epoch.c
222
epoch_trace_enter(struct thread *td, epoch_t epoch, epoch_tracker_t et,
sys/kern/subr_epoch.c
243
epoch_trace_exit(struct thread *td, epoch_t epoch, epoch_tracker_t et,
sys/kern/subr_epoch.c
266
epoch_trace_list(struct thread *td)
sys/kern/subr_epoch.c
357
epoch_adjust_prio(struct thread *td, u_char prio)
sys/kern/subr_epoch.c
466
struct thread *td;
sys/kern/subr_epoch.c
516
struct thread *td;
sys/kern/subr_epoch.c
568
struct thread *td, *owner, *curwaittd;
sys/kern/subr_epoch.c
704
struct thread *td;
sys/kern/subr_epoch.c
76
struct thread *er_td;
sys/kern/subr_epoch.c
850
struct thread *td;
sys/kern/subr_epoch.c
879
epoch_assert_nocpu(epoch_t epoch, struct thread *td)
sys/kern/subr_epoch.c
903
struct thread *td;
sys/kern/subr_epoch.c
960
struct thread *td;
sys/kern/subr_firmware.c
273
struct thread *td = curthread;
sys/kern/subr_firmware.c
392
struct thread *td;
sys/kern/subr_gtaskqueue.c
160
gtaskqueue_terminate(struct thread **pp, struct gtaskqueue *tq)
sys/kern/subr_gtaskqueue.c
454
struct thread *td;
sys/kern/subr_gtaskqueue.c
464
tq->tq_threads = malloc(sizeof(struct thread *) * count, M_GTASKQUEUE,
sys/kern/subr_gtaskqueue.c
73
struct thread **tq_threads;
sys/kern/subr_intr.c
334
struct thread * td;
sys/kern/subr_kdb.c
462
kdb_backtrace_thread(struct thread *td)
sys/kern/subr_kdb.c
504
kdb_backend_permitted(struct kdb_dbbe *be, struct thread *td)
sys/kern/subr_kdb.c
63
struct thread *kdb_thread = NULL;
sys/kern/subr_kdb.c
637
kdb_thr_ctx(struct thread *thr)
sys/kern/subr_kdb.c
656
struct thread *
sys/kern/subr_kdb.c
660
struct thread *thr;
sys/kern/subr_kdb.c
677
struct thread *
sys/kern/subr_kdb.c
689
struct thread *
sys/kern/subr_kdb.c
692
struct thread *thr;
sys/kern/subr_kdb.c
700
struct thread *
sys/kern/subr_kdb.c
701
kdb_thr_next(struct thread *thr)
sys/kern/subr_kdb.c
727
kdb_thr_select(struct thread *thr)
sys/kern/subr_lock.c
630
lock_profile_thread_exit(struct thread *td)
sys/kern/subr_log.c
104
logopen(struct cdev *dev, int flags, int mode, struct thread *td)
sys/kern/subr_log.c
128
logclose(struct cdev *dev, int flag, int mode, struct thread *td)
sys/kern/subr_log.c
179
logpoll(struct cdev *dev, int events, struct thread *td)
sys/kern/subr_log.c
253
logioctl(struct cdev *dev, u_long com, caddr_t data, int flag, struct thread *td)
sys/kern/subr_msan.c
447
kmsan_thread_alloc(struct thread *td)
sys/kern/subr_msan.c
472
kmsan_thread_free(struct thread *td)
sys/kern/subr_pcpu.c
355
struct thread *td;
sys/kern/subr_power.c
81
struct thread *td)
sys/kern/subr_prf.c
1289
struct thread *td;
sys/kern/subr_prf.c
170
struct thread *td;
sys/kern/subr_prof.c
111
addupc_intr(struct thread *td, uintfptr_t pc, u_int ticks)
sys/kern/subr_prof.c
136
addupc_task(struct thread *td, uintfptr_t pc, u_int ticks)
sys/kern/subr_prof.c
60
sys_profil(struct thread *td, struct profil_args *uap)
sys/kern/subr_sglist.c
532
sglist_append_user(struct sglist *sg, void *buf, size_t len, struct thread *td)
sys/kern/subr_sleepqueue.c
1009
bool (*matches)(struct thread *), int pri)
sys/kern/subr_sleepqueue.c
1011
struct thread *td, *tdn;
sys/kern/subr_sleepqueue.c
1034
struct thread *td;
sys/kern/subr_sleepqueue.c
1077
sleepq_remove(struct thread *td, const void *wchan)
sys/kern/subr_sleepqueue.c
1115
sleepq_abort(struct thread *td, int intrval)
sys/kern/subr_sleepqueue.c
1158
sleepq_chains_remove_matching(bool (*matches)(struct thread *))
sys/kern/subr_sleepqueue.c
1188
struct thread *td, *td_next;
sys/kern/subr_sleepqueue.c
1227
MAXCOMLEN + sizeof(struct thread *) * 2 + 40,
sys/kern/subr_sleepqueue.c
1451
struct thread *td;
sys/kern/subr_sleepqueue.c
172
static void sleepq_resume_thread(struct sleepqueue *sq, struct thread *td,
sys/kern/subr_sleepqueue.c
174
static void sleepq_remove_thread(struct sleepqueue *sq, struct thread *td);
sys/kern/subr_sleepqueue.c
312
struct thread *td;
sys/kern/subr_sleepqueue.c
398
struct thread *td;
sys/kern/subr_sleepqueue.c
436
sleepq_check_ast_sc_locked(struct thread *td, struct sleepqueue_chain *sc)
sys/kern/subr_sleepqueue.c
504
struct thread *td;
sys/kern/subr_sleepqueue.c
550
struct thread *td;
sys/kern/subr_sleepqueue.c
620
struct thread *td;
sys/kern/subr_sleepqueue.c
639
struct thread *td;
sys/kern/subr_sleepqueue.c
654
struct thread *td;
sys/kern/subr_sleepqueue.c
684
struct thread *td;
sys/kern/subr_sleepqueue.c
741
sleepq_resume_thread(struct sleepqueue *sq, struct thread *td, int pri,
sys/kern/subr_sleepqueue.c
799
sleepq_remove_thread(struct sleepqueue *sq, struct thread *td)
sys/kern/subr_sleepqueue.c
865
sleepq_remove_nested(struct thread *td)
sys/kern/subr_sleepqueue.c
930
struct thread *td, *besttd;
sys/kern/subr_sleepqueue.c
952
besttd = TAILQ_LAST_FAST(head, thread, td_slpq);
sys/kern/subr_sleepqueue.c
954
td = TAILQ_PREV_FAST(besttd, head, thread, td_slpq);
sys/kern/subr_sleepqueue.c
978
match_any(struct thread *td __unused)
sys/kern/subr_smp.c
1066
struct thread *td, *newtd;
sys/kern/subr_smp.c
1079
newtd = (struct thread *)
sys/kern/subr_smp.c
217
forward_signal(struct thread *td)
sys/kern/subr_smp.c
487
struct thread *td;
sys/kern/subr_syscall.c
217
syscallret(struct thread *td)
sys/kern/subr_syscall.c
53
syscallenter(struct thread *td)
sys/kern/subr_taskqueue.c
220
taskqueue_terminate(struct thread **pp, struct taskqueue *tq)
sys/kern/subr_taskqueue.c
722
struct thread *td;
sys/kern/subr_taskqueue.c
732
tq->tq_threads = malloc(sizeof(struct thread *) * count, M_TASKQUEUE,
sys/kern/subr_taskqueue.c
74
struct thread **tq_threads;
sys/kern/subr_taskqueue.c
892
TASKQUEUE_DEFINE_THREAD(thread);
sys/kern/subr_taskqueue.c
921
taskqueue_member(struct taskqueue *queue, struct thread *td)
sys/kern/subr_terminal.c
437
termtty_ioctl(struct tty *tp, u_long cmd, caddr_t data, struct thread *td)
sys/kern/subr_trap.c
181
ast_prep(struct thread *td, int tda __unused)
sys/kern/subr_trap.c
193
void (*ae_f)(struct thread *td, int ast);
sys/kern/subr_trap.c
204
void (*f)(struct thread *, int asts))
sys/kern/subr_trap.c
241
ast_sched_locked(struct thread *td, int tda)
sys/kern/subr_trap.c
250
ast_unsched_locked(struct thread *td, int tda)
sys/kern/subr_trap.c
259
ast_sched(struct thread *td, int tda)
sys/kern/subr_trap.c
267
ast_sched_mask(struct thread *td, int ast)
sys/kern/subr_trap.c
275
ast_handler_calc_tdp_run(struct thread *td, const struct ast_entry *ae)
sys/kern/subr_trap.c
285
ast_handler(struct thread *td, struct trapframe *framep, bool dtor)
sys/kern/subr_trap.c
288
void (*f)(struct thread *td, int asts);
sys/kern/subr_trap.c
357
struct thread *td;
sys/kern/subr_trap.c
365
ast_kclear(struct thread *td)
sys/kern/subr_trap.c
82
userret(struct thread *td, struct trapframe *frame)
sys/kern/subr_turnstile.c
1027
struct thread *td;
sys/kern/subr_turnstile.c
1066
struct thread *
sys/kern/subr_turnstile.c
1095
print_thread(struct thread *td, const char *prefix)
sys/kern/subr_turnstile.c
1105
struct thread *td;
sys/kern/subr_turnstile.c
1169
print_lockchain(struct thread *td, const char *prefix)
sys/kern/subr_turnstile.c
1174
struct thread *owner;
sys/kern/subr_turnstile.c
1234
struct thread *td;
sys/kern/subr_turnstile.c
1248
struct thread *td;
sys/kern/subr_turnstile.c
1270
print_waiter(struct thread *td, int indent)
sys/kern/subr_turnstile.c
128
struct thread *ts_owner; /* (c + q) Who owns the lock. */
sys/kern/subr_turnstile.c
1289
struct thread *td;
sys/kern/subr_turnstile.c
161
static void propagate_priority(struct thread *td);
sys/kern/subr_turnstile.c
163
struct thread *td);
sys/kern/subr_turnstile.c
164
static struct thread *turnstile_first_waiter(struct turnstile *ts);
sys/kern/subr_turnstile.c
165
static void turnstile_setowner(struct turnstile *ts, struct thread *owner);
sys/kern/subr_turnstile.c
186
propagate_unlock_td(struct turnstile *top, struct thread *td)
sys/kern/subr_turnstile.c
199
propagate_priority(struct thread *td)
sys/kern/subr_turnstile.c
313
turnstile_adjust_thread(struct turnstile *ts, struct thread *td)
sys/kern/subr_turnstile.c
315
struct thread *td1, *td2;
sys/kern/subr_turnstile.c
443
turnstile_adjust(struct thread *td, u_char oldpri)
sys/kern/subr_turnstile.c
478
turnstile_setowner(struct turnstile *ts, struct thread *owner)
sys/kern/subr_turnstile.c
593
struct thread **tdp)
sys/kern/subr_turnstile.c
685
static struct thread *
sys/kern/subr_turnstile.c
688
struct thread *std, *xtd;
sys/kern/subr_turnstile.c
704
struct thread *td, *owner;
sys/kern/subr_turnstile.c
739
turnstile_wait(struct turnstile *ts, struct thread *owner, int queue)
sys/kern/subr_turnstile.c
742
struct thread *td, *td1;
sys/kern/subr_turnstile.c
831
struct thread *td;
sys/kern/subr_turnstile.c
883
struct thread *td;
sys/kern/subr_turnstile.c
924
turnstile_calc_unlend_prio_locked(struct thread *td)
sys/kern/subr_turnstile.c
949
TAILQ_HEAD( ,thread) pending_threads;
sys/kern/subr_turnstile.c
950
struct thread *td;
sys/kern/subr_uio.c
511
copyout_map(struct thread *td, vm_offset_t *addr, size_t sz)
sys/kern/subr_uio.c
539
copyout_unmap(struct thread *td, vm_offset_t addr, size_t sz)
sys/kern/subr_witness.c
1446
struct thread *td;
sys/kern/subr_witness.c
1876
struct thread *td;
sys/kern/subr_witness.c
2025
struct thread *td;
sys/kern/subr_witness.c
2129
witness_thread_exit(struct thread *td)
sys/kern/subr_witness.c
2166
struct thread *td;
sys/kern/subr_witness.c
2664
witness_thread_has_locks(struct thread *td)
sys/kern/subr_witness.c
2674
struct thread *td;
sys/kern/subr_witness.c
2708
witness_display_spinlock(struct lock_object *lock, struct thread *owner,
sys/kern/subr_witness.c
2952
witness_ddb_list(struct thread *td)
sys/kern/subr_witness.c
2981
struct thread *td;
sys/kern/subr_witness.c
2992
struct thread *td;
sys/kern/subr_witness.c
330
static void witness_ddb_list(struct thread *td);
sys/kern/sys_capability.c
101
sys_cap_enter(struct thread *td, struct cap_enter_args *uap)
sys/kern/sys_capability.c
124
sys_cap_getmode(struct thread *td, struct cap_getmode_args *uap)
sys/kern/sys_capability.c
135
sys_cap_enter(struct thread *td, struct cap_enter_args *uap)
sys/kern/sys_capability.c
142
sys_cap_getmode(struct thread *td, struct cap_getmode_args *uap)
sys/kern/sys_capability.c
230
kern_cap_rights_limit(struct thread *td, int fd, cap_rights_t *rights)
sys/kern/sys_capability.c
267
sys_cap_rights_limit(struct thread *td, struct cap_rights_limit_args *uap)
sys/kern/sys_capability.c
310
sys___cap_rights_get(struct thread *td, struct __cap_rights_get_args *uap)
sys/kern/sys_capability.c
416
kern_cap_ioctls_limit(struct thread *td, int fd, u_long *cmds, size_t ncmds)
sys/kern/sys_capability.c
459
sys_cap_ioctls_limit(struct thread *td, struct cap_ioctls_limit_args *uap)
sys/kern/sys_capability.c
485
sys_cap_ioctls_get(struct thread *td, struct cap_ioctls_get_args *uap)
sys/kern/sys_capability.c
574
sys_cap_fcntls_limit(struct thread *td, struct cap_fcntls_limit_args *uap)
sys/kern/sys_capability.c
613
sys_cap_fcntls_get(struct thread *td, struct cap_fcntls_get_args *uap)
sys/kern/sys_capability.c
645
sys_cap_rights_limit(struct thread *td, struct cap_rights_limit_args *uap)
sys/kern/sys_capability.c
652
sys___cap_rights_get(struct thread *td, struct __cap_rights_get_args *uap)
sys/kern/sys_capability.c
659
sys_cap_ioctls_limit(struct thread *td, struct cap_ioctls_limit_args *uap)
sys/kern/sys_capability.c
666
sys_cap_ioctls_get(struct thread *td, struct cap_ioctls_get_args *uap)
sys/kern/sys_capability.c
673
sys_cap_fcntls_limit(struct thread *td, struct cap_fcntls_limit_args *uap)
sys/kern/sys_capability.c
680
sys_cap_fcntls_get(struct thread *td, struct cap_fcntls_get_args *uap)
sys/kern/sys_eventfd.c
110
eventfd_create_file(struct thread *td, struct file *fp, uint32_t initval,
sys/kern/sys_eventfd.c
182
eventfd_close(struct file *fp, struct thread *td)
sys/kern/sys_eventfd.c
193
int flags, struct thread *td)
sys/kern/sys_eventfd.c
235
int flags, struct thread *td)
sys/kern/sys_eventfd.c
277
struct thread *td)
sys/kern/sys_eventfd.c
360
struct ucred *active_cred, struct thread *td)
sys/kern/sys_generic.c
1017
sys___specialfd(struct thread *td, struct __specialfd_args *args)
sys/kern/sys_generic.c
1077
sys_pselect(struct thread *td, struct pselect_args *uap)
sys/kern/sys_generic.c
1104
kern_pselect(struct thread *td, int nd, fd_set *in, fd_set *ou, fd_set *ex,
sys/kern/sys_generic.c
1146
sys_select(struct thread *td, struct select_args *uap)
sys/kern/sys_generic.c
119
static int pollout(struct thread *, struct pollfd *, struct pollfd *,
sys/kern/sys_generic.c
121
static int pollscan(struct thread *, struct pollfd *, u_int);
sys/kern/sys_generic.c
1212
kern_select(struct thread *td, int nd, fd_set *fd_in, fd_set *fd_ou,
sys/kern/sys_generic.c
122
static int pollrescan(struct thread *);
sys/kern/sys_generic.c
123
static int selscan(struct thread *, fd_mask **, fd_mask **, int);
sys/kern/sys_generic.c
124
static int selrescan(struct thread *, fd_mask **, fd_mask **);
sys/kern/sys_generic.c
125
static void selfdalloc(struct thread *, void *);
sys/kern/sys_generic.c
127
static int dofileread(struct thread *, int, struct file *, struct uio *,
sys/kern/sys_generic.c
129
static int dofilewrite(struct thread *, int, struct file *, struct uio *,
sys/kern/sys_generic.c
132
static void seltdinit(struct thread *);
sys/kern/sys_generic.c
133
static int seltdwait(struct thread *, sbintime_t, sbintime_t);
sys/kern/sys_generic.c
134
static void seltdclear(struct thread *);
sys/kern/sys_generic.c
1457
selrescan(struct thread *td, fd_mask **ibits, fd_mask **obits)
sys/kern/sys_generic.c
1507
selscan(struct thread *td, fd_mask **ibits, fd_mask **obits, int nfd)
sys/kern/sys_generic.c
1549
sys_poll(struct thread *td, struct poll_args *uap)
sys/kern/sys_generic.c
1569
kern_poll_kfds(struct thread *td, struct pollfd *kfds, u_int nfds,
sys/kern/sys_generic.c
1648
sys_ppoll(struct thread *td, struct ppoll_args *uap)
sys/kern/sys_generic.c
1675
kern_poll(struct thread *td, struct pollfd *ufds, u_int nfds,
sys/kern/sys_generic.c
1722
pollrescan(struct thread *td)
sys/kern/sys_generic.c
1772
pollout(struct thread *td, struct pollfd *fds, struct pollfd *ufds, u_int nfd)
sys/kern/sys_generic.c
1793
pollscan(struct thread *td, struct pollfd *fds, u_int nfd)
sys/kern/sys_generic.c
1849
selsocket(struct socket *so, int events, struct timeval *tvp, struct thread *td)
sys/kern/sys_generic.c
1903
selfdalloc(struct thread *td, void *cookie)
sys/kern/sys_generic.c
1955
selrecord(struct thread *selector, struct selinfo *sip)
sys/kern/sys_generic.c
196
sys_read(struct thread *td, struct read_args *uap)
sys/kern/sys_generic.c
2055
seltdinit(struct thread *td)
sys/kern/sys_generic.c
2074
seltdwait(struct thread *td, sbintime_t sbt, sbintime_t precision)
sys/kern/sys_generic.c
2106
seltdfini(struct thread *td)
sys/kern/sys_generic.c
2130
seltdclear(struct thread *td)
sys/kern/sys_generic.c
2156
kern_posix_error(struct thread *td, int error)
sys/kern/sys_generic.c
2178
kcmp_pget(struct thread *td, pid_t pid, struct proc **pp)
sys/kern/sys_generic.c
2193
kern_kcmp(struct thread *td, pid_t pid1, pid_t pid2, int type,
sys/kern/sys_generic.c
2252
sys_kcmp(struct thread *td, struct kcmp_args *uap)
sys/kern/sys_generic.c
2259
file_kcmp_generic(struct file *fp1, struct file *fp2, struct thread *td)
sys/kern/sys_generic.c
2267
exterr_to_ue(struct thread *td, struct uexterror *ue)
sys/kern/sys_generic.c
227
sys_pread(struct thread *td, struct pread_args *uap)
sys/kern/sys_generic.c
2284
exterr_copyout(struct thread *td)
sys/kern/sys_generic.c
2316
sys_exterrctl(struct thread *td, struct exterrctl_args *uap)
sys/kern/sys_generic.c
2322
kern_exterrctl(struct thread *td, u_int op, u_int flags, void *ptr)
sys/kern/sys_generic.c
234
kern_pread(struct thread *td, int fd, void *buf, size_t nbyte, off_t offset)
sys/kern/sys_generic.c
2363
struct thread *td;
sys/kern/sys_generic.c
2381
struct thread *td;
sys/kern/sys_generic.c
254
freebsd6_pread(struct thread *td, struct freebsd6_pread_args *uap)
sys/kern/sys_generic.c
272
sys_readv(struct thread *td, struct readv_args *uap)
sys/kern/sys_generic.c
286
kern_readv(struct thread *td, int fd, struct uio *auio)
sys/kern/sys_generic.c
311
sys_preadv(struct thread *td, struct preadv_args *uap)
sys/kern/sys_generic.c
325
kern_preadv(struct thread *td, int fd, struct uio *auio, off_t offset)
sys/kern/sys_generic.c
349
dofileread(struct thread *td, int fd, struct file *fp, struct uio *auio,
sys/kern/sys_generic.c
397
sys_write(struct thread *td, struct write_args *uap)
sys/kern/sys_generic.c
428
sys_pwrite(struct thread *td, struct pwrite_args *uap)
sys/kern/sys_generic.c
435
kern_pwrite(struct thread *td, int fd, const void *buf, size_t nbyte,
sys/kern/sys_generic.c
456
freebsd6_pwrite(struct thread *td, struct freebsd6_pwrite_args *uap)
sys/kern/sys_generic.c
474
sys_writev(struct thread *td, struct writev_args *uap)
sys/kern/sys_generic.c
488
kern_writev(struct thread *td, int fd, struct uio *auio)
sys/kern/sys_generic.c
513
sys_pwritev(struct thread *td, struct pwritev_args *uap)
sys/kern/sys_generic.c
527
kern_pwritev(struct thread *td, int fd, struct uio *auio, off_t offset)
sys/kern/sys_generic.c
551
dofilewrite(struct thread *td, int fd, struct file *fp, struct uio *auio,
sys/kern/sys_generic.c
590
kern_filewrite(struct thread *td, int fd, struct file *fp, struct uio *auio,
sys/kern/sys_generic.c
622
kern_ftruncate(struct thread *td, int fd, off_t length)
sys/kern/sys_generic.c
651
sys_ftruncate(struct thread *td, struct ftruncate_args *uap)
sys/kern/sys_generic.c
665
oftruncate(struct thread *td, struct oftruncate_args *uap)
sys/kern/sys_generic.c
681
sys_ioctl(struct thread *td, struct ioctl_args *uap)
sys/kern/sys_generic.c
751
kern_ioctl(struct thread *td, int fd, u_long com, caddr_t data)
sys/kern/sys_generic.c
858
sys_posix_fallocate(struct thread *td, struct posix_fallocate_args *uap)
sys/kern/sys_generic.c
867
kern_posix_fallocate(struct thread *td, int fd, off_t offset, off_t len)
sys/kern/sys_generic.c
901
sys_fspacectl(struct thread *td, struct fspacectl_args *uap)
sys/kern/sys_generic.c
921
kern_fspacectl(struct thread *td, int fd, int cmd,
sys/kern/sys_generic.c
976
kern_specialfd(struct thread *td, int type, void *arg)
sys/kern/sys_getrandom.c
124
sys_getrandom(struct thread *td, struct getrandom_args *uap)
sys/kern/sys_getrandom.c
48
kern_getrandom(struct thread *td, void *user_buf, size_t buflen,
sys/kern/sys_pipe.c
1145
int flags, struct thread *td)
sys/kern/sys_pipe.c
1410
struct thread *td)
sys/kern/sys_pipe.c
1428
struct thread *td)
sys/kern/sys_pipe.c
1499
struct thread *td)
sys/kern/sys_pipe.c
1623
pipe_close(struct file *fp, struct thread *td)
sys/kern/sys_pipe.c
1635
pipe_chmod(struct file *fp, mode_t mode, struct ucred *active_cred, struct thread *td)
sys/kern/sys_pipe.c
1650
struct thread *td)
sys/kern/sys_pipe.c
241
static int pipe_paircreate(struct thread *td, struct pipepair **p_pp);
sys/kern/sys_pipe.c
374
pipe_paircreate(struct thread *td, struct pipepair **p_pp)
sys/kern/sys_pipe.c
426
pipe_named_ctor(struct pipe **ppipe, struct thread *td)
sys/kern/sys_pipe.c
472
kern_pipe(struct thread *td, int fildes[2], int flags, struct filecaps *fcaps1,
sys/kern/sys_pipe.c
525
freebsd10_pipe(struct thread *td, struct freebsd10_pipe_args *uap __unused)
sys/kern/sys_pipe.c
542
sys_pipe2(struct thread *td, struct pipe2_args *uap)
sys/kern/sys_pipe.c
754
int flags, struct thread *td)
sys/kern/sys_procdesc.c
139
kern_pdgetpid(struct thread *td, int fd, const cap_rights_t *rightsp,
sys/kern/sys_procdesc.c
157
sys_pdgetpid(struct thread *td, struct pdgetpid_args *uap)
sys/kern/sys_procdesc.c
223
procdesc_falloc(struct thread *td, struct file **resultfp, int *resultfd,
sys/kern/sys_procdesc.c
374
procdesc_close(struct file *fp, struct thread *td)
sys/kern/sys_procdesc.c
453
struct thread *td)
sys/kern/sys_procdesc.c
605
procdesc_cmp(struct file *fp1, struct file *fp2, struct thread *td)
sys/kern/sys_procdesc.c
617
pdopenpid1(struct thread *td, pid_t pid, struct procdesc **pdf, struct file *fp)
sys/kern/sys_procdesc.c
652
kern_pdopenpid(struct thread *td, pid_t pid, int flags)
sys/kern/sys_procdesc.c
695
sys_pdopenpid(struct thread *td, struct pdopenpid_args *args)
sys/kern/sys_procdesc.c
716
fget_procdesc(struct thread *td, int pdfd, const cap_rights_t *cap_rights,
sys/kern/sys_procdesc.c
750
kern_pddupfd(struct thread *td, int pdfd, int fd, int flags)
sys/kern/sys_procdesc.c
814
sys_pddupfd(struct thread *td, struct pddupfd_args *args)
sys/kern/sys_process.c
102
proc_read_regs(struct thread *td, struct reg *regs)
sys/kern/sys_process.c
1020
ptrace_report_child(struct thread *td, struct proc *p, struct proc *pp,
sys/kern/sys_process.c
1042
static struct thread *
sys/kern/sys_process.c
1045
struct thread *td2;
sys/kern/sys_process.c
1058
kern_ptrace(struct thread *td, int req, pid_t pid, void *addr, int data)
sys/kern/sys_process.c
1063
struct thread *td2 = NULL, *td3;
sys/kern/sys_process.c
109
proc_write_regs(struct thread *td, struct reg *regs)
sys/kern/sys_process.c
121
proc_read_dbregs(struct thread *td, struct dbreg *dbregs)
sys/kern/sys_process.c
128
proc_write_dbregs(struct thread *td, struct dbreg *dbregs)
sys/kern/sys_process.c
144
proc_read_fpregs(struct thread *td, struct fpreg *fpregs)
sys/kern/sys_process.c
151
proc_write_fpregs(struct thread *td, struct fpreg *fpregs)
sys/kern/sys_process.c
163
proc_find_regset(struct thread *td, int note)
sys/kern/sys_process.c
186
proc_read_regset(struct thread *td, int note, struct iovec *iov)
sys/kern/sys_process.c
250
proc_write_regset(struct thread *td, int note, struct iovec *iov)
sys/kern/sys_process.c
306
proc_read_regs32(struct thread *td, struct reg32 *regs32)
sys/kern/sys_process.c
313
proc_write_regs32(struct thread *td, struct reg32 *regs32)
sys/kern/sys_process.c
325
proc_read_dbregs32(struct thread *td, struct dbreg32 *dbregs32)
sys/kern/sys_process.c
332
proc_write_dbregs32(struct thread *td, struct dbreg32 *dbregs32)
sys/kern/sys_process.c
344
proc_read_fpregs32(struct thread *td, struct fpreg32 *fpregs32)
sys/kern/sys_process.c
351
proc_write_fpregs32(struct thread *td, struct fpreg32 *fpregs32)
sys/kern/sys_process.c
364
proc_sstep(struct thread *td)
sys/kern/sys_process.c
371
proc_vmspace_check_access(struct thread *td, struct proc *p, int flags)
sys/kern/sys_process.c
382
proc_vmspace_ref(struct thread *td, struct proc *p, int flags,
sys/kern/sys_process.c
436
proc_vmspace_unref(struct thread *td, struct proc *p, int flags,
sys/kern/sys_process.c
536
struct thread *td;
sys/kern/sys_process.c
549
vmspace_iop(struct thread *td, struct vmspace *vm, vm_offset_t va, void *buf,
sys/kern/sys_process.c
576
proc_readmem(struct thread *td, struct proc *p, vm_offset_t va, void *buf,
sys/kern/sys_process.c
584
proc_writemem(struct thread *td, struct proc *p, vm_offset_t va, void *buf,
sys/kern/sys_process.c
592
ptrace_vm_entry(struct thread *td, struct proc *p, struct ptrace_vm_entry *pve)
sys/kern/sys_process.c
717
sys_ptrace(struct thread *td, struct ptrace_args *uap)
sys/kern/sys_process.c
942
proc_can_ptrace1(struct thread *td, struct proc *p)
sys/kern/sys_process.c
958
proc_can_ptrace(struct thread *td, struct proc *p)
sys/kern/sys_process.c
985
ptrace_count_children(struct thread *td, struct proc *p, bool count_everything)
sys/kern/sys_socket.c
121
int flags, struct thread *td)
sys/kern/sys_socket.c
137
int flags, struct thread *td)
sys/kern/sys_socket.c
153
struct thread *td)
sys/kern/sys_socket.c
283
struct thread *td)
sys/kern/sys_socket.c
353
soo_close(struct file *fp, struct thread *td)
sys/kern/sys_socket.c
368
soo_fdclose(struct file *fp, int fd __unused, struct thread *td)
sys/kern/sys_socket.c
378
soo_chmod(struct file *fp, mode_t mode, struct ucred *cred, struct thread *td)
sys/kern/sys_socket.c
622
struct thread *td;
sys/kern/sys_timerfd.c
192
int flags, struct thread *td)
sys/kern/sys_timerfd.c
239
struct ucred *active_cred, struct thread *td)
sys/kern/sys_timerfd.c
260
struct thread *td)
sys/kern/sys_timerfd.c
339
timerfd_close(struct file *fp, struct thread *td)
sys/kern/sys_timerfd.c
435
kern_timerfd_create(struct thread *td, int clockid, int flags)
sys/kern/sys_timerfd.c
493
kern_timerfd_gettime(struct thread *td, int fd, struct itimerspec *curr_value)
sys/kern/sys_timerfd.c
517
kern_timerfd_settime(struct thread *td, int fd, int flags,
sys/kern/sys_timerfd.c
579
sys_timerfd_create(struct thread *td, struct timerfd_create_args *uap)
sys/kern/sys_timerfd.c
585
sys_timerfd_gettime(struct thread *td, struct timerfd_gettime_args *uap)
sys/kern/sys_timerfd.c
599
sys_timerfd_settime(struct thread *td, struct timerfd_settime_args *uap)
sys/kern/sysv_ipc.c
93
ipcperm(struct thread *td, struct ipc_perm *perm, int acc_mode)
sys/kern/sysv_msg.c
1108
sys_msgsnd(struct thread *td, struct msgsnd_args *uap)
sys/kern/sysv_msg.c
1136
kern_msgrcv(struct thread *td, int msqid, void *msgp, size_t msgsz, long msgtyp,
sys/kern/sysv_msg.c
1396
sys_msgrcv(struct thread *td, struct msgrcv_args *uap)
sys/kern/sysv_msg.c
1480
kern_get_msqids(struct thread *td, struct msqid_kernel **res, size_t *sz)
sys/kern/sysv_msg.c
1707
freebsd32_msgsys(struct thread *td, struct freebsd32_msgsys_args *uap)
sys/kern/sysv_msg.c
1734
freebsd7_freebsd32_msgctl(struct thread *td,
sys/kern/sysv_msg.c
1780
freebsd32_msgctl(struct thread *td, struct freebsd32_msgctl_args *uap)
sys/kern/sysv_msg.c
1823
freebsd32_msgsnd(struct thread *td, struct freebsd32_msgsnd_args *uap)
sys/kern/sysv_msg.c
1840
freebsd32_msgrcv(struct thread *td, struct freebsd32_msgrcv_args *uap)
sys/kern/sysv_msg.c
1880
sys_msgsys(struct thread *td, struct msgsys_args *uap)
sys/kern/sysv_msg.c
1903
freebsd7_msgctl(struct thread *td, struct freebsd7_msgctl_args *uap)
sys/kern/sysv_msg.c
478
sys_msgctl(struct thread *td, struct msgctl_args *uap)
sys/kern/sysv_msg.c
496
kern_msgctl(struct thread *td, int msqid, int cmd, struct msqid_ds *msqbuf)
sys/kern/sysv_msg.c
642
sys_msgget(struct thread *td, struct msgget_args *uap)
sys/kern/sysv_msg.c
766
kern_msgsnd(struct thread *td, int msqid, const void *msgp,
sys/kern/sysv_sem.c
101
int __semctl(struct thread *td, struct __semctl_args *uap);
sys/kern/sysv_sem.c
103
int semget(struct thread *td, struct semget_args *uap);
sys/kern/sysv_sem.c
105
int semop(struct thread *td, struct semop_args *uap);
sys/kern/sysv_sem.c
108
static struct sem_undo *semu_alloc(struct thread *td);
sys/kern/sysv_sem.c
109
static int semundo_adjust(struct thread *td, struct sem_undo **supptr,
sys/kern/sysv_sem.c
1093
sys_semop(struct thread *td, struct semop_args *uap)
sys/kern/sysv_sem.c
1100
kern_semop(struct thread *td, int usemid, struct sembuf *usops,
sys/kern/sysv_sem.c
1573
kern_get_sema(struct thread *td, struct semid_kernel **res, size_t *sz)
sys/kern/sysv_sem.c
1794
sys_semsys(struct thread *td, struct semsys_args *uap)
sys/kern/sysv_sem.c
1814
freebsd7___semctl(struct thread *td, struct freebsd7___semctl_args *uap)
sys/kern/sysv_sem.c
1889
freebsd32_semsys(struct thread *td, struct freebsd32_semsys_args *uap)
sys/kern/sysv_sem.c
1910
freebsd7_freebsd32___semctl(struct thread *td,
sys/kern/sysv_sem.c
1983
freebsd32___semctl(struct thread *td, struct freebsd32___semctl_args *uap)
sys/kern/sysv_sem.c
410
semu_alloc(struct thread *td)
sys/kern/sysv_sem.c
442
semundo_adjust(struct thread *td, struct sem_undo **supptr, int semid,
sys/kern/sysv_sem.c
632
sys___semctl(struct thread *td, struct __semctl_args *uap)
sys/kern/sysv_sem.c
690
kern_semctl(struct thread *td, int semid, int semnum, int cmd,
sys/kern/sysv_sem.c
961
sys_semget(struct thread *td, struct semget_args *uap)
sys/kern/sysv_shm.c
1123
kern_get_shmsegs(struct thread *td, struct shmid_kernel **res, size_t *sz)
sys/kern/sysv_shm.c
125
static int shmget_allocate_segment(struct thread *td, key_t key, size_t size,
sys/kern/sysv_shm.c
127
static int shmget_existing(struct thread *td, size_t size, int shmflg,
sys/kern/sysv_shm.c
1355
oshmctl(struct thread *td, struct oshmctl_args *uap)
sys/kern/sysv_shm.c
1421
sys_shmsys(struct thread *td, struct shmsys_args *uap)
sys/kern/sysv_shm.c
1435
freebsd32_shmsys(struct thread *td, struct freebsd32_shmsys_args *uap)
sys/kern/sysv_shm.c
1484
freebsd7_freebsd32_shmctl(struct thread *td,
sys/kern/sysv_shm.c
1571
freebsd32_shmctl(struct thread *td, struct freebsd32_shmctl_args *uap)
sys/kern/sysv_shm.c
1665
freebsd7_shmctl(struct thread *td, struct freebsd7_shmctl_args *uap)
sys/kern/sysv_shm.c
328
kern_shmdt_locked(struct thread *td, const void *shmaddr)
sys/kern/sysv_shm.c
367
sys_shmdt(struct thread *td, struct shmdt_args *uap)
sys/kern/sysv_shm.c
378
kern_shmat_locked(struct thread *td, int shmid, const void *shmaddr,
sys/kern/sysv_shm.c
468
kern_shmat(struct thread *td, int shmid, const void *shmaddr, int shmflg)
sys/kern/sysv_shm.c
486
sys_shmat(struct thread *td, struct shmat_args *uap)
sys/kern/sysv_shm.c
493
kern_shmctl_locked(struct thread *td, int shmid, int cmd, void *buf,
sys/kern/sysv_shm.c
597
kern_shmctl(struct thread *td, int shmid, int cmd, void *buf, size_t *bufsz)
sys/kern/sysv_shm.c
615
sys_shmctl(struct thread *td, struct shmctl_args *uap)
sys/kern/sysv_shm.c
656
shmget_existing(struct thread *td, size_t size, int shmflg, int mode,
sys/kern/sysv_shm.c
682
shmget_allocate_segment(struct thread *td, key_t key, size_t size, int mode)
sys/kern/sysv_shm.c
781
sys_shmget(struct thread *td, struct shmget_args *uap)
sys/kern/tty.c
1323
struct thread *td = curthread;
sys/kern/tty.c
1656
tty_sti_check(struct tty *tp, int fflag, struct thread *td)
sys/kern/tty.c
1679
struct thread *td)
sys/kern/tty.c
2038
tty_ioctl(struct tty *tp, u_long cmd, void *data, int fflag, struct thread *td)
sys/kern/tty.c
2237
ttyconsdev_open(struct cdev *dev, int oflags, int devtype, struct thread *td)
sys/kern/tty.c
273
struct thread *td)
sys/kern/tty.c
373
struct thread *td)
sys/kern/tty.c
425
tty_wait_background(struct tty *tp, struct thread *td, int sig)
sys/kern/tty.c
566
struct thread *td)
sys/kern/tty.c
651
ttydev_poll(struct cdev *dev, int events, struct thread *td)
sys/kern/tty.c
821
struct thread *td)
sys/kern/tty.c
838
struct thread *td __unused)
sys/kern/tty.c
854
struct thread *td)
sys/kern/tty.c
972
caddr_t data __unused, struct thread *td __unused)
sys/kern/tty.c
980
u_long cmd __unused, caddr_t data __unused, struct thread *td __unused)
sys/kern/tty_compat.c
180
struct thread *td)
sys/kern/tty_info.c
109
thread_compare(struct thread *td, struct thread *td2)
sys/kern/tty_info.c
289
struct thread *td, *tdpick;
sys/kern/tty_info.c
89
struct thread *td;
sys/kern/tty_pts.c
111
int flags, struct thread *td)
sys/kern/tty_pts.c
185
int flags, struct thread *td)
sys/kern/tty_pts.c
258
struct ucred *active_cred, struct thread *td)
sys/kern/tty_pts.c
385
struct thread *td)
sys/kern/tty_pts.c
567
ptsdev_close(struct file *fp, struct thread *td)
sys/kern/tty_pts.c
732
pts_alloc(int fflags, struct thread *td, struct file *fp)
sys/kern/tty_pts.c
785
pts_alloc_external(int fflags, struct thread *td, struct file *fp,
sys/kern/tty_pts.c
832
sys_posix_openpt(struct thread *td, struct posix_openpt_args *uap)
sys/kern/tty_tty.c
51
cttyopen(struct cdev *dev, int flag, int mode, struct thread *td)
sys/kern/uipc_domain.c
113
pr_listen_notsupp(struct socket *so, int backlog, struct thread *td)
sys/kern/uipc_domain.c
138
struct sockaddr *addr, struct mbuf *control, struct thread *td)
sys/kern/uipc_domain.c
62
pr_bind_notsupp(struct socket *so, struct sockaddr *nam, struct thread *td)
sys/kern/uipc_domain.c
69
struct thread *td)
sys/kern/uipc_domain.c
75
pr_connect_notsupp(struct socket *so, struct sockaddr *nam, struct thread *td)
sys/kern/uipc_domain.c
82
struct thread *td)
sys/kern/uipc_domain.c
95
struct ifnet *ifp, struct thread *td)
sys/kern/uipc_ktls.c
494
struct thread *td;
sys/kern/uipc_ktls.c
98
struct thread *td;
sys/kern/uipc_mqueue.c
1084
struct thread *a_td;
sys/kern/uipc_mqueue.c
1130
struct thread *a_td;
sys/kern/uipc_mqueue.c
1147
struct thread *a_td;
sys/kern/uipc_mqueue.c
1163
struct thread *a_td;
sys/kern/uipc_mqueue.c
1244
struct thread *td;
sys/kern/uipc_mqueue.c
1817
struct thread *td;
sys/kern/uipc_mqueue.c
2008
kern_kmq_open(struct thread *td, const char *upath, int flags, mode_t mode,
sys/kern/uipc_mqueue.c
2120
sys_kmq_open(struct thread *td, struct kmq_open_args *uap)
sys/kern/uipc_mqueue.c
2141
sys_kmq_unlink(struct thread *td, struct kmq_unlink_args *uap)
sys/kern/uipc_mqueue.c
2173
typedef int (*_fgetf)(struct thread *, int, const cap_rights_t *,
sys/kern/uipc_mqueue.c
2180
_getmq(struct thread *td, int fd, const cap_rights_t *rightsp, _fgetf func,
sys/kern/uipc_mqueue.c
2202
getmq(struct thread *td, int fd, struct file **fpp, struct mqfs_node **ppn,
sys/kern/uipc_mqueue.c
2211
getmq_read(struct thread *td, int fd, struct file **fpp,
sys/kern/uipc_mqueue.c
2220
getmq_write(struct thread *td, int fd, struct file **fpp,
sys/kern/uipc_mqueue.c
2229
kern_kmq_setattr(struct thread *td, int mqd, const struct mq_attr *attr,
sys/kern/uipc_mqueue.c
2260
sys_kmq_setattr(struct thread *td, struct kmq_setattr_args *uap)
sys/kern/uipc_mqueue.c
2280
kern_kmq_timedreceive(struct thread *td, int mqd, char *msg_ptr,
sys/kern/uipc_mqueue.c
2299
sys_kmq_timedreceive(struct thread *td, struct kmq_timedreceive_args *uap)
sys/kern/uipc_mqueue.c
2317
kern_kmq_timedsend(struct thread *td, int mqd, const char *msg_ptr,
sys/kern/uipc_mqueue.c
2336
sys_kmq_timedsend(struct thread *td, struct kmq_timedsend_args *uap)
sys/kern/uipc_mqueue.c
2354
kern_kmq_notify(struct thread *td, int mqd, struct sigevent *sigev)
sys/kern/uipc_mqueue.c
2457
sys_kmq_notify(struct thread *td, struct kmq_notify_args *uap)
sys/kern/uipc_mqueue.c
2498
struct thread *td)
sys/kern/uipc_mqueue.c
2525
mqf_close(struct file *fp, struct thread *td)
sys/kern/uipc_mqueue.c
2539
mqf_fdclose(struct file *fp, int fd, struct thread *td)
sys/kern/uipc_mqueue.c
2585
struct thread *td)
sys/kern/uipc_mqueue.c
2605
struct thread *td)
sys/kern/uipc_mqueue.c
2778
freebsd32_kmq_open(struct thread *td, struct freebsd32_kmq_open_args *uap)
sys/kern/uipc_mqueue.c
2798
freebsd32_kmq_setattr(struct thread *td, struct freebsd32_kmq_setattr_args *uap)
sys/kern/uipc_mqueue.c
2821
freebsd32_kmq_timedsend(struct thread *td,
sys/kern/uipc_mqueue.c
2843
freebsd32_kmq_timedreceive(struct thread *td,
sys/kern/uipc_mqueue.c
2865
freebsd32_kmq_notify(struct thread *td, struct freebsd32_kmq_notify_args *uap)
sys/kern/uipc_mqueue.c
857
struct thread *td;
sys/kern/uipc_sem.c
117
static int kern_sem_wait(struct thread *td, semid_t id, int tryflag,
sys/kern/uipc_sem.c
122
static int ksem_create(struct thread *td, const char *path,
sys/kern/uipc_sem.c
126
static int ksem_get(struct thread *td, semid_t id,
sys/kern/uipc_sem.c
199
struct thread *td)
sys/kern/uipc_sem.c
224
struct thread *td)
sys/kern/uipc_sem.c
253
ksem_closef(struct file *fp, struct thread *td)
sys/kern/uipc_sem.c
433
ksem_create_copyout_semid(struct thread *td, semid_t *semidp, int fd,
sys/kern/uipc_sem.c
463
ksem_create(struct thread *td, const char *name, semid_t *semidp, mode_t mode,
sys/kern/uipc_sem.c
590
ksem_get(struct thread *td, semid_t id, const cap_rights_t *rightsp,
sys/kern/uipc_sem.c
621
sys_ksem_init(struct thread *td, struct ksem_init_args *uap)
sys/kern/uipc_sem.c
638
sys_ksem_open(struct thread *td, struct ksem_open_args *uap)
sys/kern/uipc_sem.c
655
sys_ksem_unlink(struct thread *td, struct ksem_unlink_args *uap)
sys/kern/uipc_sem.c
690
sys_ksem_close(struct thread *td, struct ksem_close_args *uap)
sys/kern/uipc_sem.c
717
sys_ksem_post(struct thread *td, struct ksem_post_args *uap)
sys/kern/uipc_sem.c
758
sys_ksem_wait(struct thread *td, struct ksem_wait_args *uap)
sys/kern/uipc_sem.c
771
sys_ksem_timedwait(struct thread *td, struct ksem_timedwait_args *uap)
sys/kern/uipc_sem.c
799
sys_ksem_trywait(struct thread *td, struct ksem_trywait_args *uap)
sys/kern/uipc_sem.c
806
kern_sem_wait(struct thread *td, semid_t id, int tryflag,
sys/kern/uipc_sem.c
879
sys_ksem_getvalue(struct thread *td, struct ksem_getvalue_args *uap)
sys/kern/uipc_sem.c
916
sys_ksem_destroy(struct thread *td, struct ksem_destroy_args *uap)
sys/kern/uipc_sem.c
969
freebsd32_ksem_init(struct thread *td, struct freebsd32_ksem_init_args *uap)
sys/kern/uipc_sem.c
977
freebsd32_ksem_open(struct thread *td, struct freebsd32_ksem_open_args *uap)
sys/kern/uipc_sem.c
987
freebsd32_ksem_timedwait(struct thread *td,
sys/kern/uipc_shm.c
1158
kern_shm_open2(struct thread *td, const char *userpath, int flags, mode_t mode,
sys/kern/uipc_shm.c
132
static int shm_copyin_path(struct thread *td, const char *userpath_in,
sys/kern/uipc_shm.c
1398
freebsd12_shm_open(struct thread *td, struct freebsd12_shm_open_args *uap)
sys/kern/uipc_shm.c
1407
sys_shm_unlink(struct thread *td, struct shm_unlink_args *uap)
sys/kern/uipc_shm.c
1428
sys_shm_rename(struct thread *td, struct shm_rename_args *uap)
sys/kern/uipc_shm.c
1578
vm_ooffset_t foff, struct thread *td)
sys/kern/uipc_shm.c
1692
vm_ooffset_t foff, struct thread *td)
sys/kern/uipc_shm.c
1783
struct thread *td)
sys/kern/uipc_shm.c
1812
struct thread *td)
sys/kern/uipc_shm.c
2101
struct ucred *active_cred, struct thread *td)
sys/kern/uipc_shm.c
2141
shm_fallocate(struct file *fp, off_t offset, off_t len, struct thread *td)
sys/kern/uipc_shm.c
2214
kern_shm_open(struct thread *td, const char *path, int flags, mode_t mode,
sys/kern/uipc_shm.c
2232
sys_shm_open2(struct thread *td, struct shm_open2_args *uap)
sys/kern/uipc_shm.c
434
shm_seek(struct file *fp, off_t offset, int whence, struct thread *td)
sys/kern/uipc_shm.c
476
int flags, struct thread *td)
sys/kern/uipc_shm.c
499
int flags, struct thread *td)
sys/kern/uipc_shm.c
558
struct thread *td)
sys/kern/uipc_shm.c
576
struct thread *td)
sys/kern/uipc_shm.c
672
shm_close(struct file *fp, struct thread *td)
sys/kern/uipc_shm.c
684
shm_copyin_path(struct thread *td, const char *userpath_in, char **path_out) {
sys/kern/uipc_sockbuf.c
598
struct thread *td = curthread;
sys/kern/uipc_sockbuf.c
645
u_long buf_max, struct thread *td)
sys/kern/uipc_sockbuf.c
676
struct thread *td)
sys/kern/uipc_socket.c
1407
sobind(struct socket *so, struct sockaddr *nam, struct thread *td)
sys/kern/uipc_socket.c
1418
sobindat(int fd, struct socket *so, struct sockaddr *nam, struct thread *td)
sys/kern/uipc_socket.c
1441
solisten(struct socket *so, int backlog, struct thread *td)
sys/kern/uipc_socket.c
177
int flags, struct thread *td);
sys/kern/uipc_socket.c
2134
soconnect(struct socket *so, struct sockaddr *nam, struct thread *td)
sys/kern/uipc_socket.c
2141
soconnectat(int fd, struct socket *so, struct sockaddr *nam, struct thread *td)
sys/kern/uipc_socket.c
2203
struct mbuf *top, struct mbuf *control, int flags, struct thread *td)
sys/kern/uipc_socket.c
2366
struct mbuf *top, struct mbuf *control, int flags, struct thread *td)
sys/kern/uipc_socket.c
2624
struct mbuf *top, struct mbuf *control, int flags, struct thread *td)
sys/kern/uipc_socket.c
2646
struct mbuf *top, struct mbuf *control, int flags, struct thread *td)
sys/kern/uipc_socket.c
2664
struct thread *td;
sys/kern/uipc_socket.c
4512
sopoll_generic(struct socket *so, int events, struct thread *td)
sys/kern/uipc_socket.c
463
struct thread *td;
sys/kern/uipc_socket.c
954
soattach(struct socket *so, int proto, struct thread *td, struct socket *head)
sys/kern/uipc_socket.c
986
struct ucred *cred, struct thread *td)
sys/kern/uipc_syscalls.c
1044
recvit(struct thread *td, int s, struct msghdr *mp, void *namelenp)
sys/kern/uipc_syscalls.c
1063
kern_recvfrom(struct thread *td, int s, void *buf, size_t len, int flags,
sys/kern/uipc_syscalls.c
108
getsock(struct thread *td, int fd, const cap_rights_t *rightsp,
sys/kern/uipc_syscalls.c
1091
sys_recvfrom(struct thread *td, struct recvfrom_args *uap)
sys/kern/uipc_syscalls.c
1100
orecvfrom(struct thread *td, struct orecvfrom_args *uap)
sys/kern/uipc_syscalls.c
1109
orecv(struct thread *td, struct orecv_args *uap)
sys/kern/uipc_syscalls.c
1131
orecvmsg(struct thread *td, struct orecvmsg_args *uap)
sys/kern/uipc_syscalls.c
1155
sys_recvmsg(struct thread *td, struct recvmsg_args *uap)
sys/kern/uipc_syscalls.c
1184
sys_shutdown(struct thread *td, struct shutdown_args *uap)
sys/kern/uipc_syscalls.c
1191
kern_shutdown(struct thread *td, int s, int how)
sys/kern/uipc_syscalls.c
1220
sys_setsockopt(struct thread *td, struct setsockopt_args *uap)
sys/kern/uipc_syscalls.c
1228
kern_setsockopt(struct thread *td, int s, int level, int name, const void *val,
sys/kern/uipc_syscalls.c
1271
sys_getsockopt(struct thread *td, struct getsockopt_args *uap)
sys/kern/uipc_syscalls.c
1295
kern_getsockopt(struct thread *td, int s, int level, int name, void *val,
sys/kern/uipc_syscalls.c
133
sys_socket(struct thread *td, struct socket_args *uap)
sys/kern/uipc_syscalls.c
1338
user_getsockname(struct thread *td, int fdes, struct sockaddr *asa,
sys/kern/uipc_syscalls.c
1367
kern_getsockname(struct thread *td, int fd, struct sockaddr *sa)
sys/kern/uipc_syscalls.c
1388
sys_getsockname(struct thread *td, struct getsockname_args *uap)
sys/kern/uipc_syscalls.c
1395
ogetsockname(struct thread *td, struct ogetsockname_args *uap)
sys/kern/uipc_syscalls.c
140
kern_socket(struct thread *td, int domain, int type, int protocol)
sys/kern/uipc_syscalls.c
1402
user_getpeername(struct thread *td, int fdes, struct sockaddr *asa,
sys/kern/uipc_syscalls.c
1431
kern_getpeername(struct thread *td, int fd, struct sockaddr *sa)
sys/kern/uipc_syscalls.c
1459
sys_getpeername(struct thread *td, struct getpeername_args *uap)
sys/kern/uipc_syscalls.c
1466
ogetpeername(struct thread *td, struct ogetpeername_args *uap)
sys/kern/uipc_syscalls.c
1546
struct thread *td;
sys/kern/uipc_syscalls.c
186
sys_bind(struct thread *td, struct bind_args *uap)
sys/kern/uipc_syscalls.c
200
kern_bindat(struct thread *td, int dirfd, int fd, struct sockaddr *sa)
sys/kern/uipc_syscalls.c
241
sys_bindat(struct thread *td, struct bindat_args *uap)
sys/kern/uipc_syscalls.c
255
sys_listen(struct thread *td, struct listen_args *uap)
sys/kern/uipc_syscalls.c
262
kern_listen(struct thread *td, int s, int backlog)
sys/kern/uipc_syscalls.c
286
accept1(struct thread *td, int s, struct sockaddr *uname, socklen_t *anamelen,
sys/kern/uipc_syscalls.c
326
kern_accept(struct thread *td, int s, struct sockaddr *sa, struct file **fp)
sys/kern/uipc_syscalls.c
332
kern_accept4(struct thread *td, int s, struct sockaddr *sa, int flags,
sys/kern/uipc_syscalls.c
433
sys_accept(struct thread *td, struct accept_args *uap)
sys/kern/uipc_syscalls.c
440
sys_accept4(struct thread *td, struct accept4_args *uap)
sys/kern/uipc_syscalls.c
451
oaccept(struct thread *td, struct oaccept_args *uap)
sys/kern/uipc_syscalls.c
460
sys_connect(struct thread *td, struct connect_args *uap)
sys/kern/uipc_syscalls.c
474
kern_connectat(struct thread *td, int dirfd, int fd, struct sockaddr *sa)
sys/kern/uipc_syscalls.c
536
sys_connectat(struct thread *td, struct connectat_args *uap)
sys/kern/uipc_syscalls.c
550
kern_socketpair(struct thread *td, int domain, int type, int protocol,
sys/kern/uipc_syscalls.c
644
sys_socketpair(struct thread *td, struct socketpair_args *uap)
sys/kern/uipc_syscalls.c
661
sendit(struct thread *td, int s, struct msghdr *mp, int flags)
sys/kern/uipc_syscalls.c
724
kern_sendit(struct thread *td, int s, struct msghdr *mp, int flags,
sys/kern/uipc_syscalls.c
74
static int sendit(struct thread *td, int s, struct msghdr *mp, int flags);
sys/kern/uipc_syscalls.c
75
static int recvit(struct thread *td, int s, struct msghdr *mp, void *namelenp);
sys/kern/uipc_syscalls.c
77
static int accept1(struct thread *td, int s, struct sockaddr *uname,
sys/kern/uipc_syscalls.c
807
sys_sendto(struct thread *td, struct sendto_args *uap)
sys/kern/uipc_syscalls.c
828
osend(struct thread *td, struct osend_args *uap)
sys/kern/uipc_syscalls.c
845
osendmsg(struct thread *td, struct osendmsg_args *uap)
sys/kern/uipc_syscalls.c
866
sys_sendmsg(struct thread *td, struct sendmsg_args *uap)
sys/kern/uipc_syscalls.c
88
getsock_cap(struct thread *td, int fd, const cap_rights_t *rightsp,
sys/kern/uipc_syscalls.c
889
kern_recvit(struct thread *td, int s, struct msghdr *mp, enum uio_seg fromseg,
sys/kern/uipc_usrreq.c
1108
struct thread *td)
sys/kern/uipc_usrreq.c
1695
struct thread *td)
sys/kern/uipc_usrreq.c
1963
struct mbuf *m, struct mbuf *c, int flags, struct thread *td)
sys/kern/uipc_usrreq.c
2478
struct sockaddr *from, struct mbuf *control, struct thread *td)
sys/kern/uipc_usrreq.c
2868
unp_connect(struct socket *so, struct sockaddr *nam, struct thread *td)
sys/kern/uipc_usrreq.c
2876
struct thread *td, bool return_locked)
sys/kern/uipc_usrreq.c
294
struct thread *);
sys/kern/uipc_usrreq.c
296
struct thread *, bool);
sys/kern/uipc_usrreq.c
306
struct thread *, int *);
sys/kern/uipc_usrreq.c
3067
unp_copy_peercred(struct thread *td, struct unpcb *client_unp,
sys/kern/uipc_usrreq.c
311
static void unp_addsockcred(struct thread *, struct mchain *, int);
sys/kern/uipc_usrreq.c
3513
externalize_fdflags(struct filedescent *fde, struct thread *td)
sys/kern/uipc_usrreq.c
3532
struct thread *td = curthread; /* XXX */
sys/kern/uipc_usrreq.c
3718
unp_internalize(struct mbuf *control, struct mchain *mc, struct thread *td,
sys/kern/uipc_usrreq.c
3898
unp_addsockcred(struct thread *td, struct mchain *mc, int mode)
sys/kern/uipc_usrreq.c
480
uipc_attach(struct socket *so, int proto, struct thread *td)
sys/kern/uipc_usrreq.c
565
uipc_bindat(int fd, struct socket *so, struct sockaddr *nam, struct thread *td)
sys/kern/uipc_usrreq.c
693
uipc_bind(struct socket *so, struct sockaddr *nam, struct thread *td)
sys/kern/uipc_usrreq.c
700
uipc_connect(struct socket *so, struct sockaddr *nam, struct thread *td)
sys/kern/uipc_usrreq.c
711
struct thread *td)
sys/kern/uipc_usrreq.c
756
struct thread *td __unused)
sys/kern/uipc_usrreq.c
924
uipc_listen(struct socket *so, int backlog, struct thread *td)
sys/kern/vfs_acl.c
224
vacl_set_acl(struct thread *td, struct vnode *vp, acl_type_t type,
sys/kern/vfs_acl.c
262
vacl_get_acl(struct thread *td, struct vnode *vp, acl_type_t type,
sys/kern/vfs_acl.c
294
vacl_delete(struct thread *td, struct vnode *vp, acl_type_t type)
sys/kern/vfs_acl.c
325
vacl_aclcheck(struct thread *td, struct vnode *vp, acl_type_t type,
sys/kern/vfs_acl.c
351
sys___acl_get_file(struct thread *td, struct __acl_get_file_args *uap)
sys/kern/vfs_acl.c
362
sys___acl_get_link(struct thread *td, struct __acl_get_link_args *uap)
sys/kern/vfs_acl.c
370
kern___acl_get_path(struct thread *td, const char *path, acl_type_t type,
sys/kern/vfs_acl.c
390
sys___acl_set_file(struct thread *td, struct __acl_set_file_args *uap)
sys/kern/vfs_acl.c
401
sys___acl_set_link(struct thread *td, struct __acl_set_link_args *uap)
sys/kern/vfs_acl.c
409
kern___acl_set_path(struct thread *td, const char *path,
sys/kern/vfs_acl.c
429
sys___acl_get_fd(struct thread *td, struct __acl_get_fd_args *uap)
sys/kern/vfs_acl.c
449
sys___acl_set_fd(struct thread *td, struct __acl_set_fd_args *uap)
sys/kern/vfs_acl.c
469
sys___acl_delete_file(struct thread *td, struct __acl_delete_file_args *uap)
sys/kern/vfs_acl.c
479
sys___acl_delete_link(struct thread *td, struct __acl_delete_link_args *uap)
sys/kern/vfs_acl.c
486
kern___acl_delete_path(struct thread *td, const char *path,
sys/kern/vfs_acl.c
506
sys___acl_delete_fd(struct thread *td, struct __acl_delete_fd_args *uap)
sys/kern/vfs_acl.c
526
sys___acl_aclcheck_file(struct thread *td, struct __acl_aclcheck_file_args *uap)
sys/kern/vfs_acl.c
537
sys___acl_aclcheck_link(struct thread *td, struct __acl_aclcheck_link_args *uap)
sys/kern/vfs_acl.c
544
kern___acl_aclcheck_path(struct thread *td, const char *path, acl_type_t type,
sys/kern/vfs_acl.c
564
sys___acl_aclcheck_fd(struct thread *td, struct __acl_aclcheck_fd_args *uap)
sys/kern/vfs_acl.c
66
static int kern___acl_aclcheck_path(struct thread *td, const char *path,
sys/kern/vfs_acl.c
68
static int kern___acl_delete_path(struct thread *td, const char *path,
sys/kern/vfs_acl.c
70
static int kern___acl_get_path(struct thread *td, const char *path,
sys/kern/vfs_acl.c
72
static int kern___acl_set_path(struct thread *td, const char *path,
sys/kern/vfs_acl.c
74
static int vacl_set_acl(struct thread *td, struct vnode *vp,
sys/kern/vfs_acl.c
76
static int vacl_get_acl(struct thread *td, struct vnode *vp,
sys/kern/vfs_acl.c
78
static int vacl_aclcheck(struct thread *td, struct vnode *vp,
sys/kern/vfs_aio.c
1083
struct thread *td = curthread;
sys/kern/vfs_aio.c
1502
aio_aqueue(struct thread *td, struct aiocb *ujob, struct aioliojob *lj,
sys/kern/vfs_aio.c
1909
kern_aio_return(struct thread *td, struct aiocb *ujob, struct aiocb_ops *ops)
sys/kern/vfs_aio.c
1945
sys_aio_return(struct thread *td, struct aio_return_args *uap)
sys/kern/vfs_aio.c
1955
kern_aio_suspend(struct thread *td, int njoblist, struct aiocb **ujoblist,
sys/kern/vfs_aio.c
2014
sys_aio_suspend(struct thread *td, struct aio_suspend_args *uap)
sys/kern/vfs_aio.c
2043
sys_aio_cancel(struct thread *td, struct aio_cancel_args *uap)
sys/kern/vfs_aio.c
2133
kern_aio_error(struct thread *td, struct aiocb *ujob, struct aiocb_ops *ops)
sys/kern/vfs_aio.c
2174
sys_aio_error(struct thread *td, struct aio_error_args *uap)
sys/kern/vfs_aio.c
2183
freebsd6_aio_read(struct thread *td, struct freebsd6_aio_read_args *uap)
sys/kern/vfs_aio.c
2192
sys_aio_read(struct thread *td, struct aio_read_args *uap)
sys/kern/vfs_aio.c
2199
sys_aio_readv(struct thread *td, struct aio_readv_args *uap)
sys/kern/vfs_aio.c
2208
freebsd6_aio_write(struct thread *td, struct freebsd6_aio_write_args *uap)
sys/kern/vfs_aio.c
2217
sys_aio_write(struct thread *td, struct aio_write_args *uap)
sys/kern/vfs_aio.c
2224
sys_aio_writev(struct thread *td, struct aio_writev_args *uap)
sys/kern/vfs_aio.c
2231
sys_aio_mlock(struct thread *td, struct aio_mlock_args *uap)
sys/kern/vfs_aio.c
2238
kern_lio_listio(struct thread *td, int mode, struct aiocb * const *uacb_list,
sys/kern/vfs_aio.c
2387
freebsd6_lio_listio(struct thread *td, struct freebsd6_lio_listio_args *uap)
sys/kern/vfs_aio.c
2425
sys_lio_listio(struct thread *td, struct lio_listio_args *uap)
sys/kern/vfs_aio.c
2523
kern_aio_waitcomplete(struct thread *td, struct aiocb **ujobp,
sys/kern/vfs_aio.c
2596
sys_aio_waitcomplete(struct thread *td, struct aio_waitcomplete_args *uap)
sys/kern/vfs_aio.c
2614
kern_aio_fsync(struct thread *td, int op, struct aiocb *ujob,
sys/kern/vfs_aio.c
2634
sys_aio_fsync(struct thread *td, struct aio_fsync_args *uap)
sys/kern/vfs_aio.c
2939
freebsd32_aio_return(struct thread *td, struct freebsd32_aio_return_args *uap)
sys/kern/vfs_aio.c
2946
freebsd32_aio_suspend(struct thread *td, struct freebsd32_aio_suspend_args *uap)
sys/kern/vfs_aio.c
2982
freebsd32_aio_error(struct thread *td, struct freebsd32_aio_error_args *uap)
sys/kern/vfs_aio.c
2990
freebsd6_freebsd32_aio_read(struct thread *td,
sys/kern/vfs_aio.c
3000
freebsd32_aio_read(struct thread *td, struct freebsd32_aio_read_args *uap)
sys/kern/vfs_aio.c
3008
freebsd32_aio_readv(struct thread *td, struct freebsd32_aio_readv_args *uap)
sys/kern/vfs_aio.c
3017
freebsd6_freebsd32_aio_write(struct thread *td,
sys/kern/vfs_aio.c
3027
freebsd32_aio_write(struct thread *td, struct freebsd32_aio_write_args *uap)
sys/kern/vfs_aio.c
3035
freebsd32_aio_writev(struct thread *td, struct freebsd32_aio_writev_args *uap)
sys/kern/vfs_aio.c
3043
freebsd32_aio_mlock(struct thread *td, struct freebsd32_aio_mlock_args *uap)
sys/kern/vfs_aio.c
3051
freebsd32_aio_waitcomplete(struct thread *td,
sys/kern/vfs_aio.c
3074
freebsd32_aio_fsync(struct thread *td, struct freebsd32_aio_fsync_args *uap)
sys/kern/vfs_aio.c
3083
freebsd6_freebsd32_lio_listio(struct thread *td,
sys/kern/vfs_aio.c
313
static int aio_aqueue(struct thread *td, struct aiocb *ujob,
sys/kern/vfs_aio.c
3130
freebsd32_lio_listio(struct thread *td, struct freebsd32_lio_listio_args *uap)
sys/kern/vfs_aio.c
477
struct thread *td;
sys/kern/vfs_aio.c
735
aio_fsync_vnode(struct thread *td, struct vnode *vp, int op)
sys/kern/vfs_aio.c
771
struct thread *td;
sys/kern/vfs_aio.c
847
struct thread *td = curthread;
sys/kern/vfs_bio.c
2183
struct thread *td;
sys/kern/vfs_bio.c
2244
struct thread *td;
sys/kern/vfs_bio.c
2460
struct thread *td = curthread;
sys/kern/vfs_bio.c
720
struct thread *td;
sys/kern/vfs_cache.c
3224
sys___getcwd(struct thread *td, struct __getcwd_args *uap)
sys/kern/vfs_cache.c
3281
kern___realpathat(struct thread *td, int fd, const char *path, char *buf,
sys/kern/vfs_cache.c
3341
sys___realpathat(struct thread *td, struct __realpathat_args *uap)
sys/kern/vfs_cache.c
3964
vn_path_to_global_path(struct thread *td, struct vnode *vp, char *path,
sys/kern/vfs_cache.c
4023
vn_path_to_global_path_hardlink(struct thread *td, struct vnode *vp,
sys/kern/vfs_cache.c
4617
struct thread *td;
sys/kern/vfs_cluster.c
95
struct thread *td;
sys/kern/vfs_default.c
1390
struct thread *td;
sys/kern/vfs_default.c
284
dirent_exists(struct vnode *vp, const char *dirname, struct thread *td)
sys/kern/vfs_default.c
699
struct thread *const td = curthread;
sys/kern/vfs_default.c
75
struct thread *td);
sys/kern/vfs_default.c
825
struct thread *td;
sys/kern/vfs_default.c
954
struct thread *td;
sys/kern/vfs_extattr.c
174
void *data, size_t nbytes, struct thread *td)
sys/kern/vfs_extattr.c
231
sys_extattr_set_fd(struct thread *td, struct extattr_set_fd_args *uap)
sys/kern/vfs_extattr.c
244
kern_extattr_set_fp(struct thread *td, struct file *fp, int attrnamespace,
sys/kern/vfs_extattr.c
253
kern_extattr_set_fd(struct thread *td, int fd, int attrnamespace,
sys/kern/vfs_extattr.c
286
sys_extattr_set_file(struct thread *td, struct extattr_set_file_args *uap)
sys/kern/vfs_extattr.c
303
sys_extattr_set_link(struct thread *td, struct extattr_set_link_args *uap)
sys/kern/vfs_extattr.c
311
user_extattr_set_path(struct thread *td, const char *path, int attrnamespace,
sys/kern/vfs_extattr.c
325
kern_extattr_set_path(struct thread *td, const char *path, int attrnamespace,
sys/kern/vfs_extattr.c
360
void *data, size_t nbytes, struct thread *td)
sys/kern/vfs_extattr.c
428
sys_extattr_get_fd(struct thread *td, struct extattr_get_fd_args *uap)
sys/kern/vfs_extattr.c
441
kern_extattr_get_fp(struct thread *td, struct file *fp, int attrnamespace,
sys/kern/vfs_extattr.c
450
kern_extattr_get_fd(struct thread *td, int fd, int attrnamespace,
sys/kern/vfs_extattr.c
483
sys_extattr_get_file(struct thread *td, struct extattr_get_file_args *uap)
sys/kern/vfs_extattr.c
499
sys_extattr_get_link(struct thread *td, struct extattr_get_link_args *uap)
sys/kern/vfs_extattr.c
50
static int user_extattr_set_path(struct thread *td, const char *path,
sys/kern/vfs_extattr.c
506
user_extattr_get_path(struct thread *td, const char *path, int attrnamespace,
sys/kern/vfs_extattr.c
520
kern_extattr_get_path(struct thread *td, const char *path, int attrnamespace,
sys/kern/vfs_extattr.c
53
static int user_extattr_get_path(struct thread *td, const char *path,
sys/kern/vfs_extattr.c
555
struct thread *td)
sys/kern/vfs_extattr.c
56
static int user_extattr_delete_path(struct thread *td, const char *path,
sys/kern/vfs_extattr.c
58
static int user_extattr_list_path(struct thread *td, const char *path,
sys/kern/vfs_extattr.c
593
sys_extattr_delete_fd(struct thread *td, struct extattr_delete_fd_args *uap)
sys/kern/vfs_extattr.c
606
kern_extattr_delete_fp(struct thread *td, struct file *fp, int attrnamespace,
sys/kern/vfs_extattr.c
614
kern_extattr_delete_fd(struct thread *td, int fd, int attrnamespace,
sys/kern/vfs_extattr.c
643
sys_extattr_delete_file(struct thread *td, struct extattr_delete_file_args *uap)
sys/kern/vfs_extattr.c
658
sys_extattr_delete_link(struct thread *td, struct extattr_delete_link_args *uap)
sys/kern/vfs_extattr.c
666
user_extattr_delete_path(struct thread *td, const char *path, int attrnamespace,
sys/kern/vfs_extattr.c
680
kern_extattr_delete_path(struct thread *td, const char *path, int attrnamespace,
sys/kern/vfs_extattr.c
712
struct thread *td)
sys/kern/vfs_extattr.c
758
sys_extattr_list_fd(struct thread *td, struct extattr_list_fd_args *uap)
sys/kern/vfs_extattr.c
78
sys_extattrctl(struct thread *td, struct extattrctl_args *uap)
sys/kern/vfs_extattr.c
782
kern_extattr_list_fp(struct thread *td, struct file *fp, int attrnamespace,
sys/kern/vfs_extattr.c
790
kern_extattr_list_fd(struct thread *td, int fd, int attrnamespace,
sys/kern/vfs_extattr.c
819
sys_extattr_list_file(struct thread *td, struct extattr_list_file_args *uap)
sys/kern/vfs_extattr.c
835
sys_extattr_list_link(struct thread *td, struct extattr_list_link_args *uap)
sys/kern/vfs_extattr.c
843
user_extattr_list_path(struct thread *td, const char *path, int attrnamespace,
sys/kern/vfs_extattr.c
868
kern_extattr_list_path(struct thread *td, const char *path, int attrnamespace,
sys/kern/vfs_hash.c
113
vfs_hash_ref(const struct mount *mp, u_int hash, struct thread *td,
sys/kern/vfs_hash.c
152
vfs_hash_insert(struct vnode *vp, u_int hash, int flags, struct thread *td,
sys/kern/vfs_hash.c
72
vfs_hash_get(const struct mount *mp, u_int hash, int flags, struct thread *td,
sys/kern/vfs_init.c
145
vfs_byname_kld(const char *fstype, struct thread *td, int *error)
sys/kern/vfs_inotify.c
1002
sys_inotify_add_watch_at(struct thread *td,
sys/kern/vfs_inotify.c
1010
kern_inotify_rm_watch(int fd, uint32_t wd, struct thread *td)
sys/kern/vfs_inotify.c
1053
sys_inotify_rm_watch(struct thread *td, struct inotify_rm_watch_args *uap)
sys/kern/vfs_inotify.c
210
struct thread *td)
sys/kern/vfs_inotify.c
273
struct thread *td)
sys/kern/vfs_inotify.c
294
inotify_poll(struct file *fp, int events, struct ucred *cred, struct thread *td)
sys/kern/vfs_inotify.c
431
inotify_close(struct file *fp, struct thread *td)
sys/kern/vfs_inotify.c
488
inotify_create_file(struct thread *td, struct file *fp, int flags, int *fflagsp)
sys/kern/vfs_inotify.c
770
uint32_t *wdp, struct thread *td)
sys/kern/vfs_inotify.c
906
fget_inotify(struct thread *td, int fd, const cap_rights_t *needrightsp,
sys/kern/vfs_inotify.c
925
struct thread *td)
sys/kern/vfs_lookup.c
337
struct thread *td;
sys/kern/vfs_lookup.c
528
struct thread *td;
sys/kern/vfs_lookup.c
614
struct thread *td;
sys/kern/vfs_mount.c
1065
sys_mount(struct thread *td, struct mount_args *uap)
sys/kern/vfs_mount.c
1125
struct thread *td, /* Calling thread. */
sys/kern/vfs_mount.c
1334
struct thread *td, /* Calling thread. */
sys/kern/vfs_mount.c
1624
struct thread *td, /* Calling thread. */
sys/kern/vfs_mount.c
1756
sys_unmount(struct thread *td, struct unmount_args *uap)
sys/kern/vfs_mount.c
1763
kern_unmount(struct thread *td, const char *path, uint64_t flags)
sys/kern/vfs_mount.c
2188
dounmount(struct mount *mp, uint64_t flags, struct thread *td)
sys/kern/vfs_mount.c
436
sys_nmount(struct thread *td, struct nmount_args *uap)
sys/kern/vfs_mount.c
80
static int vfs_domount(struct thread *td, const char *fstype, char *fspath,
sys/kern/vfs_mount.c
808
vfs_donmount(struct thread *td, uint64_t fsflags, struct uio *fsoptions)
sys/kern/vfs_mountroot.c
1063
struct thread *td;
sys/kern/vfs_mountroot.c
246
vfs_mountroot_devfs(struct thread *td, struct mount **mpp)
sys/kern/vfs_mountroot.c
304
vfs_mountroot_shuffle(struct thread *td, struct mount *mpdevfs)
sys/kern/vfs_mountroot.c
574
struct thread *td;
sys/kern/vfs_mountroot.c
939
vfs_mountroot_readconf(struct thread *td, struct sbuf *sb)
sys/kern/vfs_mountroot.c
978
struct thread *td;
sys/kern/vfs_subr.c
1072
vfs_suser(struct mount *mp, struct thread *td)
sys/kern/vfs_subr.c
2102
struct thread *td;
sys/kern/vfs_subr.c
2190
struct thread *td;
sys/kern/vfs_subr.c
2200
struct thread *td;
sys/kern/vfs_subr.c
2987
sync_vnode(struct synclist *slp, struct bufobj **bo, struct thread *td)
sys/kern/vfs_subr.c
3046
struct thread *td = curthread;
sys/kern/vfs_subr.c
4195
vflush(struct mount *mp, int rootrefs, int flags, struct thread *td)
sys/kern/vfs_subr.c
4399
struct thread *td;
sys/kern/vfs_subr.c
480
struct thread *td = curthread;
sys/kern/vfs_subr.c
5332
vn_pollrecord(struct vnode *vp, struct thread *td, int events)
sys/kern/vfs_subr.c
5757
struct thread *td, accmode_t accmode)
sys/kern/vfs_syscalls.c
101
struct thread *td);
sys/kern/vfs_syscalls.c
102
static int kern_fhlinkat(struct thread *td, int fd, const char *path,
sys/kern/vfs_syscalls.c
1022
sys_chroot(struct thread *td, struct chroot_args *uap)
sys/kern/vfs_syscalls.c
1046
sys_fchroot(struct thread *td, struct fchroot_args *uap)
sys/kern/vfs_syscalls.c
105
size_t count, struct thread *td);
sys/kern/vfs_syscalls.c
106
static int kern_linkat_vp(struct thread *td, struct vnode *vp, int fd,
sys/kern/vfs_syscalls.c
1073
change_dir(struct vnode *vp, struct thread *td)
sys/kern/vfs_syscalls.c
1138
sys_open(struct thread *td, struct open_args *uap)
sys/kern/vfs_syscalls.c
1154
sys_openat(struct thread *td, struct openat_args *uap)
sys/kern/vfs_syscalls.c
1226
openatfp(struct thread *td, int dirfd, const char *path,
sys/kern/vfs_syscalls.c
134
kern_sync(struct thread *td)
sys/kern/vfs_syscalls.c
1351
kern_openat(struct thread *td, int dirfd, const char *path,
sys/kern/vfs_syscalls.c
1358
kern_openatfp(struct thread *td, int dirfd, const char *path,
sys/kern/vfs_syscalls.c
1381
ocreat(struct thread *td, struct ocreat_args *uap)
sys/kern/vfs_syscalls.c
1401
sys_mknodat(struct thread *td, struct mknodat_args *uap)
sys/kern/vfs_syscalls.c
1410
freebsd11_mknod(struct thread *td,
sys/kern/vfs_syscalls.c
1419
freebsd11_mknodat(struct thread *td,
sys/kern/vfs_syscalls.c
1429
kern_mknodat(struct thread *td, int fd, const char *path, enum uio_seg pathseg,
sys/kern/vfs_syscalls.c
1540
sys_mkfifo(struct thread *td, struct mkfifo_args *uap)
sys/kern/vfs_syscalls.c
1555
sys_mkfifoat(struct thread *td, struct mkfifoat_args *uap)
sys/kern/vfs_syscalls.c
1563
kern_mkfifoat(struct thread *td, int fd, const char *path,
sys/kern/vfs_syscalls.c
1631
sys_link(struct thread *td, struct link_args *uap)
sys/kern/vfs_syscalls.c
1648
sys_linkat(struct thread *td, struct linkat_args *uap)
sys/kern/vfs_syscalls.c
1695
kern_linkat(struct thread *td, int fd1, int fd2, const char *path1,
sys/kern/vfs_syscalls.c
171
sys_sync(struct thread *td, struct sync_args *uap)
sys/kern/vfs_syscalls.c
1727
kern_linkat_vp(struct thread *td, struct vnode *vp, int fd, const char *path,
sys/kern/vfs_syscalls.c
1816
sys_symlink(struct thread *td, struct symlink_args *uap)
sys/kern/vfs_syscalls.c
1831
sys_symlinkat(struct thread *td, struct symlinkat_args *uap)
sys/kern/vfs_syscalls.c
1839
kern_symlinkat(struct thread *td, const char *path1, int fd, const char *path2,
sys/kern/vfs_syscalls.c
189
sys_quotactl(struct thread *td, struct quotactl_args *uap)
sys/kern/vfs_syscalls.c
1918
sys_undelete(struct thread *td, struct undelete_args *uap)
sys/kern/vfs_syscalls.c
1968
sys_unlink(struct thread *td, struct unlink_args *uap)
sys/kern/vfs_syscalls.c
1976
kern_funlinkat_ex(struct thread *td, int dfd, const char *path, int fd,
sys/kern/vfs_syscalls.c
1998
sys_unlinkat(struct thread *td, struct unlinkat_args *uap)
sys/kern/vfs_syscalls.c
2014
sys_funlinkat(struct thread *td, struct funlinkat_args *uap)
sys/kern/vfs_syscalls.c
2022
kern_funlinkat(struct thread *td, int dfd, const char *path, int fd,
sys/kern/vfs_syscalls.c
2123
sys_lseek(struct thread *td, struct lseek_args *uap)
sys/kern/vfs_syscalls.c
2130
kern_lseek(struct thread *td, int fd, off_t offset, int whence)
sys/kern/vfs_syscalls.c
2157
olseek(struct thread *td, struct olseek_args *uap)
sys/kern/vfs_syscalls.c
2167
freebsd6_lseek(struct thread *td, struct freebsd6_lseek_args *uap)
sys/kern/vfs_syscalls.c
2179
struct thread *td)
sys/kern/vfs_syscalls.c
2215
sys_access(struct thread *td, struct access_args *uap)
sys/kern/vfs_syscalls.c
2231
sys_faccessat(struct thread *td, struct faccessat_args *uap)
sys/kern/vfs_syscalls.c
2239
kern_accessat(struct thread *td, int fd, const char *path,
sys/kern/vfs_syscalls.c
2296
sys_eaccess(struct thread *td, struct eaccess_args *uap)
sys/kern/vfs_syscalls.c
2314
ostat(struct thread *td, struct ostat_args *uap)
sys/kern/vfs_syscalls.c
2337
olstat(struct thread *td, struct olstat_args *uap)
sys/kern/vfs_syscalls.c
2456
freebsd11_stat(struct thread *td, struct freebsd11_stat_args* uap)
sys/kern/vfs_syscalls.c
2472
freebsd11_lstat(struct thread *td, struct freebsd11_lstat_args* uap)
sys/kern/vfs_syscalls.c
2489
freebsd11_fhstat(struct thread *td, struct freebsd11_fhstat_args* uap)
sys/kern/vfs_syscalls.c
2509
freebsd11_fstatat(struct thread *td, struct freebsd11_fstatat_args* uap)
sys/kern/vfs_syscalls.c
2538
sys_fstatat(struct thread *td, struct fstatat_args *uap)
sys/kern/vfs_syscalls.c
2551
kern_statat(struct thread *td, int flag, int fd, const char *path,
sys/kern/vfs_syscalls.c
2628
freebsd11_nstat(struct thread *td, struct freebsd11_nstat_args *uap)
sys/kern/vfs_syscalls.c
2653
freebsd11_nlstat(struct thread *td, struct freebsd11_nlstat_args *uap)
sys/kern/vfs_syscalls.c
2680
sys_pathconf(struct thread *td, struct pathconf_args *uap)
sys/kern/vfs_syscalls.c
2699
sys_lpathconf(struct thread *td, struct lpathconf_args *uap)
sys/kern/vfs_syscalls.c
2712
kern_pathconf(struct thread *td, const char *path, enum uio_seg pathseg,
sys/kern/vfs_syscalls.c
2740
sys_readlink(struct thread *td, struct readlink_args *uap)
sys/kern/vfs_syscalls.c
275
kern_do_statfs(struct thread *td, struct mount *mp, struct statfs *buf)
sys/kern/vfs_syscalls.c
2755
sys_readlinkat(struct thread *td, struct readlinkat_args *uap)
sys/kern/vfs_syscalls.c
2763
kern_readlinkat(struct thread *td, int fd, const char *path,
sys/kern/vfs_syscalls.c
2792
struct thread *td)
sys/kern/vfs_syscalls.c
2825
setfflags(struct thread *td, struct vnode *vp, u_long flags)
sys/kern/vfs_syscalls.c
2872
sys_chflags(struct thread *td, struct chflags_args *uap)
sys/kern/vfs_syscalls.c
2888
sys_chflagsat(struct thread *td, struct chflagsat_args *uap)
sys/kern/vfs_syscalls.c
2905
sys_lchflags(struct thread *td, struct lchflags_args *uap)
sys/kern/vfs_syscalls.c
2913
kern_chflagsat(struct thread *td, int fd, const char *path,
sys/kern/vfs_syscalls.c
2945
sys_fchflags(struct thread *td, struct fchflags_args *uap)
sys/kern/vfs_syscalls.c
2972
setfmode(struct thread *td, struct ucred *cred, struct vnode *vp, int mode)
sys/kern/vfs_syscalls.c
3003
sys_chmod(struct thread *td, struct chmod_args *uap)
sys/kern/vfs_syscalls.c
3019
sys_fchmodat(struct thread *td, struct fchmodat_args *uap)
sys/kern/vfs_syscalls.c
3036
sys_lchmod(struct thread *td, struct lchmod_args *uap)
sys/kern/vfs_syscalls.c
3044
kern_fchmodat(struct thread *td, int fd, const char *path,
sys/kern/vfs_syscalls.c
3076
sys_fchmod(struct thread *td, struct fchmod_args *uap)
sys/kern/vfs_syscalls.c
3096
setfown(struct thread *td, struct ucred *cred, struct vnode *vp, uid_t uid,
sys/kern/vfs_syscalls.c
310
sys_statfs(struct thread *td, struct statfs_args *uap)
sys/kern/vfs_syscalls.c
3131
sys_chown(struct thread *td, struct chown_args *uap)
sys/kern/vfs_syscalls.c
3148
sys_fchownat(struct thread *td, struct fchownat_args *uap)
sys/kern/vfs_syscalls.c
3156
kern_fchownat(struct thread *td, int fd, const char *path,
sys/kern/vfs_syscalls.c
3190
sys_lchown(struct thread *td, struct lchown_args *uap)
sys/kern/vfs_syscalls.c
3208
sys_fchown(struct thread *td, struct fchown_args *uap)
sys/kern/vfs_syscalls.c
324
kern_statfs(struct thread *td, const char *path, enum uio_seg pathseg,
sys/kern/vfs_syscalls.c
3305
setutimes(struct thread *td, struct vnode *vp, const struct timespec *ts,
sys/kern/vfs_syscalls.c
3353
sys_utimes(struct thread *td, struct utimes_args *uap)
sys/kern/vfs_syscalls.c
3368
sys_futimesat(struct thread *td, struct futimesat_args *uap)
sys/kern/vfs_syscalls.c
3376
kern_utimesat(struct thread *td, int fd, const char *path,
sys/kern/vfs_syscalls.c
3406
sys_lutimes(struct thread *td, struct lutimes_args *uap)
sys/kern/vfs_syscalls.c
3414
kern_lutimes(struct thread *td, const char *path, enum uio_seg pathseg,
sys/kern/vfs_syscalls.c
3442
sys_futimes(struct thread *td, struct futimes_args *uap)
sys/kern/vfs_syscalls.c
3449
kern_futimes(struct thread *td, int fd, const struct timeval *tptr,
sys/kern/vfs_syscalls.c
3476
sys_futimens(struct thread *td, struct futimens_args *uap)
sys/kern/vfs_syscalls.c
3483
kern_futimens(struct thread *td, int fd, const struct timespec *tptr,
sys/kern/vfs_syscalls.c
351
sys_fstatfs(struct thread *td, struct fstatfs_args *uap)
sys/kern/vfs_syscalls.c
3512
sys_utimensat(struct thread *td, struct utimensat_args *uap)
sys/kern/vfs_syscalls.c
3520
kern_utimensat(struct thread *td, int fd, const char *path,
sys/kern/vfs_syscalls.c
3563
sys_truncate(struct thread *td, struct truncate_args *uap)
sys/kern/vfs_syscalls.c
3570
kern_truncate(struct thread *td, const char *path, enum uio_seg pathseg,
sys/kern/vfs_syscalls.c
3630
otruncate(struct thread *td, struct otruncate_args *uap)
sys/kern/vfs_syscalls.c
3640
freebsd6_truncate(struct thread *td, struct freebsd6_truncate_args *uap)
sys/kern/vfs_syscalls.c
3647
freebsd6_ftruncate(struct thread *td, struct freebsd6_ftruncate_args *uap)
sys/kern/vfs_syscalls.c
365
kern_fstatfs(struct thread *td, int fd, struct statfs *buf)
sys/kern/vfs_syscalls.c
3655
kern_fsync(struct thread *td, int fd, bool fullsync)
sys/kern/vfs_syscalls.c
3697
sys_fsync(struct thread *td, struct fsync_args *uap)
sys/kern/vfs_syscalls.c
3704
sys_fdatasync(struct thread *td, struct fdatasync_args *uap)
sys/kern/vfs_syscalls.c
3721
sys_rename(struct thread *td, struct rename_args *uap)
sys/kern/vfs_syscalls.c
3737
sys_renameat(struct thread *td, struct renameat_args *uap)
sys/kern/vfs_syscalls.c
3745
sys_renameat2(struct thread *td, struct renameat2_args *uap)
sys/kern/vfs_syscalls.c
3754
kern_renameat_mac(struct thread *td, int oldfd, const char *old, int newfd,
sys/kern/vfs_syscalls.c
3779
kern_renameat(struct thread *td, int oldfd, const char *old, int newfd,
sys/kern/vfs_syscalls.c
400
sys_getfsstat(struct thread *td, struct getfsstat_args *uap)
sys/kern/vfs_syscalls.c
4020
sys_mkdir(struct thread *td, struct mkdir_args *uap)
sys/kern/vfs_syscalls.c
4035
sys_mkdirat(struct thread *td, struct mkdirat_args *uap)
sys/kern/vfs_syscalls.c
4042
kern_mkdirat(struct thread *td, int fd, const char *path, enum uio_seg segflg,
sys/kern/vfs_syscalls.c
4098
sys_rmdir(struct thread *td, struct rmdir_args *uap)
sys/kern/vfs_syscalls.c
4106
kern_frmdirat(struct thread *td, int dfd, const char *path, int fd,
sys/kern/vfs_syscalls.c
4196
freebsd11_kern_getdirentries(struct thread *td, int fd, char *ubuf, u_int count,
sys/kern/vfs_syscalls.c
420
kern_getfsstat(struct thread *td, struct statfs **buf, size_t bufsize,
sys/kern/vfs_syscalls.c
4300
ogetdirentries(struct thread *td, struct ogetdirentries_args *uap)
sys/kern/vfs_syscalls.c
4312
kern_ogetdirentries(struct thread *td, struct ogetdirentries_args *uap,
sys/kern/vfs_syscalls.c
4342
freebsd11_getdirentries(struct thread *td,
sys/kern/vfs_syscalls.c
4357
freebsd11_getdents(struct thread *td, struct freebsd11_getdents_args *uap)
sys/kern/vfs_syscalls.c
4373
sys_getdirentries(struct thread *td, struct getdirentries_args *uap)
sys/kern/vfs_syscalls.c
4388
kern_getdirentries(struct thread *td, int fd, char *buf, size_t count,
sys/kern/vfs_syscalls.c
4483
sys_umask(struct thread *td, struct umask_args *uap)
sys/kern/vfs_syscalls.c
4505
sys_revoke(struct thread *td, struct revoke_args *uap)
sys/kern/vfs_syscalls.c
4548
getvnode_path(struct thread *td, int fd, const cap_rights_t *rightsp,
sys/kern/vfs_syscalls.c
4586
getvnode(struct thread *td, int fd, const cap_rights_t *rightsp,
sys/kern/vfs_syscalls.c
4618
sys_lgetfh(struct thread *td, struct lgetfh_args *uap)
sys/kern/vfs_syscalls.c
4632
sys_getfh(struct thread *td, struct getfh_args *uap)
sys/kern/vfs_syscalls.c
4655
sys_getfhat(struct thread *td, struct getfhat_args *uap)
sys/kern/vfs_syscalls.c
4663
kern_getfhat(struct thread *td, int flags, int fd, const char *path,
sys/kern/vfs_syscalls.c
4704
sys_fhlink(struct thread *td, struct fhlink_args *uap)
sys/kern/vfs_syscalls.c
4718
sys_fhlinkat(struct thread *td, struct fhlinkat_args *uap)
sys/kern/vfs_syscalls.c
4725
kern_fhlinkat(struct thread *td, int fd, const char *path,
sys/kern/vfs_syscalls.c
4761
sys_fhreadlink(struct thread *td, struct fhreadlink_args *uap)
sys/kern/vfs_syscalls.c
4801
sys_fhopen(struct thread *td, struct fhopen_args *uap)
sys/kern/vfs_syscalls.c
4807
kern_fhopen(struct thread *td, const struct fhandle *u_fhp, int flags)
sys/kern/vfs_syscalls.c
4901
sys_fhstat(struct thread *td, struct fhstat_args *uap)
sys/kern/vfs_syscalls.c
4917
kern_fhstat(struct thread *td, struct fhandle fh, struct stat *sb)
sys/kern/vfs_syscalls.c
4947
sys_fhstatfs(struct thread *td, struct fhstatfs_args *uap)
sys/kern/vfs_syscalls.c
4965
kern_fhstatfs(struct thread *td, fhandle_t fh, struct statfs *buf)
sys/kern/vfs_syscalls.c
5003
kern_posix_fadvise(struct thread *td, int fd, off_t offset, off_t len,
sys/kern/vfs_syscalls.c
5125
sys_posix_fadvise(struct thread *td, struct posix_fadvise_args *uap)
sys/kern/vfs_syscalls.c
5135
kern_copy_file_range(struct thread *td, int infd, off_t *inoffp, int outfd,
sys/kern/vfs_syscalls.c
5304
sys_copy_file_range(struct thread *td, struct copy_file_range_args *uap)
sys/kern/vfs_syscalls.c
592
freebsd4_statfs(struct thread *td, struct freebsd4_statfs_args *uap)
sys/kern/vfs_syscalls.c
618
freebsd4_fstatfs(struct thread *td, struct freebsd4_fstatfs_args *uap)
sys/kern/vfs_syscalls.c
645
freebsd4_getfsstat(struct thread *td, struct freebsd4_getfsstat_args *uap)
sys/kern/vfs_syscalls.c
686
freebsd4_fhstatfs(struct thread *td, struct freebsd4_fhstatfs_args *uap)
sys/kern/vfs_syscalls.c
746
freebsd11_statfs(struct thread *td, struct freebsd11_statfs_args *uap)
sys/kern/vfs_syscalls.c
766
freebsd11_fstatfs(struct thread *td, struct freebsd11_fstatfs_args *uap)
sys/kern/vfs_syscalls.c
786
freebsd11_getfsstat(struct thread *td, struct freebsd11_getfsstat_args *uap)
sys/kern/vfs_syscalls.c
792
kern_freebsd11_getfsstat(struct thread *td, struct freebsd11_statfs * ubuf,
sys/kern/vfs_syscalls.c
826
freebsd11_fhstatfs(struct thread *td, struct freebsd11_fhstatfs_args *uap)
sys/kern/vfs_syscalls.c
889
sys_fchdir(struct thread *td, struct fchdir_args *uap)
sys/kern/vfs_syscalls.c
92
static int kern_chflagsat(struct thread *td, int fd, const char *path,
sys/kern/vfs_syscalls.c
94
static int setfflags(struct thread *td, struct vnode *, u_long);
sys/kern/vfs_syscalls.c
940
sys_chdir(struct thread *td, struct chdir_args *uap)
sys/kern/vfs_syscalls.c
947
kern_chdir(struct thread *td, const char *path, enum uio_seg pathseg)
sys/kern/vfs_syscalls.c
976
kern_chroot(struct thread *td, struct vnode *vp)
sys/kern/vfs_syscalls.c
98
static int setutimes(struct thread *td, struct vnode *,
sys/kern/vfs_vnops.c
1211
struct thread *td)
sys/kern/vfs_vnops.c
1282
struct thread *td)
sys/kern/vfs_vnops.c
1389
struct thread *td)
sys/kern/vfs_vnops.c
1482
struct thread *td)
sys/kern/vfs_vnops.c
1593
int flags, struct thread *td)
sys/kern/vfs_vnops.c
1671
struct thread *td;
sys/kern/vfs_vnops.c
1726
struct thread *td;
sys/kern/vfs_vnops.c
1765
struct thread *td)
sys/kern/vfs_vnops.c
185
struct vn_io_fault_args *args, struct thread *td);
sys/kern/vfs_vnops.c
1851
struct thread *td)
sys/kern/vfs_vnops.c
190
struct thread *td = curthread;
sys/kern/vfs_vnops.c
1901
struct thread *td)
sys/kern/vfs_vnops.c
2050
vn_closefile(struct file *fp, struct thread *td)
sys/kern/vfs_vnops.c
2440
const char *attrname, int *buflen, char *buf, struct thread *td)
sys/kern/vfs_vnops.c
2481
const char *attrname, int buflen, char *buf, struct thread *td)
sys/kern/vfs_vnops.c
2520
const char *attrname, struct thread *td)
sys/kern/vfs_vnops.c
2615
vn_rlimit_trunc(u_quad_t size, struct thread *td)
sys/kern/vfs_vnops.c
2625
bool adj, struct thread *td)
sys/kern/vfs_vnops.c
2696
ssize_t *resid_adj, struct thread *td)
sys/kern/vfs_vnops.c
2718
struct thread *td)
sys/kern/vfs_vnops.c
2726
struct thread *td)
sys/kern/vfs_vnops.c
2741
struct thread *td)
sys/kern/vfs_vnops.c
2861
vn_seek(struct file *fp, off_t offset, int whence, struct thread *td)
sys/kern/vfs_vnops.c
2941
struct thread *td)
sys/kern/vfs_vnops.c
3050
struct thread *td)
sys/kern/vfs_vnops.c
3296
struct ucred *outcred, struct thread *fsize_td)
sys/kern/vfs_vnops.c
3565
struct ucred *incred, struct ucred *outcred, struct thread *fsize_td)
sys/kern/vfs_vnops.c
3892
vn_fallocate(struct file *fp, off_t offset, off_t len, struct thread *td)
sys/kern/vfs_vnops.c
4042
struct ucred *active_cred, struct thread *td)
sys/kern/vfs_vnops.c
4113
vn_dir_next_dirent(struct vnode *vp, struct thread *td,
sys/kern/vfs_vnops.c
4241
struct thread *const td = curthread;
sys/kern/vfs_vnops.c
436
struct thread *td, struct file *fp)
sys/kern/vfs_vnops.c
4515
vn_cmp(struct file *fp1, struct file *fp2, struct thread *td)
sys/kern/vfs_vnops.c
572
struct thread *td, bool keep_ref)
sys/kern/vfs_vnops.c
599
struct thread *td)
sys/kern/vfs_vnops.c
661
struct ucred *file_cred, ssize_t *aresid, struct thread *td)
sys/kern/vfs_vnops.c
765
struct ucred *file_cred, size_t *aresid, struct thread *td)
sys/net/bpf.c
1138
struct thread *td)
sys/net/bpf.c
2004
bpfpoll(struct cdev *dev, int events, struct thread *td)
sys/net/bpf.c
573
bpf_ioctl_getzmax(struct thread *td, struct bpf_d *d, size_t *i)
sys/net/bpf.c
582
bpf_ioctl_rotzbuf(struct thread *td, struct bpf_d *d, struct bpf_zbuf *bz)
sys/net/bpf.c
591
bpf_ioctl_setzbuf(struct thread *td, struct bpf_d *d, struct bpf_zbuf *bz)
sys/net/bpf.c
735
bpfopen(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/net/bpf_zerocopy.c
177
zbuf_setup(struct thread *td, vm_offset_t uaddr, size_t len,
sys/net/bpf_zerocopy.c
488
bpf_zerocopy_ioctl_getzmax(struct thread *td, struct bpf_d *d, size_t *i)
sys/net/bpf_zerocopy.c
504
bpf_zerocopy_ioctl_rotzbuf(struct thread *td, struct bpf_d *d,
sys/net/bpf_zerocopy.c
525
bpf_zerocopy_ioctl_setzbuf(struct thread *td, struct bpf_d *d,
sys/net/bpf_zerocopy.h
49
int bpf_zerocopy_ioctl_getzmax(struct thread *td, struct bpf_d *d,
sys/net/bpf_zerocopy.h
51
int bpf_zerocopy_ioctl_rotzbuf(struct thread *td, struct bpf_d *d,
sys/net/bpf_zerocopy.h
53
int bpf_zerocopy_ioctl_setzbuf(struct thread *td, struct bpf_d *d,
sys/net/if.c
1204
if_vmove_loan(struct thread *td, char *ifname, int jid)
sys/net/if.c
1269
if_vmove_reclaim(struct thread *td, char *ifname, int jid)
sys/net/if.c
2343
ifhwioctl(u_long cmd, struct ifnet *ifp, caddr_t data, struct thread *td)
sys/net/if.c
2801
ifioctl(struct socket *so, u_long cmd, caddr_t data, struct thread *td)
sys/net/if_bridge.c
984
struct thread *td = curthread;
sys/net/if_geneve.c
889
struct thread *td;
sys/net/if_lagg.c
1358
struct thread *td = curthread;
sys/net/if_ovpn.c
636
struct thread *td = curthread;
sys/net/if_tuntap.c
1123
tunopen(struct cdev *dev, int flag, int mode, struct thread *td)
sys/net/if_tuntap.c
1599
struct thread *td)
sys/net/if_tuntap.c
2099
tunpoll(struct cdev *dev, int events, struct thread *td)
sys/net/if_var.h
557
int ifioctl(struct socket *, u_long, caddr_t, struct thread *);
sys/net/if_var.h
765
int ifhwioctl(u_long, if_t, caddr_t, struct thread *);
sys/net/if_vxlan.c
1033
struct thread *td;
sys/net/if_vxlan.c
989
struct thread *td;
sys/net/pfil.c
560
struct thread *td)
sys/net/pfil.c
57
static int pfil_ioctl(struct cdev *, u_long, caddr_t, int, struct thread *);
sys/net/route/route_tables.c
152
sys_setfib(struct thread *td, struct setfib_args *uap)
sys/net/route/route_tables.c
170
struct thread *td = data;
sys/net/rtsock.c
1064
struct sockaddr *nam, struct mbuf *control, struct thread *td)
sys/net/rtsock.c
399
rts_attach(struct socket *so, int proto, struct thread *td)
sys/netgraph/bluetooth/include/ng_btsocket_hci_raw.h
71
int ng_btsocket_hci_raw_attach (struct socket *, int, struct thread *);
sys/netgraph/bluetooth/include/ng_btsocket_hci_raw.h
73
struct thread *);
sys/netgraph/bluetooth/include/ng_btsocket_hci_raw.h
75
struct thread *);
sys/netgraph/bluetooth/include/ng_btsocket_hci_raw.h
77
struct ifnet *, struct thread *);
sys/netgraph/bluetooth/include/ng_btsocket_hci_raw.h
83
struct thread *);
sys/netgraph/bluetooth/include/ng_btsocket_l2cap.h
101
struct thread *);
sys/netgraph/bluetooth/include/ng_btsocket_l2cap.h
103
struct thread *);
sys/netgraph/bluetooth/include/ng_btsocket_l2cap.h
105
struct ifnet *, struct thread *);
sys/netgraph/bluetooth/include/ng_btsocket_l2cap.h
111
struct thread *);
sys/netgraph/bluetooth/include/ng_btsocket_l2cap.h
194
int ng_btsocket_l2cap_attach (struct socket *, int, struct thread *);
sys/netgraph/bluetooth/include/ng_btsocket_l2cap.h
196
struct thread *);
sys/netgraph/bluetooth/include/ng_btsocket_l2cap.h
198
struct thread *);
sys/netgraph/bluetooth/include/ng_btsocket_l2cap.h
200
struct ifnet *, struct thread *);
sys/netgraph/bluetooth/include/ng_btsocket_l2cap.h
204
int ng_btsocket_l2cap_listen (struct socket *, int, struct thread *);
sys/netgraph/bluetooth/include/ng_btsocket_l2cap.h
208
struct thread *);
sys/netgraph/bluetooth/include/ng_btsocket_l2cap.h
99
int ng_btsocket_l2cap_raw_attach (struct socket *, int, struct thread *);
sys/netgraph/bluetooth/include/ng_btsocket_rfcomm.h
320
int ng_btsocket_rfcomm_attach (struct socket *, int, struct thread *);
sys/netgraph/bluetooth/include/ng_btsocket_rfcomm.h
322
struct thread *);
sys/netgraph/bluetooth/include/ng_btsocket_rfcomm.h
324
struct thread *);
sys/netgraph/bluetooth/include/ng_btsocket_rfcomm.h
326
struct ifnet *, struct thread *);
sys/netgraph/bluetooth/include/ng_btsocket_rfcomm.h
330
int ng_btsocket_rfcomm_listen (struct socket *, int, struct thread *);
sys/netgraph/bluetooth/include/ng_btsocket_rfcomm.h
334
struct thread *);
sys/netgraph/bluetooth/include/ng_btsocket_sco.h
110
int ng_btsocket_sco_attach (struct socket *, int, struct thread *);
sys/netgraph/bluetooth/include/ng_btsocket_sco.h
112
struct thread *);
sys/netgraph/bluetooth/include/ng_btsocket_sco.h
114
struct thread *);
sys/netgraph/bluetooth/include/ng_btsocket_sco.h
116
struct ifnet *, struct thread *);
sys/netgraph/bluetooth/include/ng_btsocket_sco.h
120
int ng_btsocket_sco_listen (struct socket *, int, struct thread *);
sys/netgraph/bluetooth/include/ng_btsocket_sco.h
124
struct thread *);
sys/netgraph/bluetooth/socket/ng_btsocket_hci_raw.c
1033
struct ifnet *ifp, struct thread *td)
sys/netgraph/bluetooth/socket/ng_btsocket_hci_raw.c
1564
struct sockaddr *sa, struct mbuf *control, struct thread *td)
sys/netgraph/bluetooth/socket/ng_btsocket_hci_raw.c
908
ng_btsocket_hci_raw_attach(struct socket *so, int proto, struct thread *td)
sys/netgraph/bluetooth/socket/ng_btsocket_hci_raw.c
962
struct thread *td)
sys/netgraph/bluetooth/socket/ng_btsocket_hci_raw.c
994
struct thread *td)
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c
1975
ng_btsocket_l2cap_attach(struct socket *so, int proto, struct thread *td)
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c
2087
struct thread *td)
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c
2145
struct thread *td)
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c
2269
struct ifnet *ifp, struct thread *td)
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c
2482
ng_btsocket_l2cap_listen(struct socket *so, int backlog, struct thread *td)
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c
2555
struct sockaddr *nam, struct mbuf *control, struct thread *td)
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap_raw.c
1236
struct sockaddr *nam, struct mbuf *control, struct thread *td)
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap_raw.c
606
ng_btsocket_l2cap_raw_attach(struct socket *so, int proto, struct thread *td)
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap_raw.c
654
struct thread *td)
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap_raw.c
707
struct thread *td)
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap_raw.c
787
struct ifnet *ifp, struct thread *td)
sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c
116
const bdaddr_t *src, const bdaddr_t *dst, struct thread *td);
sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c
1254
struct thread *td)
sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c
378
ng_btsocket_rfcomm_attach(struct socket *so, int proto, struct thread *td)
sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c
442
struct thread *td)
sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c
493
struct thread *td)
sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c
629
struct ifnet *ifp, struct thread *td)
sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c
812
ng_btsocket_rfcomm_listen(struct socket *so, int backlog, struct thread *td)
sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c
946
struct sockaddr *nam, struct mbuf *control, struct thread *td)
sys/netgraph/bluetooth/socket/ng_btsocket_sco.c
1184
ng_btsocket_sco_attach(struct socket *so, int proto, struct thread *td)
sys/netgraph/bluetooth/socket/ng_btsocket_sco.c
1273
struct thread *td)
sys/netgraph/bluetooth/socket/ng_btsocket_sco.c
1332
struct thread *td)
sys/netgraph/bluetooth/socket/ng_btsocket_sco.c
1434
struct ifnet *ifp, struct thread *td)
sys/netgraph/bluetooth/socket/ng_btsocket_sco.c
1582
ng_btsocket_sco_listen(struct socket *so, int backlog, struct thread *td)
sys/netgraph/bluetooth/socket/ng_btsocket_sco.c
1644
struct sockaddr *nam, struct mbuf *control, struct thread *td)
sys/netgraph/ng_base.c
3203
struct thread *td;
sys/netgraph/ng_device.c
416
ngdopen(struct cdev *dev, int flag, int mode, struct thread *td)
sys/netgraph/ng_device.c
433
ngdclose(struct cdev *dev, int flag, int mode, struct thread *td)
sys/netgraph/ng_device.c
454
struct thread *td)
sys/netgraph/ng_device.c
487
struct thread *td)
sys/netgraph/ng_device.c
604
ngdpoll(struct cdev *dev, int events, struct thread *td)
sys/netgraph/ng_ksocket.c
627
struct thread *td = curthread; /* XXX broken */
sys/netgraph/ng_ksocket.c
747
struct thread *td = curthread; /* XXX broken */
sys/netgraph/ng_ksocket.c
971
struct thread *td = curthread; /* XXX broken */
sys/netgraph/ng_socket.c
121
static int ng_attach_common(struct socket *, int, struct thread *);
sys/netgraph/ng_socket.c
188
struct mbuf *control, struct thread *td)
sys/netgraph/ng_socket.c
344
struct mbuf *control, struct thread *td)
sys/netgraph/ng_socket.c
467
ngc_attach(struct socket *so, int type, struct thread *td)
sys/netgraph/ng_socket.c
519
ng_attach_common(struct socket *so, int type, struct thread *td)
sys/netgraph/ng_socket.c
613
ngd_connect(struct socket *so, struct sockaddr *nam, struct thread *td)
sys/netgraph/ng_socket.c
673
ngc_bind(struct socket *so, struct sockaddr *nam, struct thread *td)
sys/netinet/in.c
490
struct thread *td)
sys/netinet/in_prot.c
73
cr_canexport_ktlskeys(struct thread *td, struct inpcb *inp)
sys/netinet/in_systm.h
61
struct thread;
sys/netinet/in_systm.h
64
bool cr_canexport_ktlskeys(struct thread *td, struct inpcb *inp);
sys/netinet/in_var.h
445
struct thread *);
sys/netinet/ip_divert.c
344
struct mbuf *control, struct thread *td)
sys/netinet/ip_divert.c
603
div_attach(struct socket *so, int proto, struct thread *td)
sys/netinet/ip_divert.c
701
div_bind(struct socket *so, struct sockaddr *nam, struct thread *td)
sys/netinet/netdump/netdump_client.c
442
netdump_configure(struct diocskerneldump_arg *conf, struct thread *td)
sys/netinet/netdump/netdump_client.c
500
int flags __unused, struct thread *td)
sys/netinet/netdump/netdump_client.c
89
struct thread *);
sys/netinet/netdump/netdump_client.c
95
caddr_t addr, int flags __unused, struct thread *td);
sys/netinet/raw_ip.c
360
struct mbuf *control, struct thread *td)
sys/netinet/raw_ip.c
757
rip_attach(struct socket *so, int proto, struct thread *td)
sys/netinet/raw_ip.c
859
rip_bind(struct socket *so, struct sockaddr *nam, struct thread *td)
sys/netinet/raw_ip.c
894
rip_connect(struct socket *so, struct sockaddr *nam, struct thread *td)
sys/netinet/sctp_input.c
2032
(struct thread *)NULL,
sys/netinet/sctp_output.c
10306
struct thread *p,
sys/netinet/sctp_output.c
12518
struct thread *p)
sys/netinet/sctp_output.c
12568
struct thread *p)
sys/netinet/sctp_output.h
135
struct mbuf *, struct thread *, int);
sys/netinet/sctp_output.h
195
struct thread *p
sys/netinet/sctp_pcb.c
2711
struct sctp_ifa *sctp_ifap, struct thread *td)
sys/netinet/sctp_pcb.c
3112
struct sctp_ifa *sctp_ifap, struct thread *td)
sys/netinet/sctp_pcb.c
4059
struct thread *p,
sys/netinet/sctp_pcb.c
4280
struct thread *p,
sys/netinet/sctp_pcb.c
4298
struct thread *p,
sys/netinet/sctp_pcb.h
509
struct sctp_ifa *, struct thread *);
sys/netinet/sctp_pcb.h
512
struct sctp_ifa *, struct thread *);
sys/netinet/sctp_pcb.h
561
struct thread *, int);
sys/netinet/sctp_pcb.h
565
struct thread *, int);
sys/netinet/sctp_syscalls.c
146
sys_sctp_peeloff(struct thread *td, struct sctp_peeloff_args *uap)
sys/netinet/sctp_syscalls.c
228
sys_sctp_generic_sendmsg(struct thread *td, struct sctp_generic_sendmsg_args *uap)
sys/netinet/sctp_syscalls.c
328
sys_sctp_generic_sendmsg_iov(struct thread *td, struct sctp_generic_sendmsg_iov_args *uap)
sys/netinet/sctp_syscalls.c
445
sys_sctp_generic_recvmsg(struct thread *td, struct sctp_generic_recvmsg_args *uap)
sys/netinet/sctp_uio.h
1271
,struct thread *p
sys/netinet/sctp_usrreq.c
1424
(struct thread *)p,
sys/netinet/sctp_usrreq.c
455
sctp_attach(struct socket *so, int proto SCTP_UNUSED, struct thread *p SCTP_UNUSED)
sys/netinet/sctp_usrreq.c
488
sctp_bind(struct socket *so, struct sockaddr *addr, struct thread *p)
sys/netinet/sctp_usrreq.c
564
struct mbuf *control, struct thread *p);
sys/netinet/sctp_usrreq.c
568
struct mbuf *control, struct thread *p)
sys/netinet/sctp_usrreq.c
5945
struct thread *td;
sys/netinet/sctp_usrreq.c
5947
td = (struct thread *)p;
sys/netinet/sctp_usrreq.c
5989
struct thread *td;
sys/netinet/sctp_usrreq.c
5991
td = (struct thread *)p;
sys/netinet/sctp_usrreq.c
6939
sctp_connect(struct socket *so, struct sockaddr *addr, struct thread *p)
sys/netinet/sctp_usrreq.c
7090
sctp_listen(struct socket *so, int backlog, struct thread *p)
sys/netinet/sctp_var.h
343
int sctp_listen(struct socket *, int, struct thread *);
sys/netinet/siftr.c
274
static struct thread *siftr_pkt_manager_thr = NULL;
sys/netinet/tcp_usrreq.c
116
struct thread *td);
sys/netinet/tcp_usrreq.c
120
struct thread *td);
sys/netinet/tcp_usrreq.c
1411
tcp_connect(struct tcpcb *tp, struct sockaddr_in *sin, struct thread *td)
sys/netinet/tcp_usrreq.c
1458
tcp6_connect(struct tcpcb *tp, struct sockaddr_in6 *sin6, struct thread *td)
sys/netinet/tcp_usrreq.c
154
tcp_usr_attach(struct socket *so, int proto, struct thread *td)
sys/netinet/tcp_usrreq.c
221
tcp_usr_bind(struct socket *so, struct sockaddr *nam, struct thread *td)
sys/netinet/tcp_usrreq.c
272
tcp6_usr_bind(struct socket *so, struct sockaddr *nam, struct thread *td)
sys/netinet/tcp_usrreq.c
344
tcp_usr_listen(struct socket *so, int backlog, struct thread *td)
sys/netinet/tcp_usrreq.c
398
tcp6_usr_listen(struct socket *so, int backlog, struct thread *td)
sys/netinet/tcp_usrreq.c
466
tcp_usr_connect(struct socket *so, struct sockaddr *nam, struct thread *td)
sys/netinet/tcp_usrreq.c
531
tcp6_usr_connect(struct socket *so, struct sockaddr *nam, struct thread *td)
sys/netinet/tcp_usrreq.c
881
struct sockaddr *nam, struct mbuf *control, struct thread *td)
sys/netinet/udp_usrreq.c
1114
struct mbuf *control, struct thread *td)
sys/netinet/udp_usrreq.c
1540
udp_attach(struct socket *so, int proto, struct thread *td)
sys/netinet/udp_usrreq.c
1596
udp_bind(struct socket *so, struct sockaddr *nam, struct thread *td)
sys/netinet/udp_usrreq.c
1643
udp_connect(struct socket *so, struct sockaddr *nam, struct thread *td)
sys/netinet6/in6.c
605
struct ifnet *ifp, struct thread *td)
sys/netinet6/in6_var.h
891
struct thread *);
sys/netinet6/ip6_output.c
1480
struct thread *td;
sys/netinet6/ip6_output.c
2314
struct thread *td = sopt->sopt_td;
sys/netinet6/ip6_var.h
432
int, struct mbuf *, struct mbuf *, struct mbuf *, struct thread *);
sys/netinet6/raw_ip6.c
347
struct mbuf *control, struct thread *td)
sys/netinet6/raw_ip6.c
651
rip6_attach(struct socket *so, int proto, struct thread *td)
sys/netinet6/raw_ip6.c
740
rip6_bind(struct socket *so, struct sockaddr *nam, struct thread *td)
sys/netinet6/raw_ip6.c
785
rip6_connect(struct socket *so, struct sockaddr *nam, struct thread *td)
sys/netinet6/sctp6_usrreq.c
441
sctp6_attach(struct socket *so, int proto SCTP_UNUSED, struct thread *p SCTP_UNUSED)
sys/netinet6/sctp6_usrreq.c
481
sctp6_bind(struct socket *so, struct sockaddr *addr, struct thread *p)
sys/netinet6/sctp6_usrreq.c
594
struct mbuf *control, struct thread *p);
sys/netinet6/sctp6_usrreq.c
598
struct mbuf *control, struct thread *p)
sys/netinet6/sctp6_usrreq.c
748
sctp6_connect(struct socket *so, struct sockaddr *addr, struct thread *p)
sys/netinet6/send.c
222
struct mbuf *control, struct thread *td)
sys/netinet6/send.c
78
send_attach(struct socket *so, int proto, struct thread *td)
sys/netinet6/udp6_usrreq.c
1004
udp6_attach(struct socket *so, int proto, struct thread *td)
sys/netinet6/udp6_usrreq.c
1039
udp6_bind(struct socket *so, struct sockaddr *nam, struct thread *td)
sys/netinet6/udp6_usrreq.c
1114
udp6_connect(struct socket *so, struct sockaddr *nam, struct thread *td)
sys/netinet6/udp6_usrreq.c
675
struct sockaddr *addr6, struct mbuf *control, struct thread *td)
sys/netipsec/keysock.c
259
key_attach(struct socket *so, int proto, struct thread *td)
sys/netipsec/keysock.c
90
struct sockaddr *nam, struct mbuf *control, struct thread *td)
sys/netlink/netlink_ctl.h
109
struct thread;
sys/netlink/netlink_ctl.h
112
struct nlpcb *_nl_get_thread_nlp(struct thread *td);
sys/netlink/netlink_ctl.h
115
nl_get_thread_nlp(struct thread *td)
sys/netlink/netlink_ctl.h
122
struct nlpcb *nl_get_thread_nlp(struct thread *td);
sys/netlink/netlink_domain.c
108
_nl_get_thread_nlp(struct thread *td)
sys/netlink/netlink_domain.c
114
nl_set_thread_nlp(struct thread *td, struct nlpcb *nlp)
sys/netlink/netlink_domain.c
316
nl_attach(struct socket *so, int proto, struct thread *td)
sys/netlink/netlink_domain.c
370
nl_bind(struct socket *so, struct sockaddr *sa, struct thread *td)
sys/netlink/netlink_domain.c
444
nl_connect(struct socket *so, struct sockaddr *sa, struct thread *td)
sys/netlink/netlink_domain.c
556
struct mbuf *m, struct mbuf *control, int flags, struct thread *td)
sys/netlink/netlink_glue.c
182
nl_get_thread_nlp_stub(struct thread *td __unused)
sys/netlink/netlink_glue.c
286
nl_get_thread_nlp(struct thread *td)
sys/netlink/netlink_var.h
127
void nl_set_thread_nlp(struct thread *td, struct nlpcb *nlp);
sys/netlink/netlink_var.h
174
struct nlpcb * (*nl_get_thread_nlp)(struct thread *td);
sys/netlink/route/iface.c
676
struct thread *td = curthread;
sys/netpfil/ipfilter/netinet/ip_fil.h
1649
extern int ipfioctl(struct cdev*, u_long, caddr_t, int, struct thread *);
sys/netpfil/ipfilter/netinet/ip_fil_freebsd.c
245
int mode, struct thread *p)
sys/netpfil/ipfilter/netinet/mlfk_ipl.c
145
static int ipfpoll(struct cdev *dev, int events, struct thread *td);
sys/netpfil/ipfilter/netinet/mlfk_ipl.c
436
ipfpoll(struct cdev *dev, int events, struct thread *td)
sys/netpfil/ipfilter/netinet/mlfk_ipl.c
489
ipfopen(struct cdev *dev, int flags, int devtype, struct thread *p)
sys/netpfil/ipfilter/netinet/mlfk_ipl.c
524
ipfclose(struct cdev *dev, int flags, int devtype, struct thread *p)
sys/netpfil/ipfilter/netinet/mlfk_ipl.c
69
static int ipfopen(struct cdev*, int, int, struct thread *);
sys/netpfil/ipfilter/netinet/mlfk_ipl.c
70
static int ipfclose(struct cdev*, int, int, struct thread *);
sys/netpfil/pf/pf_ioctl.c
108
struct thread *);
sys/netpfil/pf/pf_ioctl.c
3838
pfioctl(struct cdev *dev, u_long cmd, caddr_t addr, int flags, struct thread *td)
sys/netpfil/pf/pflow.c
1569
struct thread *td;
sys/netsmb/smb_conn.h
195
struct thread *co_locker;
sys/netsmb/smb_conn.h
448
struct thread * iod_td;
sys/netsmb/smb_dev.c
126
nsmb_dev_open(struct cdev *dev, int oflags, int devtype, struct thread *td)
sys/netsmb/smb_dev.c
172
nsmb_dev_ioctl(struct cdev *dev, u_long cmd, caddr_t data, int flag, struct thread *td)
sys/netsmb/smb_dev.c
381
struct thread *td;
sys/netsmb/smb_iod.c
118
struct thread *td = iod->iod_td;
sys/netsmb/smb_iod.c
212
struct thread *td = iod->iod_td;
sys/netsmb/smb_iod.c
283
struct thread *td = iod->iod_td;
sys/netsmb/smb_iod.c
97
struct thread *td = iod->iod_td;
sys/netsmb/smb_subr.c
55
smb_makescred(struct smb_cred *scred, struct thread *td, struct ucred *cred)
sys/netsmb/smb_subr.c
67
smb_td_intr(struct thread *td)
sys/netsmb/smb_subr.h
100
int smb_td_intr(struct thread *);
sys/netsmb/smb_subr.h
89
struct thread * scr_td;
sys/netsmb/smb_subr.h
99
void smb_makescred(struct smb_cred *scred, struct thread *td, struct ucred *cred);
sys/netsmb/smb_tran.h
52
int (*tr_create)(struct smb_vc *vcp, struct thread *td);
sys/netsmb/smb_tran.h
53
int (*tr_done)(struct smb_vc *vcp, struct thread *td);
sys/netsmb/smb_tran.h
54
int (*tr_bind)(struct smb_vc *vcp, struct sockaddr *sap, struct thread *td);
sys/netsmb/smb_tran.h
55
int (*tr_connect)(struct smb_vc *vcp, struct sockaddr *sap, struct thread *td);
sys/netsmb/smb_tran.h
56
int (*tr_disconnect)(struct smb_vc *vcp, struct thread *td);
sys/netsmb/smb_tran.h
57
int (*tr_send)(struct smb_vc *vcp, struct mbuf *m0, struct thread *td);
sys/netsmb/smb_tran.h
58
int (*tr_recv)(struct smb_vc *vcp, struct mbuf **mpp, struct thread *td);
sys/netsmb/smb_tran.h
65
int (*tr_poll)(struct smb_vc *vcp, struct thread *td);
sys/netsmb/smb_trantcp.c
144
nb_connect_in(struct nbpcb *nbp, struct sockaddr_in *to, struct thread *td)
sys/netsmb/smb_trantcp.c
191
nbssn_rq_request(struct nbpcb *nbp, struct thread *td)
sys/netsmb/smb_trantcp.c
283
u_int8_t *rpcodep, int flags, struct thread *td)
sys/netsmb/smb_trantcp.c
323
u_int8_t *rpcodep, struct thread *td)
sys/netsmb/smb_trantcp.c
445
smb_nbst_create(struct smb_vc *vcp, struct thread *td)
sys/netsmb/smb_trantcp.c
461
smb_nbst_done(struct smb_vc *vcp, struct thread *td)
sys/netsmb/smb_trantcp.c
477
smb_nbst_bind(struct smb_vc *vcp, struct sockaddr *sap, struct thread *td)
sys/netsmb/smb_trantcp.c
510
smb_nbst_connect(struct smb_vc *vcp, struct sockaddr *sap, struct thread *td)
sys/netsmb/smb_trantcp.c
555
smb_nbst_disconnect(struct smb_vc *vcp, struct thread *td)
sys/netsmb/smb_trantcp.c
575
smb_nbst_send(struct smb_vc *vcp, struct mbuf *m0, struct thread *td)
sys/netsmb/smb_trantcp.c
595
smb_nbst_recv(struct smb_vc *vcp, struct mbuf **mpp, struct thread *td)
sys/netsmb/smb_trantcp.c
75
u_int8_t *rpcodep, struct thread *td);
sys/netsmb/smb_trantcp.c
76
static int smb_nbst_disconnect(struct smb_vc *vcp, struct thread *td);
sys/nfs/bootp_subr.c
1166
bootpc_compose_query(struct bootpc_ifcontext *ifctx, struct thread *td)
sys/nfs/bootp_subr.c
1525
struct thread *td;
sys/nfs/bootp_subr.c
1750
struct nfs_args *args, struct thread *td)
sys/nfs/bootp_subr.c
244
int *fhsizep, struct nfs_args *args, struct thread *td);
sys/nfs/bootp_subr.c
257
struct thread *td);
sys/nfs/bootp_subr.c
268
struct thread *td);
sys/nfs/bootp_subr.c
271
struct thread *td);
sys/nfs/bootp_subr.c
274
struct bootpc_globalcontext *gctx, struct thread *td);
sys/nfs/bootp_subr.c
483
bootpc_call(struct bootpc_globalcontext *gctx, struct thread *td)
sys/nfs/bootp_subr.c
848
bootpc_fakeup_interface(struct bootpc_ifcontext *ifctx, struct thread *td)
sys/nfs/bootp_subr.c
891
bootpc_shutdown_interface(struct bootpc_ifcontext *ifctx, struct thread *td)
sys/nfs/bootp_subr.c
917
struct bootpc_globalcontext *gctx, struct thread *td)
sys/nfs/krpc.h
12
struct mbuf **data, struct sockaddr **from, struct thread *td);
sys/nfs/krpc.h
15
u_int prog, u_int vers, u_int16_t *portp, struct thread *td);
sys/nfs/krpc.h
6
struct thread;
sys/nfs/krpc_subr.c
134
struct thread *td)
sys/nfs/krpc_subr.c
190
struct mbuf **data, struct sockaddr **from_p, struct thread *td)
sys/nfs/nfs_mountcommon.h
40
typedef int nfs_vinvalbuf_ftype(struct vnode *, int, struct thread *, int);
sys/nfs/nfs_nfssvc.c
68
int (*nfsd_call_nfsserver)(struct thread *, struct nfssvc_args *) = NULL;
sys/nfs/nfs_nfssvc.c
69
int (*nfsd_call_nfscommon)(struct thread *, struct nfssvc_args *) = NULL;
sys/nfs/nfs_nfssvc.c
70
int (*nfsd_call_nfscl)(struct thread *, struct nfssvc_args *) = NULL;
sys/nfs/nfs_nfssvc.c
71
int (*nfsd_call_nfsd)(struct thread *, struct nfssvc_args *) = NULL;
sys/nfs/nfs_nfssvc.c
77
sys_nfssvc(struct thread *td, struct nfssvc_args *uap)
sys/nfsclient/nfs.h
161
int (*nr_writebp)(struct buf *bp, int force, struct thread *td);
sys/nfsclient/nfs.h
166
struct ucred *cred, struct thread *td);
sys/nfsclient/nfs.h
244
int nfs_vinvalbuf(struct vnode *, int, struct thread *, int);
sys/nfsclient/nfs.h
249
struct ucred *cred, struct thread *td);
sys/nfsclient/nfs.h
253
int nfs_asyncio(struct nfsmount *, struct buf *, struct ucred *, struct thread *);
sys/nfsclient/nfs.h
254
int nfs_doio(struct vnode *, struct buf *, struct ucred *, struct thread *);
sys/nfsclient/nfs.h
257
int nfs_sigintr(struct nfsmount *, struct thread *);
sys/nfsclient/nfs.h
259
int nfs_request(struct vnode *, struct mbuf *, int, struct thread *,
sys/nfsclient/nfs.h
278
int nfs_writebp(struct buf *, int, struct thread *);
sys/nfsclient/nfs.h
280
struct thread *);
sys/nfsclient/nfs.h
282
struct thread *, u_quad_t);
sys/nfsclient/nfs.h
284
void nfs_set_sigmask(struct thread *td, sigset_t *oldset);
sys/nfsclient/nfs.h
285
void nfs_restore_sigmask(struct thread *td, sigset_t *set);
sys/nfsclient/nfs.h
286
int nfs_msleep(struct thread *td, void *ident, struct mtx *mtx,
sys/nfsserver/nfs.h
321
int nfssvc_nfsserver(struct thread *, struct nfssvc_args *);
sys/nlm/nlm_advlock.c
108
nlm_msg(struct thread *td, const char *server, const char *msg, int error)
sys/nlm/nlm_advlock.c
128
nlm_down(struct nlm_feedback_arg *nf, struct thread *td,
sys/nlm/nlm_advlock.c
150
nlm_up(struct nlm_feedback_arg *nf, struct thread *td,
sys/nlm/nlm_advlock.c
174
struct thread *td = curthread;
sys/nlm/nlm_advlock.c
197
struct thread *td = curthread;
sys/nlm/nlm_advlock.c
402
nlm_set_creds_for_lock(struct thread *td, struct flock *fl)
sys/nlm/nlm_advlock.c
454
struct thread *td = curthread;
sys/nlm/nlm_advlock.c
491
struct thread *td = curthread;
sys/nlm/nlm_prot_impl.c
1529
struct thread *td = curthread;
sys/nlm/nlm_prot_impl.c
1703
sys_nlm_syscall(struct thread *td, struct nlm_syscall_args *uap)
sys/nlm/nlm_prot_impl.c
801
struct thread *td;
sys/ofed/drivers/infiniband/core/ib_fmr_pool.c
102
struct task_struct *thread;
sys/ofed/drivers/infiniband/core/ib_fmr_pool.c
272
pool->thread = kthread_run(ib_fmr_cleanup_thread,
sys/ofed/drivers/infiniband/core/ib_fmr_pool.c
276
if (IS_ERR(pool->thread)) {
sys/ofed/drivers/infiniband/core/ib_fmr_pool.c
278
ret = PTR_ERR(pool->thread);
sys/ofed/drivers/infiniband/core/ib_fmr_pool.c
345
kthread_stop(pool->thread);
sys/ofed/drivers/infiniband/core/ib_fmr_pool.c
395
wake_up_process(pool->thread);
sys/ofed/drivers/infiniband/core/ib_fmr_pool.c
509
wake_up_process(pool->thread);
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
1044
struct mbuf *top, struct mbuf *control, int flags, struct thread *td)
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
411
sdp_attach(struct socket *so, int proto, struct thread *td)
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
471
sdp_bind(struct socket *so, struct sockaddr *nam, struct thread *td)
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
502
sdp_listen(struct socket *so, int backlog, struct thread *td)
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
535
sdp_start_connect(struct sdp_sock *ssk, struct sockaddr *nam, struct thread *td)
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
569
sdp_connect(struct socket *so, struct sockaddr *nam, struct thread *td)
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
907
struct sockaddr *nam, struct mbuf *control, struct thread *td)
sys/ofed/include/rdma/ib.h
111
struct thread *td = curthread;
sys/opencrypto/crypto.c
172
struct thread *td;
sys/opencrypto/crypto.c
216
static struct thread *cryptotd;
sys/opencrypto/crypto.c
373
crypto_terminate(struct thread **tdp, void *q)
sys/opencrypto/crypto.c
375
struct thread *td;
sys/opencrypto/cryptodev.c
1103
crypto_open(struct cdev *dev, int oflags, int devtype, struct thread *td)
sys/opencrypto/cryptodev.c
1119
struct thread *td)
sys/powerpc/aim/aim_machdep.c
497
ptrace_single_step(struct thread *td)
sys/powerpc/aim/aim_machdep.c
508
ptrace_clear_single_step(struct thread *td)
sys/powerpc/aim/aim_machdep.c
546
cpu_machine_check(struct thread *td, struct trapframe *frame, int *ucode)
sys/powerpc/aim/aim_machdep.c
756
struct thread *fputd;
sys/powerpc/aim/aim_machdep.c
757
struct thread *vectd;
sys/powerpc/aim/mmu_oea.c
1006
moea_activate(struct thread *td)
sys/powerpc/aim/mmu_oea.c
1024
moea_deactivate(struct thread *td)
sys/powerpc/aim/mmu_oea.c
311
void moea_activate(struct thread *);
sys/powerpc/aim/mmu_oea.c
312
void moea_deactivate(struct thread *);
sys/powerpc/aim/mmu_oea64.c
1283
moea64_activate(struct thread *td)
sys/powerpc/aim/mmu_oea64.c
1301
moea64_deactivate(struct thread *td)
sys/powerpc/aim/mmu_oea64.c
393
void moea64_activate(struct thread *);
sys/powerpc/aim/mmu_oea64.c
394
void moea64_deactivate(struct thread *);
sys/powerpc/aim/mmu_radix.c
426
void mmu_radix_activate(struct thread *);
sys/powerpc/aim/mmu_radix.c
5845
mmu_radix_activate(struct thread *td)
sys/powerpc/amigaone/cpld_a1222.c
282
cpld_open(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/powerpc/amigaone/cpld_a1222.c
293
cpld_close(struct cdev *dev, int fflag, int devtype, struct thread *td)
sys/powerpc/amigaone/cpld_a1222.c
358
struct thread *td)
sys/powerpc/amigaone/cpld_x5000.c
226
cpld_open(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/powerpc/amigaone/cpld_x5000.c
237
cpld_close(struct cdev *dev, int fflag, int devtype, struct thread *td)
sys/powerpc/amigaone/cpld_x5000.c
295
cpld_ioctl(struct cdev *dev, u_long cmd, caddr_t data, int fflag, struct thread *td)
sys/powerpc/booke/booke_machdep.c
422
ptrace_single_step(struct thread *td)
sys/powerpc/booke/booke_machdep.c
433
ptrace_clear_single_step(struct thread *td)
sys/powerpc/booke/machdep_e500.c
136
cpu_machine_check(struct thread *td, struct trapframe *frame, int *ucode)
sys/powerpc/booke/pmap.c
1622
mmu_booke_activate(struct thread *td)
sys/powerpc/booke/pmap.c
1659
mmu_booke_deactivate(struct thread *td)
sys/powerpc/booke/pmap.c
335
static void mmu_booke_activate(struct thread *);
sys/powerpc/booke/pmap.c
336
static void mmu_booke_deactivate(struct thread *);
sys/powerpc/include/altivec.h
35
void enable_vec(struct thread *);
sys/powerpc/include/altivec.h
36
void save_vec(struct thread *);
sys/powerpc/include/altivec.h
37
void save_vec_nodrop(struct thread *);
sys/powerpc/include/altivec.h
39
void disable_vec(struct thread *td);
sys/powerpc/include/cpu.h
138
struct thread;
sys/powerpc/include/cpu.h
150
int cpu_machine_check(struct thread *, struct trapframe *, int *);
sys/powerpc/include/cpufunc.h
39
struct thread;
sys/powerpc/include/fpu.h
74
void enable_fpu(struct thread *);
sys/powerpc/include/fpu.h
75
void save_fpu(struct thread *);
sys/powerpc/include/fpu.h
76
void save_fpu_nodrop(struct thread *);
sys/powerpc/include/fpu.h
78
u_int get_fpu_exception(struct thread *);
sys/powerpc/include/fpu.h
80
void disable_fpu(struct thread *td);
sys/powerpc/include/fpu.h
94
void fpu_kern_enter(struct thread *td, struct fpu_kern_ctx *ctx,
sys/powerpc/include/fpu.h
96
int fpu_kern_leave(struct thread *td, struct fpu_kern_ctx *ctx);
sys/powerpc/include/mmuvar.h
88
typedef void (*pmap_activate_t)(struct thread *);
sys/powerpc/include/mmuvar.h
89
typedef void (*pmap_deactivate_t)(struct thread *);
sys/powerpc/include/pcpu.h
150
static __inline __pure2 struct thread *
sys/powerpc/include/pcpu.h
153
struct thread *td;
sys/powerpc/include/pcpu.h
44
struct thread *pc_fputhread; /* current fpu user */ \
sys/powerpc/include/pcpu.h
45
struct thread *pc_vecthread; /* current vec user */ \
sys/powerpc/include/pcpu.h
46
struct thread *pc_htmthread; /* current htm user */ \
sys/powerpc/include/pmap.h
318
void pmap_deactivate(struct thread *);
sys/powerpc/include/reg.h
65
int fill_regs(struct thread *, struct reg *);
sys/powerpc/include/reg.h
66
int set_regs(struct thread *, struct reg *);
sys/powerpc/include/reg.h
67
int fill_fpregs(struct thread *, struct fpreg *);
sys/powerpc/include/reg.h
68
int set_fpregs(struct thread *, struct fpreg *);
sys/powerpc/include/reg.h
69
int fill_dbregs(struct thread *, struct dbreg *);
sys/powerpc/include/reg.h
70
int set_dbregs(struct thread *, struct dbreg *);
sys/powerpc/include/reg.h
75
int fill_regs32(struct thread *, struct reg32 *);
sys/powerpc/include/reg.h
76
int set_regs32(struct thread *, struct reg32 *);
sys/powerpc/include/reg.h
77
void ppc32_setregs(struct thread *, struct image_params *, uintptr_t);
sys/powerpc/include/stack.h
40
struct thread *td = curthread; \
sys/powerpc/include/stack.h
46
kstack_contains(struct thread *td, vm_offset_t va, size_t len)
sys/powerpc/include/trap.h
154
struct thread;
sys/powerpc/include/trap.h
157
int ppc_instr_emulate(struct trapframe *, struct thread *);
sys/powerpc/powermac/grackle.c
240
struct thread *td;
sys/powerpc/powernv/opal_dbg.c
32
struct thread;
sys/powerpc/powernv/opal_flash.c
117
struct thread *td)
sys/powerpc/powernv/opal_nvram.c
178
opal_nvram_open(struct cdev *dev, int flags, int fmt, struct thread *td)
sys/powerpc/powernv/opal_nvram.c
196
opal_nvram_close(struct cdev *dev, int fflag, int devtype, struct thread *td)
sys/powerpc/powernv/opal_nvram.c
287
struct thread *td)
sys/powerpc/powerpc/altivec.c
146
save_vec(struct thread *td)
sys/powerpc/powerpc/altivec.c
167
save_vec_nodrop(struct thread *td)
sys/powerpc/powerpc/altivec.c
181
disable_vec(struct thread *td)
sys/powerpc/powerpc/altivec.c
46
save_vec_int(struct thread *td)
sys/powerpc/powerpc/altivec.c
85
enable_vec(struct thread *td)
sys/powerpc/powerpc/copyinout.c
161
struct thread *td;
sys/powerpc/powerpc/copyinout.c
200
struct thread *td;
sys/powerpc/powerpc/copyinout.c
239
struct thread *td;
sys/powerpc/powerpc/copyinout.c
292
struct thread *td;
sys/powerpc/powerpc/copyinout.c
320
struct thread *td;
sys/powerpc/powerpc/copyinout.c
349
struct thread *td;
sys/powerpc/powerpc/copyinout.c
384
struct thread *td;
sys/powerpc/powerpc/copyinout.c
420
struct thread *td;
sys/powerpc/powerpc/copyinout.c
449
struct thread *td;
sys/powerpc/powerpc/copyinout.c
477
struct thread *td;
sys/powerpc/powerpc/copyinout.c
506
struct thread *td;
sys/powerpc/powerpc/copyinout.c
535
struct thread *td;
sys/powerpc/powerpc/copyinout.c
564
struct thread *td;
sys/powerpc/powerpc/copyinout.c
619
struct thread *td;
sys/powerpc/powerpc/cpu.c
732
struct thread *td = curthread;
sys/powerpc/powerpc/db_trace.c
132
db_backtrace(struct thread *td, db_addr_t fp, int count)
sys/powerpc/powerpc/db_trace.c
312
db_trace_thread(struct thread *td, int count)
sys/powerpc/powerpc/elf32_machdep.c
183
elf32_dump_thread(struct thread *td, void *dst, size_t *off)
sys/powerpc/powerpc/elf64_machdep.c
248
exec_setregs_funcdesc(struct thread *td, struct image_params *imgp,
sys/powerpc/powerpc/elf64_machdep.c
274
elf64_dump_thread(struct thread *td, void *dst, size_t *off)
sys/powerpc/powerpc/elf64_machdep.c
61
static void exec_setregs_funcdesc(struct thread *td, struct image_params *imgp,
sys/powerpc/powerpc/exec_machdep.c
1016
cpu_set_syscall_retval(struct thread *td, int error)
sys/powerpc/powerpc/exec_machdep.c
1070
cpu_thread_exit(struct thread *td)
sys/powerpc/powerpc/exec_machdep.c
1076
cpu_thread_clean(struct thread *td)
sys/powerpc/powerpc/exec_machdep.c
1081
cpu_thread_alloc(struct thread *td)
sys/powerpc/powerpc/exec_machdep.c
1086
cpu_thread_new_kstack(struct thread *td)
sys/powerpc/powerpc/exec_machdep.c
1097
cpu_thread_free(struct thread *td)
sys/powerpc/powerpc/exec_machdep.c
1102
cpu_set_user_tls(struct thread *td, void *tls_base, int thr_flags __unused)
sys/powerpc/powerpc/exec_machdep.c
1113
cpu_copy_thread(struct thread *td, struct thread *td0)
sys/powerpc/powerpc/exec_machdep.c
1158
cpu_set_upcall(struct thread *td, void (*entry)(void *), void *arg,
sys/powerpc/powerpc/exec_machdep.c
1216
struct thread *td;
sys/powerpc/powerpc/exec_machdep.c
123
static int grab_mcontext32(struct thread *td, mcontext32_t *, int flags);
sys/powerpc/powerpc/exec_machdep.c
1236
struct thread *td;
sys/powerpc/powerpc/exec_machdep.c
1254
ppc_instr_emulate(struct trapframe *frame, struct thread *td)
sys/powerpc/powerpc/exec_machdep.c
126
static int grab_mcontext(struct thread *, mcontext_t *, int);
sys/powerpc/powerpc/exec_machdep.c
128
static void cleanup_power_extras(struct thread *);
sys/powerpc/powerpc/exec_machdep.c
155
struct thread *td;
sys/powerpc/powerpc/exec_machdep.c
336
sys_sigreturn(struct thread *td, struct sigreturn_args *uap)
sys/powerpc/powerpc/exec_machdep.c
362
freebsd4_sigreturn(struct thread *td, struct freebsd4_sigreturn_args *uap)
sys/powerpc/powerpc/exec_machdep.c
389
grab_mcontext(struct thread *td, mcontext_t *mcp, int flags)
sys/powerpc/powerpc/exec_machdep.c
458
get_mcontext(struct thread *td, mcontext_t *mcp, int flags)
sys/powerpc/powerpc/exec_machdep.c
473
set_mcontext(struct thread *td, mcontext_t *mcp)
sys/powerpc/powerpc/exec_machdep.c
582
cleanup_power_extras(struct thread *td)
sys/powerpc/powerpc/exec_machdep.c
611
cpu_update_pcb(struct thread *td)
sys/powerpc/powerpc/exec_machdep.c
660
exec_setregs(struct thread *td, struct image_params *imgp, uintptr_t stack)
sys/powerpc/powerpc/exec_machdep.c
706
ppc32_setregs(struct thread *td, struct image_params *imgp, uintptr_t stack)
sys/powerpc/powerpc/exec_machdep.c
732
fill_regs(struct thread *td, struct reg *regs)
sys/powerpc/powerpc/exec_machdep.c
743
fill_dbregs(struct thread *td, struct dbreg *dbregs)
sys/powerpc/powerpc/exec_machdep.c
750
fill_fpregs(struct thread *td, struct fpreg *fpregs)
sys/powerpc/powerpc/exec_machdep.c
770
set_regs(struct thread *td, struct reg *regs)
sys/powerpc/powerpc/exec_machdep.c
781
set_dbregs(struct thread *td, struct dbreg *dbregs)
sys/powerpc/powerpc/exec_machdep.c
788
set_fpregs(struct thread *td, struct fpreg *fpregs)
sys/powerpc/powerpc/exec_machdep.c
806
set_regs32(struct thread *td, struct reg32 *regs)
sys/powerpc/powerpc/exec_machdep.c
824
fill_regs32(struct thread *td, struct reg32 *regs)
sys/powerpc/powerpc/exec_machdep.c
842
grab_mcontext32(struct thread *td, mcontext32_t *mcp, int flags)
sys/powerpc/powerpc/exec_machdep.c
866
get_mcontext32(struct thread *td, mcontext32_t *mcp, int flags)
sys/powerpc/powerpc/exec_machdep.c
881
set_mcontext32(struct thread *td, mcontext32_t *mcp)
sys/powerpc/powerpc/exec_machdep.c
906
freebsd32_sigreturn(struct thread *td, struct freebsd32_sigreturn_args *uap)
sys/powerpc/powerpc/exec_machdep.c
945
freebsd32_getcontext(struct thread *td, struct freebsd32_getcontext_args *uap)
sys/powerpc/powerpc/exec_machdep.c
964
freebsd32_setcontext(struct thread *td, struct freebsd32_setcontext_args *uap)
sys/powerpc/powerpc/exec_machdep.c
985
freebsd32_swapcontext(struct thread *td, struct freebsd32_swapcontext_args *uap)
sys/powerpc/powerpc/fpu.c
112
enable_fpu(struct thread *td)
sys/powerpc/powerpc/fpu.c
204
save_fpu(struct thread *td)
sys/powerpc/powerpc/fpu.c
225
save_fpu_nodrop(struct thread *td)
sys/powerpc/powerpc/fpu.c
252
get_fpu_exception(struct thread *td)
sys/powerpc/powerpc/fpu.c
298
disable_fpu(struct thread *td)
sys/powerpc/powerpc/fpu.c
331
fpu_kern_enter(struct thread *td, struct fpu_kern_ctx *ctx, u_int flags)
sys/powerpc/powerpc/fpu.c
367
fpu_kern_leave(struct thread *td, struct fpu_kern_ctx *ctx)
sys/powerpc/powerpc/fpu.c
47
save_fpu_int(struct thread *td)
sys/powerpc/powerpc/genassym.c
222
ASSYM(TD_LOCK, offsetof(struct thread, td_lock));
sys/powerpc/powerpc/genassym.c
223
ASSYM(TD_PROC, offsetof(struct thread, td_proc));
sys/powerpc/powerpc/genassym.c
224
ASSYM(TD_PCB, offsetof(struct thread, td_pcb));
sys/powerpc/powerpc/genassym.c
230
ASSYM(TD_FLAGS, offsetof(struct thread, td_flags));
sys/powerpc/powerpc/genassym.c
231
ASSYM(TD_AST, offsetof(struct thread, td_ast));
sys/powerpc/powerpc/interrupt.c
82
struct thread *td;
sys/powerpc/powerpc/machdep.c
713
ptrace_set_pc(struct thread *td, unsigned long addr)
sys/powerpc/powerpc/machdep.c
726
struct thread *td;
sys/powerpc/powerpc/machdep.c
743
struct thread *td;
sys/powerpc/powerpc/mem.c
279
struct thread *td)
sys/powerpc/powerpc/pmap_dispatch.c
126
DEFINE_PMAP_IFUNC(void, activate, (struct thread *));
sys/powerpc/powerpc/pmap_dispatch.c
176
DEFINE_PMAP_IFUNC(void, deactivate, (struct thread *));
sys/powerpc/powerpc/ptrace_machdep.c
43
cpu_ptrace(struct thread *td, int req, void *addr, int data)
sys/powerpc/powerpc/stack_machdep.c
89
stack_save_td(struct stack *st, struct thread *td)
sys/powerpc/powerpc/sys_machdep.c
37
freebsd32_sysarch(struct thread *td, struct freebsd32_sysarch_args *uap)
sys/powerpc/powerpc/sys_machdep.c
45
sysarch(struct thread *td, struct sysarch_args *uap)
sys/powerpc/powerpc/trap.c
205
struct thread *td;
sys/powerpc/powerpc/trap.c
617
struct thread *td;
sys/powerpc/powerpc/trap.c
654
cpu_fetch_syscall_args(struct thread *td)
sys/powerpc/powerpc/trap.c
745
struct thread *td;
sys/powerpc/powerpc/trap.c
768
struct thread *td;
sys/powerpc/powerpc/trap.c
855
fix_unaligned(struct thread *td, struct trapframe *frame)
sys/powerpc/powerpc/trap.c
857
struct thread *fputhread;
sys/powerpc/powerpc/trap.c
88
static int fix_unaligned(struct thread *td, struct trapframe *frame);
sys/powerpc/powerpc/vm_machdep.c
108
cpu_fork(struct thread *td1, struct proc *p2, struct thread *td2, int flags)
sys/powerpc/powerpc/vm_machdep.c
182
cpu_fork_kthread_handler(struct thread *td, void (*func)(void *), void *arg)
sys/powerpc/powerpc/vm_machdep.c
199
cpu_exit(struct thread *td)
sys/powerpc/powerpc/vm_machdep.c
218
cpu_procctl(struct thread *td __unused, int idtype __unused, id_t id __unused,
sys/powerpc/ps3/ps3bus.c
182
int thread;
sys/powerpc/ps3/ps3bus.c
187
thread = 32 - fls(mfctrl());
sys/powerpc/ps3/ps3bus.c
202
lv1_connect_irq_plug_ext(ppe, thread, outlet, outlet,
sys/powerpc/ps3/ps3bus.c
210
lv1_connect_irq_plug_ext(ppe, thread, outlet, outlet,
sys/powerpc/ps3/ps3bus.c
264
int thread;
sys/powerpc/ps3/ps3bus.c
269
thread = 32 - fls(mfctrl());
sys/powerpc/ps3/ps3bus.c
285
lv1_connect_irq_plug_ext(ppe, thread, outlet, outlet,
sys/powerpc/ps3/ps3pic.c
118
int thread;
sys/powerpc/ps3/ps3pic.c
130
thread = 32 - fls(mfctrl());
sys/powerpc/ps3/ps3pic.c
131
lv1_configure_irq_state_bitmap(ppe, thread,
sys/powerpc/ps3/ps3pic.c
137
lv1_configure_irq_state_bitmap(ppe, !thread,
sys/powerpc/ps3/ps3pic.c
142
lv1_connect_irq_plug_ext(ppe, thread, sc->sc_ipi_virq,
sys/powerpc/ps3/ps3pic.c
145
lv1_connect_irq_plug_ext(ppe, !thread, sc->sc_ipi_virq,
sys/powerpc/ps3/ps3pic.c
196
int thread;
sys/powerpc/ps3/ps3pic.c
199
thread = 32 - fls(mfctrl());
sys/powerpc/ps3/ps3pic.c
201
lv1_end_of_interrupt_ext(ppe, thread, irq);
sys/riscv/include/fpe.h
34
void fpe_state_save(struct thread *td);
sys/riscv/include/pcpu.h
67
static inline struct thread *
sys/riscv/include/pcpu.h
70
struct thread *td;
sys/riscv/include/pmap.h
130
struct thread;
sys/riscv/include/pmap.h
135
void pmap_activate_sw(struct thread *);
sys/riscv/include/stack.h
47
bool unwind_frame(struct thread *, struct unwind_state *);
sys/riscv/include/stack.h
53
struct thread *td = curthread; \
sys/riscv/include/stack.h
59
kstack_contains(struct thread *td, vm_offset_t va, size_t len)
sys/riscv/include/vector.h
29
void vector_state_init(struct thread *td);
sys/riscv/include/vector.h
30
void vector_state_store(struct thread *td);
sys/riscv/include/vector.h
32
void vector_state_restore(struct thread *td);
sys/riscv/include/vector.h
33
void vector_copy_thread(struct thread *td1, struct thread *td2);
sys/riscv/riscv/clock.c
47
struct thread *td;
sys/riscv/riscv/db_trace.c
122
db_trace_thread(struct thread *thr, int count)
sys/riscv/riscv/db_trace.c
59
db_stack_trace_cmd(struct thread *td, struct unwind_state *frame)
sys/riscv/riscv/elf_machdep.c
150
elf64_dump_thread(struct thread *td, void *dst, size_t *off)
sys/riscv/riscv/exec_machdep.c
105
set_regs(struct thread *td, struct reg *regs)
sys/riscv/riscv/exec_machdep.c
124
fill_fpregs(struct thread *td, struct fpreg *regs)
sys/riscv/riscv/exec_machdep.c
147
set_fpregs(struct thread *td, struct fpreg *regs)
sys/riscv/riscv/exec_machdep.c
165
fill_dbregs(struct thread *td, struct dbreg *regs)
sys/riscv/riscv/exec_machdep.c
172
set_dbregs(struct thread *td, struct dbreg *regs)
sys/riscv/riscv/exec_machdep.c
179
exec_setregs(struct thread *td, struct image_params *imgp, uintptr_t stack)
sys/riscv/riscv/exec_machdep.c
212
get_mcontext(struct thread *td, mcontext_t *mcp, int clear_ret)
sys/riscv/riscv/exec_machdep.c
277
set_mcontext(struct thread *td, mcontext_t *mcp)
sys/riscv/riscv/exec_machdep.c
356
get_fpcontext(struct thread *td, mcontext_t *mcp)
sys/riscv/riscv/exec_machdep.c
386
set_fpcontext(struct thread *td, mcontext_t *mcp)
sys/riscv/riscv/exec_machdep.c
409
sys_sigreturn(struct thread *td, struct sigreturn_args *uap)
sys/riscv/riscv/exec_machdep.c
428
sendsig_ctx_end(struct thread *td, vm_offset_t *addrp)
sys/riscv/riscv/exec_machdep.c
446
sendsig_ctx_vector(struct thread *td, vm_offset_t *addrp)
sys/riscv/riscv/exec_machdep.c
485
typedef bool(*ctx_func)(struct thread *, vm_offset_t *);
sys/riscv/riscv/exec_machdep.c
499
struct thread *td;
sys/riscv/riscv/exec_machdep.c
73
static void get_fpcontext(struct thread *td, mcontext_t *mcp);
sys/riscv/riscv/exec_machdep.c
74
static void set_fpcontext(struct thread *td, mcontext_t *mcp);
sys/riscv/riscv/exec_machdep.c
85
fill_regs(struct thread *td, struct reg *regs)
sys/riscv/riscv/genassym.c
79
ASSYM(TD_PCB, offsetof(struct thread, td_pcb));
sys/riscv/riscv/genassym.c
80
ASSYM(TD_FLAGS, offsetof(struct thread, td_flags));
sys/riscv/riscv/genassym.c
81
ASSYM(TD_AST, offsetof(struct thread, td_ast));
sys/riscv/riscv/genassym.c
82
ASSYM(TD_PROC, offsetof(struct thread, td_proc));
sys/riscv/riscv/genassym.c
83
ASSYM(TD_FRAME, offsetof(struct thread, td_frame));
sys/riscv/riscv/genassym.c
84
ASSYM(TD_MD, offsetof(struct thread, td_md));
sys/riscv/riscv/genassym.c
85
ASSYM(TD_LOCK, offsetof(struct thread, td_lock));
sys/riscv/riscv/machdep.c
243
struct thread *td;
sys/riscv/riscv/machdep.c
259
struct thread *td;
sys/riscv/riscv/mem.c
147
caddr_t data __unused, int flags __unused, struct thread *td __unused)
sys/riscv/riscv/pmap.c
5207
pmap_activate_sw(struct thread *td)
sys/riscv/riscv/pmap.c
5232
pmap_activate(struct thread *td)
sys/riscv/riscv/ptrace_machdep.c
65
ptrace_set_pc(struct thread *td, u_long addr)
sys/riscv/riscv/ptrace_machdep.c
73
ptrace_single_step(struct thread *td)
sys/riscv/riscv/ptrace_machdep.c
81
ptrace_clear_single_step(struct thread *td)
sys/riscv/riscv/stack_machdep.c
47
stack_capture(struct thread *td, struct stack *st, struct unwind_state *frame)
sys/riscv/riscv/stack_machdep.c
63
stack_save_td(struct stack *st, struct thread *td)
sys/riscv/riscv/sys_machdep.c
42
sysarch(struct thread *td, struct sysarch_args *uap)
sys/riscv/riscv/trap.c
197
struct thread *td;
sys/riscv/riscv/trap.c
210
struct thread *td;
sys/riscv/riscv/trap.c
385
struct thread *td;
sys/riscv/riscv/trap.c
86
call_trapsignal(struct thread *td, int sig, int code, void *addr, int trapno)
sys/riscv/riscv/trap.c
99
cpu_fetch_syscall_args(struct thread *td)
sys/riscv/riscv/unwind.c
42
unwind_frame(struct thread *td, struct unwind_state *frame)
sys/riscv/riscv/vector.c
115
vector_state_store(struct thread *td)
sys/riscv/riscv/vector.c
130
vector_state_restore(struct thread *td)
sys/riscv/riscv/vector.c
188
vector_state_init(struct thread *td)
sys/riscv/riscv/vector.c
203
vector_copy_thread(struct thread *td1, struct thread *td2)
sys/riscv/riscv/vector.c
223
vector_thread_dtor(void *arg __unused, struct thread *td)
sys/riscv/riscv/vm_machdep.c
150
cpu_set_syscall_retval(struct thread *td, int error)
sys/riscv/riscv/vm_machdep.c
184
cpu_copy_thread(struct thread *td, struct thread *td0)
sys/riscv/riscv/vm_machdep.c
205
cpu_set_upcall(struct thread *td, void (*entry)(void *), void *arg,
sys/riscv/riscv/vm_machdep.c
219
cpu_set_user_tls(struct thread *td, void *tls_base, int thr_flags __unused)
sys/riscv/riscv/vm_machdep.c
235
cpu_thread_exit(struct thread *td)
sys/riscv/riscv/vm_machdep.c
240
cpu_thread_alloc(struct thread *td)
sys/riscv/riscv/vm_machdep.c
246
cpu_thread_free(struct thread *td)
sys/riscv/riscv/vm_machdep.c
252
cpu_thread_clean(struct thread *td)
sys/riscv/riscv/vm_machdep.c
263
cpu_fork_kthread_handler(struct thread *td, void (*func)(void *), void *arg)
sys/riscv/riscv/vm_machdep.c
273
cpu_update_pcb(struct thread *td)
sys/riscv/riscv/vm_machdep.c
278
cpu_exit(struct thread *td)
sys/riscv/riscv/vm_machdep.c
290
cpu_procctl(struct thread *td __unused, int idtype __unused, id_t id __unused,
sys/riscv/riscv/vm_machdep.c
65
cpu_thread_new_kstack(struct thread *td)
sys/riscv/riscv/vm_machdep.c
87
cpu_fork(struct thread *td1, struct proc *p2, struct thread *td2, int flags)
sys/riscv/vmm/vmm.c
627
struct thread *td;
sys/riscv/vmm/vmm_dev_machdep.c
68
int fflag, struct thread *td)
sys/rpc/clnt_rc.c
128
struct thread *td = curthread;
sys/rpc/rpcsec_gss/rpcsec_gss.c
756
struct thread *td = curthread;
sys/rpc/rpcsec_tls/rpctls_impl.c
152
sys_rpctls_syscall(struct thread *td, struct rpctls_syscall_args *uap)
sys/rpc/svc.c
1365
struct thread *td;
sys/rpc/svc.c
1379
struct thread *td;
sys/security/audit/audit.c
263
struct thread *td;
sys/security/audit/audit.c
415
audit_new(int event, struct thread *td)
sys/security/audit/audit.c
588
audit_syscall_enter(unsigned short code, struct thread *td)
sys/security/audit/audit.c
706
audit_syscall_exit(int error, struct thread *td)
sys/security/audit/audit.c
768
audit_thread_alloc(struct thread *td)
sys/security/audit/audit.c
775
audit_thread_free(struct thread *td)
sys/security/audit/audit.c
784
audit_proc_coredump(struct thread *td, char *path, int errcode)
sys/security/audit/audit.h
113
void audit_arg_sockaddr(struct thread *td, int dirfd, struct sockaddr *sa);
sys/security/audit/audit.h
117
void audit_arg_upath1(struct thread *td, int dirfd, char *upath);
sys/security/audit/audit.h
119
void audit_arg_upath2(struct thread *td, int dirfd, char *upath);
sys/security/audit/audit.h
121
void audit_arg_upath1_vp(struct thread *td, struct vnode *rdir,
sys/security/audit/audit.h
123
void audit_arg_upath2_vp(struct thread *td, struct vnode *rdir,
sys/security/audit/audit.h
141
void audit_sysclose(struct thread *td, int fd, struct file *fp);
sys/security/audit/audit.h
147
void audit_proc_coredump(struct thread *td, char *path, int errcode);
sys/security/audit/audit.h
148
void audit_thread_alloc(struct thread *td);
sys/security/audit/audit.h
149
void audit_thread_free(struct thread *td);
sys/security/audit/audit.h
74
void audit_syscall_enter(unsigned short code, struct thread *td);
sys/security/audit/audit.h
75
void audit_syscall_exit(int error, struct thread *td);
sys/security/audit/audit_arg.c
450
audit_arg_sockaddr(struct thread *td, int dirfd, struct sockaddr *sa)
sys/security/audit/audit_arg.c
733
audit_arg_upath(struct thread *td, int dirfd, char *upath, char **pathp)
sys/security/audit/audit_arg.c
742
audit_arg_upath1(struct thread *td, int dirfd, char *upath)
sys/security/audit/audit_arg.c
755
audit_arg_upath2(struct thread *td, int dirfd, char *upath)
sys/security/audit/audit_arg.c
768
audit_arg_upath_vp(struct thread *td, struct vnode *rdir, struct vnode *cdir,
sys/security/audit/audit_arg.c
778
audit_arg_upath1_vp(struct thread *td, struct vnode *rdir, struct vnode *cdir,
sys/security/audit/audit_arg.c
792
audit_arg_upath2_vp(struct thread *td, struct vnode *rdir, struct vnode *cdir,
sys/security/audit/audit_arg.c
996
audit_sysclose(struct thread *td, int fd, struct file *fp)
sys/security/audit/audit_bsm_klib.c
420
audit_canon_path_vp(struct thread *td, struct vnode *rdir, struct vnode *cdir,
sys/security/audit/audit_bsm_klib.c
494
audit_canon_path(struct thread *td, int dirfd, char *path, char *cpath)
sys/security/audit/audit_pipe.c
670
audit_pipe_open(struct cdev *dev, int oflags, int devtype, struct thread *td)
sys/security/audit/audit_pipe.c
691
struct thread *td)
sys/security/audit/audit_pipe.c
981
audit_pipe_poll(struct cdev *dev, int events, struct thread *td)
sys/security/audit/audit_private.h
342
struct kaudit_record *audit_new(int event, struct thread *td);
sys/security/audit/audit_private.h
471
void audit_canon_path(struct thread *td, int dirfd, char *path,
sys/security/audit/audit_private.h
473
void audit_canon_path_vp(struct thread *td, struct vnode *rdir,
sys/security/audit/audit_syscalls.c
184
sys_auditon(struct thread *td, struct auditon_args *uap)
sys/security/audit/audit_syscalls.c
614
sys_getauid(struct thread *td, struct getauid_args *uap)
sys/security/audit/audit_syscalls.c
627
sys_setauid(struct thread *td, struct setauid_args *uap)
sys/security/audit/audit_syscalls.c
665
sys_getaudit(struct thread *td, struct getaudit_args *uap)
sys/security/audit/audit_syscalls.c
688
sys_setaudit(struct thread *td, struct setaudit_args *uap)
sys/security/audit/audit_syscalls.c
729
sys_getaudit_addr(struct thread *td, struct getaudit_addr_args *uap)
sys/security/audit/audit_syscalls.c
744
sys_setaudit_addr(struct thread *td, struct setaudit_addr_args *uap)
sys/security/audit/audit_syscalls.c
75
audit_priv_check(struct thread *td, int priv)
sys/security/audit/audit_syscalls.c
785
sys_auditctl(struct thread *td, struct auditctl_args *uap)
sys/security/audit/audit_syscalls.c
852
sys_audit(struct thread *td, struct audit_args *uap)
sys/security/audit/audit_syscalls.c
859
sys_auditon(struct thread *td, struct auditon_args *uap)
sys/security/audit/audit_syscalls.c
866
sys_getauid(struct thread *td, struct getauid_args *uap)
sys/security/audit/audit_syscalls.c
873
sys_setauid(struct thread *td, struct setauid_args *uap)
sys/security/audit/audit_syscalls.c
880
sys_getaudit(struct thread *td, struct getaudit_args *uap)
sys/security/audit/audit_syscalls.c
887
sys_setaudit(struct thread *td, struct setaudit_args *uap)
sys/security/audit/audit_syscalls.c
894
sys_getaudit_addr(struct thread *td, struct getaudit_addr_args *uap)
sys/security/audit/audit_syscalls.c
901
sys_setaudit_addr(struct thread *td, struct setaudit_addr_args *uap)
sys/security/audit/audit_syscalls.c
908
sys_auditctl(struct thread *td, struct auditctl_args *uap)
sys/security/audit/audit_syscalls.c
91
sys_audit(struct thread *td, struct audit_args *uap)
sys/security/audit/audit_trigger.c
132
audit_poll(struct cdev *dev, int events, struct thread *td)
sys/security/audit/audit_trigger.c
64
audit_open(struct cdev *dev, int oflags, int devtype, struct thread *td)
sys/security/audit/audit_trigger.c
81
audit_close(struct cdev *dev, int fflag, int devtype, struct thread *td)
sys/security/mac/mac_framework.h
413
void mac_proc_vm_revoke(struct thread *td);
sys/security/mac/mac_framework.h
514
void mac_thread_userret(struct thread *td);
sys/security/mac/mac_framework.h
85
struct thread;
sys/security/mac/mac_policy.h
101
struct thread;
sys/security/mac/mac_policy.h
121
typedef int (*mpo_syscall_t)(struct thread *td, int call, void *arg);
sys/security/mac/mac_policy.h
611
typedef void (*mpo_thread_userret_t)(struct thread *thread);
sys/security/mac/mac_process.c
127
mac_thread_userret(struct thread *td)
sys/security/mac/mac_process.c
209
mac_proc_vm_revoke(struct thread *td)
sys/security/mac/mac_process.c
250
mac_proc_vm_revoke_recurse(struct thread *td, struct ucred *cred,
sys/security/mac/mac_process.c
85
static void mac_proc_vm_revoke_recurse(struct thread *td,
sys/security/mac/mac_syscalls.c
163
sys___mac_get_pid(struct thread *td, struct __mac_get_pid_args *uap)
sys/security/mac/mac_syscalls.c
203
sys___mac_get_proc(struct thread *td, struct __mac_get_proc_args *uap)
sys/security/mac/mac_syscalls.c
233
mac_set_proc_prepare(struct thread *const td, const struct mac *const mac,
sys/security/mac/mac_syscalls.c
267
mac_set_proc_core(struct thread *const td, struct ucred *const newcred,
sys/security/mac/mac_syscalls.c
293
mac_set_proc_finish(struct thread *const td, bool proc_label_set,
sys/security/mac/mac_syscalls.c
306
mac_get_prison(struct thread *const td, struct prison *pr,
sys/security/mac/mac_syscalls.c
385
mac_set_prison_prepare(struct thread *const td, struct vfsoptlist *opts,
sys/security/mac/mac_syscalls.c
438
mac_set_prison_core(struct thread *const td, struct prison *pr,
sys/security/mac/mac_syscalls.c
447
mac_set_prison_finish(struct thread *const td, bool prison_label_set __unused,
sys/security/mac/mac_syscalls.c
456
sys___mac_set_proc(struct thread *td, struct __mac_set_proc_args *uap)
sys/security/mac/mac_syscalls.c
498
sys___mac_get_fd(struct thread *td, struct __mac_get_fd_args *uap)
sys/security/mac/mac_syscalls.c
601
sys___mac_get_file(struct thread *td, struct __mac_get_file_args *uap)
sys/security/mac/mac_syscalls.c
608
sys___mac_get_link(struct thread *td, struct __mac_get_link_args *uap)
sys/security/mac/mac_syscalls.c
615
kern___mac_get_path(struct thread *td, const char *path_p, struct mac *mac_p,
sys/security/mac/mac_syscalls.c
656
sys___mac_set_fd(struct thread *td, struct __mac_set_fd_args *uap)
sys/security/mac/mac_syscalls.c
768
sys___mac_set_file(struct thread *td, struct __mac_set_file_args *uap)
sys/security/mac/mac_syscalls.c
775
sys___mac_set_link(struct thread *td, struct __mac_set_link_args *uap)
sys/security/mac/mac_syscalls.c
782
kern___mac_set_path(struct thread *td, const char *path_p, struct mac *mac_p,
sys/security/mac/mac_syscalls.c
81
static int kern___mac_get_path(struct thread *td, const char *path_p,
sys/security/mac/mac_syscalls.c
822
sys_mac_syscall(struct thread *td, struct mac_syscall_args *uap)
sys/security/mac/mac_syscalls.c
83
static int kern___mac_set_path(struct thread *td, const char *path_p,
sys/security/mac/mac_syscalls.c
861
sys___mac_get_pid(struct thread *td, struct __mac_get_pid_args *uap)
sys/security/mac/mac_syscalls.c
868
sys___mac_get_proc(struct thread *td, struct __mac_get_proc_args *uap)
sys/security/mac/mac_syscalls.c
875
sys___mac_set_proc(struct thread *td, struct __mac_set_proc_args *uap)
sys/security/mac/mac_syscalls.c
882
sys___mac_get_fd(struct thread *td, struct __mac_get_fd_args *uap)
sys/security/mac/mac_syscalls.c
889
sys___mac_get_file(struct thread *td, struct __mac_get_file_args *uap)
sys/security/mac/mac_syscalls.c
896
sys___mac_get_link(struct thread *td, struct __mac_get_link_args *uap)
sys/security/mac/mac_syscalls.c
903
sys___mac_set_fd(struct thread *td, struct __mac_set_fd_args *uap)
sys/security/mac/mac_syscalls.c
910
sys___mac_set_file(struct thread *td, struct __mac_set_file_args *uap)
sys/security/mac/mac_syscalls.c
917
sys___mac_set_link(struct thread *td, struct __mac_set_link_args *uap)
sys/security/mac/mac_syscalls.c
924
sys_mac_syscall(struct thread *td, struct mac_syscall_args *uap)
sys/security/mac/mac_syscalls.h
26
int mac_set_proc_prepare(struct thread *const td,
sys/security/mac/mac_syscalls.h
28
int mac_set_proc_core(struct thread *const td, struct ucred *const newcred,
sys/security/mac/mac_syscalls.h
30
void mac_set_proc_finish(struct thread *const td, bool proc_label_set,
sys/security/mac/mac_syscalls.h
34
int mac_get_prison(struct thread *const td, struct prison *pr,
sys/security/mac/mac_syscalls.h
36
int mac_set_prison_prepare(struct thread *const td, struct vfsoptlist *opts,
sys/security/mac/mac_syscalls.h
38
int mac_set_prison_core(struct thread *const td, struct prison *pr,
sys/security/mac/mac_syscalls.h
40
void mac_set_prison_finish(struct thread *const td, bool prison_label_set,
sys/security/mac_ddb/mac_ddb.c
109
struct thread *thr;
sys/security/mac_grantbylabel/mac_grantbylabel.c
359
mac_grantbylabel_syscall(struct thread *td, int call, void *arg)
sys/security/mac_lomac/mac_lomac.c
2237
lomac_thread_userret(struct thread *td)
sys/security/mac_lomac/mac_lomac.c
593
ast_mac(struct thread *td, int tda __unused)
sys/security/mac_stub/mac_stub.c
116
stub_syscall(struct thread *td, int call, void *arg)
sys/security/mac_stub/mac_stub.c
1459
stub_thread_userret(struct thread *td)
sys/security/mac_test/mac_test.c
2672
test_thread_userret(struct thread *td)
sys/security/mac_veriexec/mac_veriexec.c
197
struct vnode *fsrootvp, struct thread *td)
sys/security/mac_veriexec/mac_veriexec.c
224
struct thread *td)
sys/security/mac_veriexec/mac_veriexec.c
357
struct thread *td = curthread;
sys/security/mac_veriexec/mac_veriexec.c
501
struct thread *td = curthread;
sys/security/mac_veriexec/mac_veriexec.c
522
struct thread *td = curthread;
sys/security/mac_veriexec/mac_veriexec.c
840
mac_veriexec_syscall(struct thread *td, int call, void *arg)
sys/security/mac_veriexec/mac_veriexec_internal.h
70
struct thread;
sys/security/mac_veriexec/mac_veriexec_internal.h
76
struct vattr *vap, struct thread *td, int check_files);
sys/security/mac_veriexec/mac_veriexec_internal.h
86
int mac_veriexec_metadata_unmounted(dev_t fsid, struct thread *td);
sys/security/mac_veriexec/mac_veriexec_internal.h
91
int check_files, struct thread *td);
sys/security/mac_veriexec/mac_veriexec_internal.h
93
struct mac_veriexec_file_info *ip, struct thread *td,
sys/security/mac_veriexec/veriexec_fingerprint.c
105
identify_error (struct image_params *imgp, struct thread *td, const char *msg)
sys/security/mac_veriexec/veriexec_fingerprint.c
141
struct thread *td, off_t file_size, unsigned char *fingerprint)
sys/security/mac_veriexec/veriexec_fingerprint.c
215
struct mac_veriexec_file_info *ip, struct thread *td, off_t file_size,
sys/security/mac_veriexec/veriexec_fingerprint.c
260
int check_files, struct thread *td)
sys/security/mac_veriexec/veriexec_metadata.c
405
mac_veriexec_metadata_unmounted(dev_t fsid, struct thread *td)
sys/security/mac_veriexec/veriexec_metadata.c
506
struct vattr *vap, struct thread *td, int check_files)
sys/sys/_rmlock.h
41
struct thread;
sys/sys/_rmlock.h
72
struct thread *rmp_thread;
sys/sys/_rmlock.h
81
struct thread *owner;
sys/sys/acct.h
142
struct thread;
sys/sys/acct.h
144
int acct_process(struct thread *td);
sys/sys/alq.h
45
extern struct thread *ald_thread;
sys/sys/asan.h
56
struct thread;
sys/sys/asan.h
62
void kasan_thread_alloc(struct thread *);
sys/sys/conf.h
104
struct thread;
sys/sys/conf.h
111
typedef int d_open_t(struct cdev *dev, int oflags, int devtype, struct thread *td);
sys/sys/conf.h
112
typedef int d_fdopen_t(struct cdev *dev, int oflags, struct thread *td, struct file *fp);
sys/sys/conf.h
113
typedef int d_close_t(struct cdev *dev, int fflag, int devtype, struct thread *td);
sys/sys/conf.h
116
int fflag, struct thread *td);
sys/sys/conf.h
120
typedef int d_poll_t(struct cdev *dev, int events, struct thread *td);
sys/sys/cpuset.h
156
struct thread;
sys/sys/cpuset.h
175
struct thread **, struct cpuset **);
sys/sys/cpuset.h
176
void cpuset_kernthread(struct thread *);
sys/sys/dtrace_bsd.h
168
void kdtrace_thread_ctor(struct thread *td);
sys/sys/dtrace_bsd.h
169
void kdtrace_thread_dtor(struct thread *td);
sys/sys/dtrace_bsd.h
37
struct thread;
sys/sys/dtrace_bsd.h
66
typedef void (*dtrace_vtime_switch_func_t)(struct thread *);
sys/sys/epoch.h
56
struct thread *et_td;
sys/sys/epoch.h
90
void epoch_trace_list(struct thread *);
sys/sys/event.h
347
struct thread;
sys/sys/event.h
365
void knlist_cleardel(struct knlist *knl, struct thread *td,
sys/sys/event.h
371
void knote_fdclose(struct thread *p, int fd);
sys/sys/event.h
372
int kqfd_register(int fd, struct kevent *kev, struct thread *p,
sys/sys/eventfd.h
43
int eventfd_create_file(struct thread *td, struct file *fp, uint32_t initval,
sys/sys/eventhandler.h
224
struct thread;
sys/sys/eventhandler.h
226
struct thread *);
sys/sys/eventhandler.h
228
struct thread *);
sys/sys/eventhandler.h
258
typedef void (*app_coredump_start_fn)(void *, struct thread *, char *name);
sys/sys/eventhandler.h
259
typedef void (*app_coredump_progress_fn)(void *, struct thread *td, int byte_count);
sys/sys/eventhandler.h
260
typedef void (*app_coredump_finish_fn)(void *, struct thread *td);
sys/sys/eventhandler.h
261
typedef void (*app_coredump_error_fn)(void *, struct thread *td, char *msg, ...);
sys/sys/eventhandler.h
268
typedef void (*thread_ctor_fn)(void *, struct thread *);
sys/sys/eventhandler.h
269
typedef void (*thread_dtor_fn)(void *, struct thread *);
sys/sys/eventhandler.h
270
typedef void (*thread_fini_fn)(void *, struct thread *);
sys/sys/eventhandler.h
271
typedef void (*thread_init_fn)(void *, struct thread *);
sys/sys/extattr.h
65
struct thread;
sys/sys/extattr.h
69
struct ucred *cred, struct thread *td, accmode_t accmode);
sys/sys/exterrvar.h
30
struct thread;
sys/sys/exterrvar.h
79
int exterr_to_ue(struct thread *td, struct uexterror *ue);
sys/sys/exterrvar.h
80
void ktrexterr(struct thread *td);
sys/sys/file.h
109
struct thread *td);
sys/sys/file.h
111
struct ucred *active_cred, struct thread *td);
sys/sys/file.h
113
struct ucred *active_cred, struct thread *td);
sys/sys/file.h
115
struct ucred *active_cred, struct thread *td);
sys/sys/file.h
119
typedef int fo_close_t(struct file *fp, struct thread *td);
sys/sys/file.h
120
typedef void fo_fdclose_t(struct file *fp, int fd, struct thread *td);
sys/sys/file.h
122
struct ucred *active_cred, struct thread *td);
sys/sys/file.h
124
struct ucred *active_cred, struct thread *td);
sys/sys/file.h
127
off_t *sent, int flags, struct thread *td);
sys/sys/file.h
129
struct thread *td);
sys/sys/file.h
134
int flags, vm_ooffset_t foff, struct thread *td);
sys/sys/file.h
139
struct thread *td);
sys/sys/file.h
142
struct ucred *active_cred, struct thread *td);
sys/sys/file.h
143
typedef int fo_cmp_t(struct file *fp, struct file *fp1, struct thread *td);
sys/sys/file.h
145
struct proc *p1, struct thread *td);
sys/sys/file.h
275
int fget(struct thread *td, int fd, const cap_rights_t *rightsp,
sys/sys/file.h
277
int fget_mmap(struct thread *td, int fd, const cap_rights_t *rightsp,
sys/sys/file.h
279
int fget_read(struct thread *td, int fd, const cap_rights_t *rightsp,
sys/sys/file.h
281
int fget_write(struct thread *td, int fd, const cap_rights_t *rightsp,
sys/sys/file.h
283
int fget_fcntl(struct thread *td, int fd, const cap_rights_t *rightsp,
sys/sys/file.h
285
int _fdrop(struct file *fp, struct thread *td);
sys/sys/file.h
286
int fget_remote(struct thread *td, struct proc *p, int fd,
sys/sys/file.h
288
int fget_remote_foreach(struct thread *td, struct proc *p,
sys/sys/file.h
305
int file_kcmp_generic(struct file *fp1, struct file *fp2, struct thread *td);
sys/sys/file.h
309
int fgetvp(struct thread *td, int fd, const cap_rights_t *rightsp,
sys/sys/file.h
311
int fgetvp_exec(struct thread *td, int fd, const cap_rights_t *rightsp,
sys/sys/file.h
313
int fgetvp_rights(struct thread *td, int fd, const cap_rights_t *needrightsp,
sys/sys/file.h
315
int fgetvp_read(struct thread *td, int fd, const cap_rights_t *rightsp,
sys/sys/file.h
317
int fgetvp_write(struct thread *td, int fd, const cap_rights_t *rightsp,
sys/sys/file.h
364
int flags, struct thread *td)
sys/sys/file.h
372
int flags, struct thread *td)
sys/sys/file.h
380
struct thread *td)
sys/sys/file.h
388
struct thread *td)
sys/sys/file.h
396
struct thread *td)
sys/sys/file.h
410
fo_close(struct file *fp, struct thread *td)
sys/sys/file.h
425
struct thread *td)
sys/sys/file.h
433
struct thread *td)
sys/sys/file.h
442
struct thread *td)
sys/sys/file.h
450
fo_seek(struct file *fp, off_t offset, int whence, struct thread *td)
sys/sys/file.h
466
struct thread *td)
sys/sys/file.h
501
fo_fallocate(struct file *fp, off_t offset, off_t len, struct thread *td)
sys/sys/file.h
51
struct thread;
sys/sys/file.h
511
int flags, struct ucred *active_cred, struct thread *td)
sys/sys/file.h
521
fo_cmp(struct file *fp1, struct file *fp2, struct thread *td)
sys/sys/filedesc.h
234
struct thread;
sys/sys/filedesc.h
248
int closef(struct file *fp, struct thread *td);
sys/sys/filedesc.h
251
int dupfdopen(struct thread *td, struct filedesc *fdp, int dfd, int mode,
sys/sys/filedesc.h
253
int falloc_caps(struct thread *td, struct file **resultfp, int *resultfd,
sys/sys/filedesc.h
255
void falloc_abort(struct thread *td, struct file *fp);
sys/sys/filedesc.h
256
int _falloc_noinstall(struct thread *td, struct file **resultfp, u_int n);
sys/sys/filedesc.h
260
int finstall(struct thread *td, struct file *fp, int *resultfd, int flags,
sys/sys/filedesc.h
262
int finstall_refed(struct thread *td, struct file *fp, int *resultfd, int flags,
sys/sys/filedesc.h
264
int fdalloc(struct thread *td, int minfd, int *result);
sys/sys/filedesc.h
265
int fdallocn(struct thread *td, int minfd, int *fds, int n);
sys/sys/filedesc.h
266
int fdcheckstd(struct thread *td);
sys/sys/filedesc.h
267
void fdclose(struct thread *td, struct file *fp, int idx);
sys/sys/filedesc.h
268
void fdcloseexec(struct thread *td);
sys/sys/filedesc.h
269
void fdsetugidsafety(struct thread *td);
sys/sys/filedesc.h
271
void fdunshare(struct thread *td);
sys/sys/filedesc.h
272
void fdescfree(struct thread *td);
sys/sys/filedesc.h
283
int getvnode(struct thread *td, int fd, const cap_rights_t *rightsp,
sys/sys/filedesc.h
285
int getvnode_path(struct thread *td, int fd, const cap_rights_t *rightsp,
sys/sys/filedesc.h
292
int fget_cap(struct thread *td, int fd, const cap_rights_t *needrightsp,
sys/sys/filedesc.h
295
int fget_unlocked(struct thread *td, int fd,
sys/sys/filedesc.h
297
int fget_unlocked_flags(struct thread *td, int fd,
sys/sys/filedesc.h
366
void pdescfree(struct thread *td);
sys/sys/filedesc.h
369
void pdunshare(struct thread *td);
sys/sys/filedesc.h
371
void pwd_altroot(struct thread *td, struct vnode *altroot_vp);
sys/sys/filedesc.h
372
void pwd_chdir(struct thread *td, struct vnode *vp);
sys/sys/filedesc.h
373
int pwd_chroot(struct thread *td, struct vnode *vp);
sys/sys/filedesc.h
374
int pwd_chroot_chdir(struct thread *td, struct vnode *vp);
sys/sys/filedesc.h
381
struct pwd *pwd_hold(struct thread *td);
sys/sys/imgact.h
103
struct thread;
sys/sys/imgact.h
117
void exec_cleanup(struct thread *td, struct vmspace *);
sys/sys/imgact.h
122
void exec_setregs(struct thread *, struct image_params *, uintptr_t);
sys/sys/imgact.h
125
int pre_execve(struct thread *td, struct vmspace **oldvmspace);
sys/sys/imgact.h
126
void post_execve(struct thread *td, int error, struct vmspace *oldvmspace);
sys/sys/imgact.h
127
bool execve_block(struct thread *td, struct proc *p);
sys/sys/imgact.h
128
void execve_block_wait(struct thread *td, struct proc *p);
sys/sys/imgact.h
129
void execve_unblock(struct thread *td, struct proc *p);
sys/sys/imgact.h
130
void execve_block_pass(struct thread *td);
sys/sys/imgact.h
60
struct thread *td;
sys/sys/imgact_aout.h
148
struct thread;
sys/sys/imgact_aout.h
151
int aout_coredump(struct thread *td, struct vnode *vp, off_t limit,
sys/sys/imgact_elf.h
118
int __elfN(coredump)(struct thread *, struct coredump_writer *, off_t, int);
sys/sys/imgact_elf.h
121
void __elfN(puthdr)(struct thread *, void *, size_t, int, size_t, int);
sys/sys/imgact_elf.h
122
void __elfN(prepare_notes)(struct thread *, struct note_info_list *,
sys/sys/imgact_elf.h
124
void __elfN(size_segments)(struct thread *, struct sseg_closure *, int);
sys/sys/imgact_elf.h
125
size_t __elfN(register_note)(struct thread *, struct note_info_list *,
sys/sys/imgact_elf.h
132
void __elfN(dump_thread)(struct thread *, void *, size_t *);
sys/sys/imgact_elf.h
50
struct thread;
sys/sys/inotify.h
86
struct thread;
sys/sys/inotify.h
89
int inotify_create_file(struct thread *, struct file *, int, int *);
sys/sys/inotify.h
92
int kern_inotify_rm_watch(int, uint32_t, struct thread *);
sys/sys/inotify.h
94
struct thread *);
sys/sys/inotify.h
99
__uint32_t, __uint32_t *, struct thread *);
sys/sys/ipc.h
127
struct thread;
sys/sys/ipc.h
138
int ipcperm(struct thread *, struct ipc_perm *, int);
sys/sys/jaildesc.h
77
int jaildesc_find(struct thread *td, int fd, struct prison **prp,
sys/sys/jaildesc.h
79
int jaildesc_alloc(struct thread *td, struct file **fpp, int *fdp, int owning);
sys/sys/kdb.h
36
struct thread;
sys/sys/kdb.h
41
typedef void dbbe_trace_thread_f(struct thread *);
sys/sys/kdb.h
71
extern struct thread *kdb_thread; /* Current thread. */
sys/sys/kdb.h
77
void kdb_backtrace_thread(struct thread *);
sys/sys/kdb.h
86
struct pcb *kdb_thr_ctx(struct thread *);
sys/sys/kdb.h
87
struct thread *kdb_thr_first(void);
sys/sys/kdb.h
88
struct thread *kdb_thr_from_pid(pid_t);
sys/sys/kdb.h
89
struct thread *kdb_thr_lookup(lwpid_t);
sys/sys/kdb.h
90
struct thread *kdb_thr_next(struct thread *);
sys/sys/kdb.h
91
int kdb_thr_select(struct thread *);
sys/sys/kpilite.h
37
KASSERT((struct thread *)td == curthread, ("sched_pin called on non curthread"));
sys/sys/kpilite.h
46
KASSERT((struct thread *)td == curthread, ("sched_unpin called on non curthread"));
sys/sys/kthread.h
49
struct thread **global_threadpp; /* ptr to thread ptr save area */
sys/sys/kthread.h
64
struct thread **,
sys/sys/kthread.h
69
struct proc *, struct thread **,
sys/sys/kthread.h
72
int kthread_resume(struct thread *);
sys/sys/kthread.h
75
int kthread_suspend(struct thread *, int);
sys/sys/ktr.h
61
struct thread *ktr_thread;
sys/sys/ktrace.h
353
void ktrprocexit(struct thread *);
sys/sys/ktrace.h
355
void ktruserret(struct thread *);
sys/sys/lock.h
241
void witness_display_spinlock(struct lock_object *, struct thread *,
sys/sys/lock.h
247
void witness_thread_exit(struct thread *);
sys/sys/lock.h
41
struct thread;
sys/sys/lock.h
67
struct thread **owner);
sys/sys/lock_profile.h
50
void lock_profile_thread_exit(struct thread *td);
sys/sys/lockmgr.h
63
struct thread;
sys/sys/lockmgr.h
91
int lockmgr_chain(struct thread *td, struct thread **ownerp);
sys/sys/mount.h
1023
int dounmount(struct mount *, uint64_t, struct thread *);
sys/sys/mount.h
1032
struct vfsconf *vfs_byname_kld(const char *, struct thread *td, int *);
sys/sys/mount.h
1069
int vfs_donmount(struct thread *td, uint64_t fsflags,
sys/sys/mount.h
1084
int vfs_suser(struct mount *, struct thread *);
sys/sys/mount.h
263
struct thread *mnt_susp_owner; /* (i) thread owning suspension */
sys/sys/msan.h
59
void kmsan_thread_alloc(struct thread *);
sys/sys/msan.h
60
void kmsan_thread_free(struct thread *);
sys/sys/msg.h
155
int kern_get_msqids(struct thread *td, struct msqid_kernel **res,
sys/sys/mutex.h
134
void thread_lock_flags_(struct thread *, int, const char *, int);
sys/sys/mutex.h
136
void _thread_lock(struct thread *td, int opts, const char *file, int line);
sys/sys/mutex.h
138
void _thread_lock(struct thread *);
sys/sys/mutex.h
470
#define lv_mtx_owner(v) ((struct thread *)((v) & ~MTX_FLAGMASK))
sys/sys/pcpu.h
176
struct thread *pc_curthread; /* Current thread */
sys/sys/pcpu.h
177
struct thread *pc_idlethread; /* Idle thread */
sys/sys/pcpu.h
178
struct thread *pc_fpcurthread; /* Fp state owner */
sys/sys/pcpu.h
179
struct thread *pc_deadthread; /* Zombie thread or NULL */
sys/sys/pipe.h
148
int pipe_named_ctor(struct pipe **ppipe, struct thread *td);
sys/sys/pmc.h
831
struct thread *pt_td; /* target thread */
sys/sys/pmc.h
955
struct thread *ps_td; /* which thread */
sys/sys/pmckern.h
179
extern int (*pmc_hook)(struct thread *_td, int _function, void *_arg);
sys/sys/pmclog.h
317
int pmclog_proc_create(struct thread *td, void **handlep);
sys/sys/pmclog.h
330
pmc_value_t _v, struct thread *);
sys/sys/pmclog.h
336
void pmclog_process_threadcreate(struct pmc_owner *_po, struct thread *td, int sync);
sys/sys/pmclog.h
337
void pmclog_process_threadexit(struct pmc_owner *_po, struct thread *td);
sys/sys/posix4.h
100
int ksched_getscheduler(struct ksched *, struct thread *, int *);
sys/sys/posix4.h
108
struct thread *, struct timespec *);
sys/sys/posix4.h
48
extern int syscall_not_present(struct thread *, const char *, struct nosys_args *);
sys/sys/posix4.h
51
int sys_ ## SC (struct thread *td, struct SC##_args *uap) \
sys/sys/posix4.h
94
struct thread *, const struct sched_param *);
sys/sys/posix4.h
96
struct thread *, struct sched_param *);
sys/sys/posix4.h
99
struct thread *, int, const struct sched_param *);
sys/sys/priv.h
568
struct thread;
sys/sys/priv.h
570
int priv_check(struct thread *td, int priv);
sys/sys/proc.h
1048
struct thread *_td = (td); \
sys/sys/proc.h
1106
TAILQ_HEAD(threadqueue, thread);
sys/sys/proc.h
1157
void ast_kclear(struct thread *td);
sys/sys/proc.h
1159
void (*f)(struct thread *td, int asts));
sys/sys/proc.h
1161
void ast_sched_locked(struct thread *td, int tda);
sys/sys/proc.h
1162
void ast_sched_mask(struct thread *td, int ast);
sys/sys/proc.h
1163
void ast_sched(struct thread *td, int tda);
sys/sys/proc.h
1164
void ast_unsched_locked(struct thread *td, int tda);
sys/sys/proc.h
1166
struct thread *choosethread(void);
sys/sys/proc.h
1174
int fork1(struct thread *, struct fork_req *);
sys/sys/proc.h
1177
void fork_return(struct thread *, struct trapframe *);
sys/sys/proc.h
1188
int p_candebug(struct thread *td, struct proc *p);
sys/sys/proc.h
1189
int p_cansee(struct thread *td, struct proc *p);
sys/sys/proc.h
1190
int p_cansched(struct thread *td, struct proc *p);
sys/sys/proc.h
1191
int p_cansignal(struct thread *td, struct proc *p, int signum);
sys/sys/proc.h
1192
int p_canwait(struct thread *td, struct proc *p);
sys/sys/proc.h
1200
int proc_getargv(struct thread *td, struct proc *p, struct sbuf *sb);
sys/sys/proc.h
1201
int proc_getauxv(struct thread *td, struct proc *p, struct sbuf *sb);
sys/sys/proc.h
1202
int proc_getenvv(struct thread *td, struct proc *p, struct sbuf *sb);
sys/sys/proc.h
1205
void proc_linkup0(struct proc *p, struct thread *td);
sys/sys/proc.h
1206
void proc_linkup(struct proc *p, struct thread *td);
sys/sys/proc.h
1208
void proc_reap(struct thread *td, struct proc *p, int *status, int options);
sys/sys/proc.h
1222
void setrunnable(struct thread *, int);
sys/sys/proc.h
1227
struct thread *tdfind(lwpid_t, pid_t);
sys/sys/proc.h
1229
void tidhash_add(struct thread *);
sys/sys/proc.h
1230
void tidhash_remove(struct thread *);
sys/sys/proc.h
1234
void cpu_switch(struct thread *, struct thread *, struct mtx *);
sys/sys/proc.h
1236
void cpu_throw(struct thread *, struct thread *) __dead2;
sys/sys/proc.h
1237
void cpu_update_pcb(struct thread *);
sys/sys/proc.h
1239
void userret(struct thread *, struct trapframe *);
sys/sys/proc.h
1241
void cpu_exit(struct thread *);
sys/sys/proc.h
1242
void exit1(struct thread *, int, int) __dead2;
sys/sys/proc.h
1243
void cpu_copy_thread(struct thread *td, struct thread *td0);
sys/sys/proc.h
1245
int cpu_fetch_syscall_args(struct thread *td);
sys/sys/proc.h
1246
void cpu_fork(struct thread *, struct proc *, struct thread *, int);
sys/sys/proc.h
1247
void cpu_fork_kthread_handler(struct thread *, void (*)(void *), void *);
sys/sys/proc.h
1248
int cpu_procctl(struct thread *td, int idtype, id_t id, int com,
sys/sys/proc.h
1250
void cpu_set_syscall_retval(struct thread *, int);
sys/sys/proc.h
1251
int cpu_set_upcall(struct thread *, void (*)(void *), void *,
sys/sys/proc.h
1253
int cpu_set_user_tls(struct thread *, void *tls_base, int flags);
sys/sys/proc.h
1254
void cpu_thread_alloc(struct thread *);
sys/sys/proc.h
1255
void cpu_thread_clean(struct thread *);
sys/sys/proc.h
1256
void cpu_thread_exit(struct thread *);
sys/sys/proc.h
1257
void cpu_thread_free(struct thread *);
sys/sys/proc.h
1258
void cpu_thread_new_kstack(struct thread *);
sys/sys/proc.h
1259
struct thread *thread_alloc(int pages);
sys/sys/proc.h
1260
int thread_check_susp(struct thread *td, bool sleep);
sys/sys/proc.h
1261
void thread_cow_get_proc(struct thread *newtd, struct proc *p);
sys/sys/proc.h
1262
void thread_cow_get(struct thread *newtd, struct thread *td);
sys/sys/proc.h
1263
void thread_cow_free(struct thread *td);
sys/sys/proc.h
1264
void thread_cow_update(struct thread *td);
sys/sys/proc.h
1265
void thread_cow_synced(struct thread *td);
sys/sys/proc.h
1266
int thread_create(struct thread *td, struct rtprio *rtp,
sys/sys/proc.h
1267
int (*initialize_thread)(struct thread *, void *), void *thunk);
sys/sys/proc.h
1269
void thread_free(struct thread *td);
sys/sys/proc.h
1270
void thread_link(struct thread *td, struct proc *p);
sys/sys/proc.h
1272
int thread_recycle(struct thread *, int pages);
sys/sys/proc.h
1275
void thread_stash(struct thread *td);
sys/sys/proc.h
1280
void thread_run_flash(struct thread *td);
sys/sys/proc.h
1283
void thread_suspend_switch(struct thread *, struct proc *p);
sys/sys/proc.h
1284
void thread_suspend_one(struct thread *td);
sys/sys/proc.h
1285
void thread_unlink(struct thread *td);
sys/sys/proc.h
1297
struct thread *td;
sys/sys/proc.h
1316
struct thread *td;
sys/sys/proc.h
1333
td_get_sched(struct thread *td)
sys/sys/proc.h
1340
td_kstack_top(struct thread *td)
sys/sys/proc.h
194
struct thread;
sys/sys/proc.h
237
TAILQ_ENTRY(thread) td_plist; /* (*) All threads in this proc. */
sys/sys/proc.h
238
TAILQ_ENTRY(thread) td_runq; /* (t) Run queue. */
sys/sys/proc.h
240
TAILQ_ENTRY(thread) td_slpq; /* (t) Sleep queue. */
sys/sys/proc.h
241
struct thread *td_zombie; /* Zombie list linkage */
sys/sys/proc.h
243
TAILQ_ENTRY(thread) td_lockq; /* (t) Lock queue. */
sys/sys/proc.h
244
LIST_ENTRY(thread) td_hash; /* (d) Hash chain. */
sys/sys/proc.h
398
struct thread t0st_thread;
sys/sys/proc.h
402
struct mtx *thread_lock_block(struct thread *);
sys/sys/proc.h
403
void thread_lock_block_wait(struct thread *);
sys/sys/proc.h
404
void thread_lock_set(struct thread *, struct mtx *);
sys/sys/proc.h
405
void thread_lock_unblock(struct thread *, struct mtx *);
sys/sys/proc.h
657
TAILQ_HEAD(, thread) p_threads; /* (c) all threads. */
sys/sys/proc.h
717
struct thread *p_singlethread;/* (c + j) If single threading this is it */
sys/sys/proc.h
719
struct thread *p_xthread; /* (c) Trap thread */
sys/sys/procdesc.h
108
int kern_pdgetpid(struct thread *, int fd, const cap_rights_t *,
sys/sys/procdesc.h
115
int procdesc_falloc(struct thread *, struct file **, int *, int,
sys/sys/procdesc.h
117
int fget_procdesc(struct thread *td, int pfd,
sys/sys/protosw.h
101
struct thread *);
sys/sys/protosw.h
104
struct thread *);
sys/sys/protosw.h
46
struct thread;
sys/sys/protosw.h
62
typedef int pr_attach_t(struct socket *, int, struct thread *);
sys/sys/protosw.h
63
typedef int pr_bind_t(struct socket *, struct sockaddr *, struct thread *);
sys/sys/protosw.h
65
struct thread *);
sys/sys/protosw.h
68
struct ifnet *, struct thread *);
sys/sys/protosw.h
71
typedef int pr_listen_t(struct socket *, int, struct thread *);
sys/sys/protosw.h
83
struct sockaddr *, struct mbuf *, struct thread *);
sys/sys/protosw.h
90
struct mbuf *, struct mbuf *, int, struct thread *);
sys/sys/protosw.h
93
typedef int pr_sopoll_t(struct socket *, int, struct thread *);
sys/sys/protosw.h
99
struct thread *);
sys/sys/ptrace.h
238
int ptrace_set_pc(struct thread *_td, unsigned long _addr);
sys/sys/ptrace.h
239
int ptrace_single_step(struct thread *_td);
sys/sys/ptrace.h
240
int ptrace_clear_single_step(struct thread *_td);
sys/sys/ptrace.h
243
int cpu_ptrace(struct thread *_td, int _req, void *_addr, int _data);
sys/sys/ptrace.h
256
int proc_read_regs(struct thread *_td, struct reg *_reg);
sys/sys/ptrace.h
257
int proc_write_regs(struct thread *_td, struct reg *_reg);
sys/sys/ptrace.h
258
int proc_read_fpregs(struct thread *_td, struct fpreg *_fpreg);
sys/sys/ptrace.h
259
int proc_write_fpregs(struct thread *_td, struct fpreg *_fpreg);
sys/sys/ptrace.h
260
int proc_read_dbregs(struct thread *_td, struct dbreg *_dbreg);
sys/sys/ptrace.h
261
int proc_write_dbregs(struct thread *_td, struct dbreg *_dbreg);
sys/sys/ptrace.h
262
int proc_sstep(struct thread *_td);
sys/sys/ptrace.h
270
int proc_vmspace_ref(struct thread *_td, struct proc *_p, int _flags,
sys/sys/ptrace.h
272
void proc_vmspace_unref(struct thread *_td, struct proc *_p, int _flags,
sys/sys/ptrace.h
274
ssize_t vmspace_iop(struct thread *td, struct vmspace *vm, vm_offset_t va,
sys/sys/ptrace.h
277
ssize_t proc_readmem(struct thread *_td, struct proc *_p, vm_offset_t _va,
sys/sys/ptrace.h
279
ssize_t proc_writemem(struct thread *_td, struct proc *_p, vm_offset_t _va,
sys/sys/ptrace.h
285
int proc_read_regs32(struct thread *_td, struct reg32 *_reg32);
sys/sys/ptrace.h
286
int proc_write_regs32(struct thread *_td, struct reg32 *_reg32);
sys/sys/ptrace.h
287
int proc_read_fpregs32(struct thread *_td, struct fpreg32 *_fpreg32);
sys/sys/ptrace.h
288
int proc_write_fpregs32(struct thread *_td, struct fpreg32 *_fpreg32);
sys/sys/ptrace.h
289
int proc_read_dbregs32(struct thread *_td, struct dbreg32 *_dbreg32);
sys/sys/ptrace.h
290
int proc_write_dbregs32(struct thread *_td, struct dbreg32 *_dbreg32);
sys/sys/reg.h
47
typedef bool (regset_get)(struct regset *, struct thread *, void *,
sys/sys/reg.h
49
typedef bool (regset_set)(struct regset *, struct thread *, void *, size_t);
sys/sys/reg.h
67
int fill_regs(struct thread *, struct reg *);
sys/sys/reg.h
68
int set_regs(struct thread *, struct reg *);
sys/sys/reg.h
69
int fill_fpregs(struct thread *, struct fpreg *);
sys/sys/reg.h
70
int set_fpregs(struct thread *, struct fpreg *);
sys/sys/reg.h
71
int fill_dbregs(struct thread *, struct dbreg *);
sys/sys/reg.h
72
int set_dbregs(struct thread *, struct dbreg *);
sys/sys/reg.h
74
int fill_regs32(struct thread *, struct reg32 *);
sys/sys/reg.h
75
int set_regs32(struct thread *, struct reg32 *);
sys/sys/reg.h
77
int fill_fpregs32(struct thread *, struct fpreg32 *);
sys/sys/reg.h
80
int set_fpregs32(struct thread *, struct fpreg32 *);
sys/sys/reg.h
83
int fill_dbregs32(struct thread *, struct dbreg32 *);
sys/sys/reg.h
86
int set_dbregs32(struct thread *, struct dbreg32 *);
sys/sys/resourcevar.h
137
struct thread;
sys/sys/resourcevar.h
139
void addupc_intr(struct thread *td, uintfptr_t pc, u_int ticks);
sys/sys/resourcevar.h
140
void addupc_task(struct thread *td, uintfptr_t pc, u_int ticks);
sys/sys/resourcevar.h
153
int kern_proc_setrlimit(struct thread *td, struct proc *p, u_int which,
sys/sys/resourcevar.h
158
rlim_t lim_cur(struct thread *td, int which);
sys/sys/resourcevar.h
161
struct thread *_td = (td); \
sys/sys/resourcevar.h
180
rlim_t lim_max(struct thread *td, int which);
sys/sys/resourcevar.h
182
void lim_rlimit(struct thread *td, int which, struct rlimit *rlp);
sys/sys/resourcevar.h
190
void rufetchtd(struct thread *td, struct rusage *ru);
sys/sys/resourcevar.h
191
void ruxagg(struct proc *p, struct thread *td);
sys/sys/resourcevar.h
192
void ruxagg_locked(struct proc *p, struct thread *td);
sys/sys/resourcevar.h
94
void limbatch_add(struct limbatch *lb, struct thread *td);
sys/sys/rtprio.h
80
struct thread;
sys/sys/rtprio.h
81
int rtp_to_pri(struct rtprio *, struct thread *);
sys/sys/rtprio.h
82
void pri_to_rtp(struct thread *, struct rtprio *);
sys/sys/runq.h
105
void runq_add(struct runq *, struct thread *, int _flags);
sys/sys/runq.h
106
void runq_add_idx(struct runq *, struct thread *, int _idx, int _flags);
sys/sys/runq.h
107
bool runq_remove(struct runq *, struct thread *);
sys/sys/runq.h
117
struct thread *runq_first_thread_range(struct runq *const rq,
sys/sys/runq.h
121
struct thread *runq_choose(struct runq *);
sys/sys/runq.h
122
struct thread *runq_choose_fuzz(struct runq *, int _fuzz);
sys/sys/runq.h
46
struct thread;
sys/sys/runq.h
84
TAILQ_HEAD(rq_queue, thread);
sys/sys/sched.h
104
void sched_exit_thread(struct thread *td, struct thread *child);
sys/sys/sched.h
105
u_int sched_estcpu(struct thread *td);
sys/sys/sched.h
106
void sched_fork_thread(struct thread *td, struct thread *child);
sys/sys/sched.h
107
void sched_ithread_prio(struct thread *td, u_char prio);
sys/sys/sched.h
108
void sched_lend_prio(struct thread *td, u_char prio);
sys/sys/sched.h
109
void sched_lend_user_prio(struct thread *td, u_char pri);
sys/sys/sched.h
110
void sched_lend_user_prio_cond(struct thread *td, u_char pri);
sys/sys/sched.h
111
fixpt_t sched_pctcpu(struct thread *td);
sys/sys/sched.h
112
void sched_prio(struct thread *td, u_char prio);
sys/sys/sched.h
113
void sched_sleep(struct thread *td, int prio);
sys/sys/sched.h
114
void sched_switch(struct thread *td, int flags);
sys/sys/sched.h
115
void sched_throw(struct thread *td);
sys/sys/sched.h
116
void sched_unlend_prio(struct thread *td, u_char prio);
sys/sys/sched.h
117
void sched_user_prio(struct thread *td, u_char prio);
sys/sys/sched.h
118
void sched_userret_slowpath(struct thread *td);
sys/sys/sched.h
121
sched_userret(struct thread *td)
sys/sys/sched.h
142
void sched_add(struct thread *td, int flags);
sys/sys/sched.h
143
struct thread *sched_choose(void);
sys/sys/sched.h
144
void sched_clock(struct thread *td, int cnt);
sys/sys/sched.h
146
void sched_preempt(struct thread *td);
sys/sys/sched.h
147
void sched_relinquish(struct thread *td);
sys/sys/sched.h
148
void sched_rem(struct thread *td);
sys/sys/sched.h
149
void sched_wakeup(struct thread *td, int srqflags);
sys/sys/sched.h
155
void sched_bind(struct thread *td, int cpu);
sys/sys/sched.h
157
void sched_unbind(struct thread *td);
sys/sys/sched.h
159
int sched_is_bound(struct thread *td);
sys/sys/sched.h
160
void sched_affinity(struct thread *td);
sys/sys/sched.h
173
char *sched_tdname(struct thread *td);
sys/sys/sched.h
174
void sched_clear_tdname(struct thread *td);
sys/sys/sched.h
191
void ast_scheduler(struct thread *td, int tda);
sys/sys/sched.h
277
void (*exit)(struct proc *p, struct thread *childtd);
sys/sys/sched.h
278
void (*fork)(struct thread *td, struct thread *childtd);
sys/sys/sched.h
279
void (*fork_exit)(struct thread *td);
sys/sys/sched.h
280
void (*class)(struct thread *td, int class);
sys/sys/sched.h
283
void (*exit_thread)(struct thread *td, struct thread *child);
sys/sys/sched.h
284
u_int (*estcpu)(struct thread *td);
sys/sys/sched.h
285
void (*fork_thread)(struct thread *td, struct thread *child);
sys/sys/sched.h
286
void (*ithread_prio)(struct thread *td, u_char prio);
sys/sys/sched.h
287
void (*lend_prio)(struct thread *td, u_char prio);
sys/sys/sched.h
288
void (*lend_user_prio)(struct thread *td, u_char pri);
sys/sys/sched.h
289
void (*lend_user_prio_cond)(struct thread *td, u_char pri);
sys/sys/sched.h
290
fixpt_t (*pctcpu)(struct thread *td);
sys/sys/sched.h
291
void (*prio)(struct thread *td, u_char prio);
sys/sys/sched.h
292
void (*sleep)(struct thread *td, int prio);
sys/sys/sched.h
293
void (*sswitch)(struct thread *td, int flags);
sys/sys/sched.h
294
void (*throw)(struct thread *td);
sys/sys/sched.h
295
void (*unlend_prio)(struct thread *td, u_char prio);
sys/sys/sched.h
296
void (*user_prio)(struct thread *td, u_char prio);
sys/sys/sched.h
297
void (*userret_slowpath)(struct thread *td);
sys/sys/sched.h
298
void (*add)(struct thread *td, int flags);
sys/sys/sched.h
299
struct thread *(*choose)(void);
sys/sys/sched.h
300
void (*clock)(struct thread *td, int cnt);
sys/sys/sched.h
302
void (*preempt)(struct thread *td);
sys/sys/sched.h
303
void (*relinquish)(struct thread *td);
sys/sys/sched.h
304
void (*rem)(struct thread *td);
sys/sys/sched.h
305
void (*wakeup)(struct thread *td, int srqflags);
sys/sys/sched.h
306
void (*bind)(struct thread *td, int cpu);
sys/sys/sched.h
307
void (*unbind)(struct thread *td);
sys/sys/sched.h
308
int (*is_bound)(struct thread *td);
sys/sys/sched.h
309
void (*affinity)(struct thread *td);
sys/sys/sched.h
312
char *(*tdname)(struct thread *td);
sys/sys/sched.h
313
void (*clear_tdname)(struct thread *td);
sys/sys/sched.h
75
struct thread;
sys/sys/sched.h
93
void sched_exit(struct proc *p, struct thread *childtd);
sys/sys/sched.h
94
void sched_fork(struct thread *td, struct thread *childtd);
sys/sys/sched.h
95
void sched_fork_exit(struct thread *td);
sys/sys/sched.h
96
void sched_class(struct thread *td, int class);
sys/sys/selinfo.h
54
void selrecord(struct thread *selector, struct selinfo *sip);
sys/sys/selinfo.h
57
void seltdfini(struct thread *td);
sys/sys/sem.h
145
int kern_get_sema(struct thread *td, struct semid_kernel **res,
sys/sys/sglist.h
58
struct thread;
sys/sys/sglist.h
99
struct thread *td);
sys/sys/shm.h
163
int kern_get_shmsegs(struct thread *td, struct shmid_kernel **res,
sys/sys/signalvar.h
328
struct thread;
sys/sys/signalvar.h
382
int cursig(struct thread *td);
sys/sys/signalvar.h
392
int ptracestop(struct thread *td, int sig, ksiginfo_t *si);
sys/sys/signalvar.h
399
int sig_ast_checksusp(struct thread *td);
sys/sys/signalvar.h
400
int sig_ast_needsigchk(struct thread *td);
sys/sys/signalvar.h
402
void sigexit(struct thread *td, int sig);
sys/sys/signalvar.h
403
int sigev_findtd(struct proc *p, struct sigevent *sigev, struct thread **);
sys/sys/signalvar.h
404
void sigfastblock_clear(struct thread *td);
sys/sys/signalvar.h
405
void sigfastblock_fetch(struct thread *td);
sys/sys/signalvar.h
409
void signotify(struct thread *td);
sys/sys/signalvar.h
415
void tdksignal(struct thread *td, int sig, ksiginfo_t *ksi);
sys/sys/signalvar.h
416
int tdsendsignal(struct proc *p, struct thread *td, int sig,
sys/sys/signalvar.h
418
void tdsigcleanup(struct thread *td);
sys/sys/signalvar.h
419
void tdsignal(struct thread *td, int sig);
sys/sys/signalvar.h
420
void trapsignal(struct thread *td, ksiginfo_t *ksi);
sys/sys/sleepqueue.h
71
struct thread;
sys/sys/sleepqueue.h
86
void sleepq_abort(struct thread *td, int intrval);
sys/sys/sleepqueue.h
91
void sleepq_chains_remove_matching(bool (*matches)(struct thread *));
sys/sys/sleepqueue.h
96
void sleepq_remove(struct thread *td, const void *wchan);
sys/sys/sleepqueue.h
98
bool (*matches)(struct thread *), int pri);
sys/sys/sleepqueue.h
99
void sleepq_remove_nested(struct thread *td);
sys/sys/smp.h
250
struct thread;
sys/sys/smp.h
259
void forward_signal(struct thread *);
sys/sys/sockbuf.h
247
struct thread *td);
sys/sys/sockbuf.h
249
u_long buf_max, struct thread *td);
sys/sys/sockbuf.h
72
struct thread;
sys/sys/socketvar.h
491
int getsock_cap(struct thread *td, int fd, const cap_rights_t *rightsp,
sys/sys/socketvar.h
493
int getsock(struct thread *td, int fd, const cap_rights_t *rightsp,
sys/sys/socketvar.h
503
int sobind(struct socket *so, struct sockaddr *nam, struct thread *td);
sys/sys/socketvar.h
505
struct thread *td);
sys/sys/socketvar.h
507
int soconnect(struct socket *so, struct sockaddr *nam, struct thread *td);
sys/sys/socketvar.h
509
struct thread *td);
sys/sys/socketvar.h
512
struct ucred *cred, struct thread *td);
sys/sys/socketvar.h
517
int solisten(struct socket *so, int backlog, struct thread *td);
sys/sys/socketvar.h
529
int sopoll_generic(struct socket *so, int events, struct thread *td);
sys/sys/socketvar.h
549
struct thread *td);
sys/sys/socketvar.h
554
int flags, struct thread *td);
sys/sys/socketvar.h
557
int flags, struct thread *td);
sys/sys/socketvar.h
569
struct thread *td);
sys/sys/socketvar.h
601
int pr_listen_notsupp(struct socket *so, int backlog, struct thread *td);
sys/sys/sockopt.h
39
struct thread;
sys/sys/sockopt.h
55
struct thread *sopt_td; /* calling thread or null if kernel */
sys/sys/stack.h
72
struct thread;
sys/sys/stack.h
74
int stack_save_td(struct stack *, struct thread *);
sys/sys/sx.h
126
int sx_chain(struct thread *td, struct thread **ownerp);
sys/sys/sx.h
157
__sx_xlock(struct sx *sx, struct thread *td, int opts, const char *file,
sys/sys/sx.h
173
__sx_xunlock(struct sx *sx, struct thread *td, const char *file, int line)
sys/sys/sx.h
248
(struct thread *)SX_OWNER((sx)->sx_lock))
sys/sys/sx.h
96
((v & SX_LOCK_SHARED) ? NULL : (struct thread *)SX_OWNER(v))
sys/sys/syscallsubr.h
100
int kern_cap_ioctls_limit(struct thread *td, int fd, u_long *cmds,
sys/sys/syscallsubr.h
102
int kern_cap_rights_limit(struct thread *td, int fd, cap_rights_t *rights);
sys/sys/syscallsubr.h
103
int kern_chdir(struct thread *td, const char *path, enum uio_seg pathseg);
sys/sys/syscallsubr.h
104
int kern_clock_getcpuclockid2(struct thread *td, id_t id, int which,
sys/sys/syscallsubr.h
106
int kern_clock_getres(struct thread *td, clockid_t clock_id,
sys/sys/syscallsubr.h
108
int kern_clock_gettime(struct thread *td, clockid_t clock_id,
sys/sys/syscallsubr.h
110
int kern_clock_nanosleep(struct thread *td, clockid_t clock_id, int flags,
sys/sys/syscallsubr.h
112
int kern_clock_settime(struct thread *td, clockid_t clock_id,
sys/sys/syscallsubr.h
114
void kern_thread_cputime(struct thread *targettd, struct timespec *ats);
sys/sys/syscallsubr.h
116
int kern_close_range(struct thread *td, int flags, u_int lowfd, u_int highfd);
sys/sys/syscallsubr.h
117
int kern_close(struct thread *td, int fd);
sys/sys/syscallsubr.h
118
int kern_connectat(struct thread *td, int dirfd, int fd,
sys/sys/syscallsubr.h
120
int kern_copy_file_range(struct thread *td, int infd, off_t *inoffp,
sys/sys/syscallsubr.h
122
int kern_cpuset_getaffinity(struct thread *td, cpulevel_t level,
sys/sys/syscallsubr.h
124
int kern_cpuset_setaffinity(struct thread *td, cpulevel_t level,
sys/sys/syscallsubr.h
126
int kern_cpuset_getdomain(struct thread *td, cpulevel_t level,
sys/sys/syscallsubr.h
129
int kern_cpuset_setdomain(struct thread *td, cpulevel_t level,
sys/sys/syscallsubr.h
132
int kern_cpuset_getid(struct thread *td, cpulevel_t level,
sys/sys/syscallsubr.h
134
int kern_cpuset_setid(struct thread *td, cpuwhich_t which,
sys/sys/syscallsubr.h
136
int kern_dup(struct thread *td, u_int mode, int flags, int old, int new);
sys/sys/syscallsubr.h
137
int kern_execve(struct thread *td, struct image_args *args,
sys/sys/syscallsubr.h
139
void kern_exit(struct thread *, int, int);
sys/sys/syscallsubr.h
140
int kern_extattr_delete_fd(struct thread *td, int fd, int attrnamespace,
sys/sys/syscallsubr.h
142
int kern_extattr_delete_fp(struct thread *td, struct file *fp,
sys/sys/syscallsubr.h
144
int kern_extattr_delete_path(struct thread *td, const char *path,
sys/sys/syscallsubr.h
147
int kern_extattr_get_fd(struct thread *td, int fd, int attrnamespace,
sys/sys/syscallsubr.h
149
int kern_extattr_get_fp(struct thread *td, struct file *fp,
sys/sys/syscallsubr.h
152
int kern_extattr_get_path(struct thread *td, const char *path,
sys/sys/syscallsubr.h
155
int kern_extattr_list_fd(struct thread *td, int fd, int attrnamespace,
sys/sys/syscallsubr.h
157
int kern_extattr_list_fp(struct thread *td, struct file *fp,
sys/sys/syscallsubr.h
159
int kern_extattr_list_path(struct thread *td, const char *path,
sys/sys/syscallsubr.h
162
int kern_extattr_set_fd(struct thread *td, int fd, int attrnamespace,
sys/sys/syscallsubr.h
164
int kern_extattr_set_fp(struct thread *td, struct file *fp,
sys/sys/syscallsubr.h
167
int kern_extattr_set_path(struct thread *td, const char *path,
sys/sys/syscallsubr.h
170
int kern_exterrctl(struct thread *td, u_int op, u_int flags, void *ptr);
sys/sys/syscallsubr.h
171
int kern_fchmodat(struct thread *td, int fd, const char *path,
sys/sys/syscallsubr.h
173
int kern_fchownat(struct thread *td, int fd, const char *path,
sys/sys/syscallsubr.h
175
int kern_fcntl(struct thread *td, int fd, int cmd, intptr_t arg);
sys/sys/syscallsubr.h
176
int kern_fcntl_freebsd(struct thread *td, int fd, int cmd, intptr_t arg);
sys/sys/syscallsubr.h
177
int kern_fhopen(struct thread *td, const struct fhandle *u_fhp, int flags);
sys/sys/syscallsubr.h
178
int kern_fhstat(struct thread *td, fhandle_t fh, struct stat *buf);
sys/sys/syscallsubr.h
179
int kern_fhstatfs(struct thread *td, fhandle_t fh, struct statfs *buf);
sys/sys/syscallsubr.h
180
int kern_filewrite(struct thread *td, int fd, struct file *fp,
sys/sys/syscallsubr.h
182
int kern_fpathconf(struct thread *td, int fd, int name, long *valuep);
sys/sys/syscallsubr.h
183
int kern_freebsd11_getfsstat(struct thread *td,
sys/sys/syscallsubr.h
185
int kern_frmdirat(struct thread *td, int dfd, const char *path, int fd,
sys/sys/syscallsubr.h
187
int kern_fstat(struct thread *td, int fd, struct stat *sbp);
sys/sys/syscallsubr.h
188
int kern_fstatfs(struct thread *td, int fd, struct statfs *buf);
sys/sys/syscallsubr.h
189
int kern_fsync(struct thread *td, int fd, bool fullsync);
sys/sys/syscallsubr.h
190
int kern_ftruncate(struct thread *td, int fd, off_t length);
sys/sys/syscallsubr.h
191
int kern_funlinkat(struct thread *td, int dfd, const char *path, int fd,
sys/sys/syscallsubr.h
193
int kern_futimes(struct thread *td, int fd, const struct timeval *tptr,
sys/sys/syscallsubr.h
195
int kern_futimens(struct thread *td, int fd, const struct timespec *tptr,
sys/sys/syscallsubr.h
197
int kern_getdirentries(struct thread *td, int fd, char *buf, size_t count,
sys/sys/syscallsubr.h
199
int kern_getfhat(struct thread *td, int flags, int fd, const char *path,
sys/sys/syscallsubr.h
201
int kern_getfsstat(struct thread *td, struct statfs **buf, size_t bufsize,
sys/sys/syscallsubr.h
203
int kern_getitimer(struct thread *, u_int, struct itimerval *);
sys/sys/syscallsubr.h
204
int kern_getppid(struct thread *);
sys/sys/syscallsubr.h
205
int kern_getpeername(struct thread *td, int fd, struct sockaddr *sa);
sys/sys/syscallsubr.h
206
int kern_getpriority(struct thread *td, int which, int who);
sys/sys/syscallsubr.h
207
int kern_getrusage(struct thread *td, int who, struct rusage *rup);
sys/sys/syscallsubr.h
208
int kern_getsid(struct thread *td, pid_t pid);
sys/sys/syscallsubr.h
209
int kern_getsockname(struct thread *td, int fd, struct sockaddr *sa);
sys/sys/syscallsubr.h
210
int kern_getsockopt(struct thread *td, int s, int level, int name,
sys/sys/syscallsubr.h
212
int kern_ioctl(struct thread *td, int fd, u_long com, caddr_t data);
sys/sys/syscallsubr.h
213
int kern_jail(struct thread *td, struct jail *j);
sys/sys/syscallsubr.h
214
int kern_jail_get(struct thread *td, struct uio *options, int flags);
sys/sys/syscallsubr.h
215
int kern_jail_set(struct thread *td, struct uio *options, int flags);
sys/sys/syscallsubr.h
216
int kern_kcmp(struct thread *td, pid_t pid1, pid_t pid2, int type,
sys/sys/syscallsubr.h
218
int kern_kevent(struct thread *td, int fd, int nchanges, int nevents,
sys/sys/syscallsubr.h
220
int kern_kevent_anonymous(struct thread *td, int nevents,
sys/sys/syscallsubr.h
222
int kern_kevent_fp(struct thread *td, struct file *fp, int nchanges,
sys/sys/syscallsubr.h
225
int kern_kexec_load(struct thread *td, u_long entry,
sys/sys/syscallsubr.h
227
int kern_kill(struct thread *td, pid_t pid, int signum);
sys/sys/syscallsubr.h
228
int kern_kldload(struct thread *td, const char *file, int *fileid);
sys/sys/syscallsubr.h
229
int kern_kldstat(struct thread *td, int fileid, struct kld_file_stat *stat);
sys/sys/syscallsubr.h
230
int kern_kldunload(struct thread *td, int fileid, int flags);
sys/sys/syscallsubr.h
231
int kern_kmq_notify(struct thread *, int, struct sigevent *);
sys/sys/syscallsubr.h
232
int kern_kmq_open(struct thread *, const char *, int, mode_t,
sys/sys/syscallsubr.h
234
int kern_kmq_setattr(struct thread *, int, const struct mq_attr *,
sys/sys/syscallsubr.h
236
int kern_kmq_timedreceive(struct thread *, int, char *,
sys/sys/syscallsubr.h
238
int kern_kmq_timedsend(struct thread *td, int, const char *,
sys/sys/syscallsubr.h
240
int kern_kqueue(struct thread *td, int flags, bool cponfork,
sys/sys/syscallsubr.h
242
int kern_linkat(struct thread *td, int fd1, int fd2, const char *path1,
sys/sys/syscallsubr.h
244
int kern_listen(struct thread *td, int s, int backlog);
sys/sys/syscallsubr.h
245
int kern_lseek(struct thread *td, int fd, off_t offset, int whence);
sys/sys/syscallsubr.h
246
int kern_lutimes(struct thread *td, const char *path, enum uio_seg pathseg,
sys/sys/syscallsubr.h
248
int kern_madvise(struct thread *td, uintptr_t addr, size_t len, int behav);
sys/sys/syscallsubr.h
249
int kern_membarrier(struct thread *td, int cmd, unsigned flags,
sys/sys/syscallsubr.h
251
int kern_mincore(struct thread *td, uintptr_t addr, size_t len, char *vec);
sys/sys/syscallsubr.h
252
int kern_minherit(struct thread *td, uintptr_t addr, size_t len,
sys/sys/syscallsubr.h
254
int kern_mkdirat(struct thread *td, int fd, const char *path,
sys/sys/syscallsubr.h
256
int kern_mkfifoat(struct thread *td, int fd, const char *path,
sys/sys/syscallsubr.h
258
int kern_mknodat(struct thread *td, int fd, const char *path,
sys/sys/syscallsubr.h
262
int kern_mmap(struct thread *td, const struct mmap_req *mrp);
sys/sys/syscallsubr.h
263
int kern_mmap_racct_check(struct thread *td, struct vm_map *map,
sys/sys/syscallsubr.h
266
int kern_mprotect(struct thread *td, uintptr_t addr, size_t size,
sys/sys/syscallsubr.h
268
int kern_msgctl(struct thread *, int, int, struct msqid_ds *);
sys/sys/syscallsubr.h
269
int kern_msgrcv(struct thread *, int, void *, size_t, long, int, long *);
sys/sys/syscallsubr.h
270
int kern_msgsnd(struct thread *, int, const void *, size_t, int, long);
sys/sys/syscallsubr.h
271
int kern_msync(struct thread *td, uintptr_t addr, size_t size, int flags);
sys/sys/syscallsubr.h
272
int kern_munlock(struct thread *td, uintptr_t addr, size_t size);
sys/sys/syscallsubr.h
273
int kern_munmap(struct thread *td, uintptr_t addr, size_t size);
sys/sys/syscallsubr.h
274
int kern_nanosleep(struct thread *td, struct timespec *rqt,
sys/sys/syscallsubr.h
276
int kern_nosys(struct thread *td, int dummy);
sys/sys/syscallsubr.h
277
int kern_ntp_adjtime(struct thread *td, struct timex *ntv, int *retvalp);
sys/sys/syscallsubr.h
278
int kern_ogetdirentries(struct thread *td, struct ogetdirentries_args *uap,
sys/sys/syscallsubr.h
280
int kern_ommap(struct thread *td, uintptr_t hint, int len, int oprot,
sys/sys/syscallsubr.h
282
int kern_openat(struct thread *td, int dirfd, const char *path,
sys/sys/syscallsubr.h
284
int kern_openatfp(struct thread *td, int dirfd, const char *path,
sys/sys/syscallsubr.h
286
int kern_pathconf(struct thread *td, const char *path,
sys/sys/syscallsubr.h
288
int kern_pipe(struct thread *td, int fildes[2], int flags,
sys/sys/syscallsubr.h
290
int kern_poll(struct thread *td, struct pollfd *fds, u_int nfds,
sys/sys/syscallsubr.h
292
int kern_poll_kfds(struct thread *td, struct pollfd *fds, u_int nfds,
sys/sys/syscallsubr.h
295
int kern_posix_error(struct thread *td, int error);
sys/sys/syscallsubr.h
296
int kern_posix_fadvise(struct thread *td, int fd, off_t offset, off_t len,
sys/sys/syscallsubr.h
298
int kern_posix_fallocate(struct thread *td, int fd, off_t offset,
sys/sys/syscallsubr.h
300
int kern_fspacectl(struct thread *td, int fd, int cmd,
sys/sys/syscallsubr.h
302
int kern_pdwait(struct thread *td, int fd, int *status,
sys/sys/syscallsubr.h
304
int kern_procctl(struct thread *td, enum idtype idtype, id_t id, int com,
sys/sys/syscallsubr.h
306
int kern_pread(struct thread *td, int fd, void *buf, size_t nbyte,
sys/sys/syscallsubr.h
308
int kern_preadv(struct thread *td, int fd, struct uio *auio, off_t offset);
sys/sys/syscallsubr.h
309
int kern_pselect(struct thread *td, int nd, fd_set *in, fd_set *ou,
sys/sys/syscallsubr.h
311
int kern_ptrace(struct thread *td, int req, pid_t pid, void *addr,
sys/sys/syscallsubr.h
313
int kern_pwrite(struct thread *td, int fd, const void *buf, size_t nbyte,
sys/sys/syscallsubr.h
315
int kern_pwritev(struct thread *td, int fd, struct uio *auio, off_t offset);
sys/sys/syscallsubr.h
316
int kern_readlinkat(struct thread *td, int fd, const char *path,
sys/sys/syscallsubr.h
318
int kern_readv(struct thread *td, int fd, struct uio *auio);
sys/sys/syscallsubr.h
319
int kern_recvit(struct thread *td, int s, struct msghdr *mp,
sys/sys/syscallsubr.h
321
int kern_renameat(struct thread *td, int oldfd, const char *old, int newfd,
sys/sys/syscallsubr.h
323
int kern_sched_getparam(struct thread *td, struct thread *targettd,
sys/sys/syscallsubr.h
325
int kern_sched_getscheduler(struct thread *td, struct thread *targettd,
sys/sys/syscallsubr.h
327
int kern_sched_setparam(struct thread *td, struct thread *targettd,
sys/sys/syscallsubr.h
329
int kern_sched_setscheduler(struct thread *td, struct thread *targettd,
sys/sys/syscallsubr.h
331
int kern_sched_rr_get_interval(struct thread *td, pid_t pid,
sys/sys/syscallsubr.h
333
int kern_sched_rr_get_interval_td(struct thread *td, struct thread *targettd,
sys/sys/syscallsubr.h
335
int kern_semctl(struct thread *td, int semid, int semnum, int cmd,
sys/sys/syscallsubr.h
337
int kern_select(struct thread *td, int nd, fd_set *fd_in, fd_set *fd_ou,
sys/sys/syscallsubr.h
339
int kern_sendit(struct thread *td, int s, struct msghdr *mp, int flags,
sys/sys/syscallsubr.h
341
int kern_setcred(struct thread *const td, const u_int flags,
sys/sys/syscallsubr.h
343
int kern_setgroups(struct thread *td, int *ngrpp, gid_t *groups);
sys/sys/syscallsubr.h
344
int kern_setitimer(struct thread *, u_int, struct itimerval *,
sys/sys/syscallsubr.h
346
int kern_setpriority(struct thread *td, int which, int who, int prio);
sys/sys/syscallsubr.h
347
int kern_setrlimit(struct thread *, u_int, struct rlimit *);
sys/sys/syscallsubr.h
348
int kern_setsockopt(struct thread *td, int s, int level, int name,
sys/sys/syscallsubr.h
350
int kern_settimeofday(struct thread *td, struct timeval *tv,
sys/sys/syscallsubr.h
352
int kern_shm_open(struct thread *td, const char *userpath, int flags,
sys/sys/syscallsubr.h
354
int kern_shm_open2(struct thread *td, const char *path, int flags,
sys/sys/syscallsubr.h
357
int kern_shmat(struct thread *td, int shmid, const void *shmaddr,
sys/sys/syscallsubr.h
359
int kern_shmctl(struct thread *td, int shmid, int cmd, void *buf,
sys/sys/syscallsubr.h
361
int kern_shutdown(struct thread *td, int s, int how);
sys/sys/syscallsubr.h
362
int kern_sigaction(struct thread *td, int sig, const struct sigaction *act,
sys/sys/syscallsubr.h
364
int kern_sigaltstack(struct thread *td, stack_t *ss, stack_t *oss);
sys/sys/syscallsubr.h
365
int kern_sigprocmask(struct thread *td, int how,
sys/sys/syscallsubr.h
367
int kern_sigsuspend(struct thread *td, sigset_t mask);
sys/sys/syscallsubr.h
368
int kern_sigtimedwait(struct thread *td, sigset_t waitset,
sys/sys/syscallsubr.h
370
int kern_sigqueue(struct thread *td, pid_t pid, int signum,
sys/sys/syscallsubr.h
372
int kern_socket(struct thread *td, int domain, int type, int protocol);
sys/sys/syscallsubr.h
373
int kern_statat(struct thread *td, int flag, int fd, const char *path,
sys/sys/syscallsubr.h
375
int kern_specialfd(struct thread *td, int type, void *arg);
sys/sys/syscallsubr.h
376
int kern_statfs(struct thread *td, const char *path, enum uio_seg pathseg,
sys/sys/syscallsubr.h
378
int kern_symlinkat(struct thread *td, const char *path1, int fd,
sys/sys/syscallsubr.h
380
int kern_sync(struct thread *td);
sys/sys/syscallsubr.h
381
int kern_ktimer_create(struct thread *td, clockid_t clock_id,
sys/sys/syscallsubr.h
383
int kern_ktimer_delete(struct thread *, int);
sys/sys/syscallsubr.h
384
int kern_ktimer_settime(struct thread *td, int timer_id, int flags,
sys/sys/syscallsubr.h
386
int kern_ktimer_gettime(struct thread *td, int timer_id,
sys/sys/syscallsubr.h
388
int kern_ktimer_getoverrun(struct thread *td, int timer_id);
sys/sys/syscallsubr.h
389
int kern_semop(struct thread *td, int usemid, struct sembuf *usops,
sys/sys/syscallsubr.h
391
int kern_thr_alloc(struct proc *, int pages, struct thread **);
sys/sys/syscallsubr.h
392
int kern_thr_exit(struct thread *td);
sys/sys/syscallsubr.h
393
int kern_thr_new(struct thread *td, struct thr_param *param);
sys/sys/syscallsubr.h
394
int kern_thr_suspend(struct thread *td, struct timespec *tsp);
sys/sys/syscallsubr.h
395
int kern_timerfd_create(struct thread *td, int clockid, int flags);
sys/sys/syscallsubr.h
396
int kern_timerfd_gettime(struct thread *td, int fd,
sys/sys/syscallsubr.h
398
int kern_timerfd_settime(struct thread *td, int fd, int flags,
sys/sys/syscallsubr.h
400
int kern_truncate(struct thread *td, const char *path,
sys/sys/syscallsubr.h
402
int kern_utimesat(struct thread *td, int fd, const char *path,
sys/sys/syscallsubr.h
405
int kern_utimensat(struct thread *td, int fd, const char *path,
sys/sys/syscallsubr.h
408
int kern_wait(struct thread *td, pid_t pid, int *status, int options,
sys/sys/syscallsubr.h
410
int kern_wait6(struct thread *td, enum idtype idtype, id_t id, int *status,
sys/sys/syscallsubr.h
412
int kern_writev(struct thread *td, int fd, struct uio *auio);
sys/sys/syscallsubr.h
413
int kern_socketpair(struct thread *td, int domain, int type, int protocol,
sys/sys/syscallsubr.h
415
int kern_unmount(struct thread *td, const char *path, uint64_t flags);
sys/sys/syscallsubr.h
417
int user_cpuset_getaffinity(struct thread *td, cpulevel_t level,
sys/sys/syscallsubr.h
420
int user_cpuset_setaffinity(struct thread *td, cpulevel_t level,
sys/sys/syscallsubr.h
430
int freebsd11_kern_getdirentries(struct thread *td, int fd, char *ubuf,
sys/sys/syscallsubr.h
86
int kern___getcwd(struct thread *td, char *buf, enum uio_seg bufseg,
sys/sys/syscallsubr.h
88
int kern_abort2(struct thread *td, const char *why, int nargs,
sys/sys/syscallsubr.h
90
int kern_accept(struct thread *td, int s, struct sockaddr *sa,
sys/sys/syscallsubr.h
92
int kern_accept4(struct thread *td, int s, struct sockaddr *sa,
sys/sys/syscallsubr.h
94
int kern_accessat(struct thread *td, int fd, const char *path,
sys/sys/syscallsubr.h
96
int kern_adjtime(struct thread *td, struct timeval *delta,
sys/sys/syscallsubr.h
98
int kern_bindat(struct thread *td, int dirfd, int fd, struct sockaddr *sa);
sys/sys/syscallsubr.h
99
int kern_break(struct thread *td, uintptr_t *addr);
sys/sys/sysctl.h
1206
int kernel_sysctl(struct thread *td, int *name, u_int namelen, void *old,
sys/sys/sysctl.h
1209
int kernel_sysctlbyname(struct thread *td, char *name, void *old,
sys/sys/sysctl.h
1212
int userland_sysctl(struct thread *td, int *name, u_int namelen, void *old,
sys/sys/sysctl.h
1220
int kern___sysctlbyname(struct thread *td, const char *name,
sys/sys/sysctl.h
161
struct thread;
sys/sys/sysctl.h
163
struct thread *td; /* used for access checking */
sys/sys/sysent.h
112
int (*sv_coredump)(struct thread *, struct coredump_writer *,
sys/sys/sysent.h
117
void (*sv_elf_core_prepare_notes)(struct thread *,
sys/sys/sysent.h
130
void (*sv_setregs)(struct thread *, struct image_params *,
sys/sys/sysent.h
135
void (*sv_set_syscall_retval)(struct thread *, int);
sys/sys/sysent.h
136
int (*sv_fetch_syscall_args)(struct thread *);
sys/sys/sysent.h
144
void (*sv_schedtail)(struct thread *);
sys/sys/sysent.h
145
void (*sv_thread_detach)(struct thread *);
sys/sys/sysent.h
146
int (*sv_trap)(struct thread *);
sys/sys/sysent.h
153
void (*sv_onexec_old)(struct thread *td);
sys/sys/sysent.h
157
void (*sv_ontdexit)(struct thread *td);
sys/sys/sysent.h
158
int (*sv_setid_allowed)(struct thread *td,
sys/sys/sysent.h
160
void (*sv_set_fork_retval)(struct thread *);
sys/sys/sysent.h
208
int nosys(struct thread *, struct nosys_args *);
sys/sys/sysent.h
328
int lkmnosys(struct thread *, struct nosys_args *);
sys/sys/sysent.h
329
int lkmressys(struct thread *, struct nosys_args *);
sys/sys/sysent.h
331
void syscall_thread_enter(struct thread *td, struct sysent **se);
sys/sys/sysent.h
332
void syscall_thread_exit(struct thread *td, struct sysent *se);
sys/sys/sysent.h
343
void exec_onexec_old(struct thread *td);
sys/sys/sysent.h
39
struct thread;
sys/sys/sysent.h
48
typedef int sy_call_t(struct thread *, void *);
sys/sys/sysproto.h
1944
int sys__exit(struct thread *, struct _exit_args *);
sys/sys/sysproto.h
1945
int sys_fork(struct thread *, struct fork_args *);
sys/sys/sysproto.h
1946
int sys_read(struct thread *, struct read_args *);
sys/sys/sysproto.h
1947
int sys_write(struct thread *, struct write_args *);
sys/sys/sysproto.h
1948
int sys_open(struct thread *, struct open_args *);
sys/sys/sysproto.h
1949
int sys_close(struct thread *, struct close_args *);
sys/sys/sysproto.h
1950
int sys_wait4(struct thread *, struct wait4_args *);
sys/sys/sysproto.h
1951
int sys_link(struct thread *, struct link_args *);
sys/sys/sysproto.h
1952
int sys_unlink(struct thread *, struct unlink_args *);
sys/sys/sysproto.h
1953
int sys_chdir(struct thread *, struct chdir_args *);
sys/sys/sysproto.h
1954
int sys_fchdir(struct thread *, struct fchdir_args *);
sys/sys/sysproto.h
1955
int sys_chmod(struct thread *, struct chmod_args *);
sys/sys/sysproto.h
1956
int sys_chown(struct thread *, struct chown_args *);
sys/sys/sysproto.h
1957
int sys_break(struct thread *, struct break_args *);
sys/sys/sysproto.h
1958
int sys_getpid(struct thread *, struct getpid_args *);
sys/sys/sysproto.h
1959
int sys_mount(struct thread *, struct mount_args *);
sys/sys/sysproto.h
1960
int sys_unmount(struct thread *, struct unmount_args *);
sys/sys/sysproto.h
1961
int sys_setuid(struct thread *, struct setuid_args *);
sys/sys/sysproto.h
1962
int sys_getuid(struct thread *, struct getuid_args *);
sys/sys/sysproto.h
1963
int sys_geteuid(struct thread *, struct geteuid_args *);
sys/sys/sysproto.h
1964
int sys_ptrace(struct thread *, struct ptrace_args *);
sys/sys/sysproto.h
1965
int sys_recvmsg(struct thread *, struct recvmsg_args *);
sys/sys/sysproto.h
1966
int sys_sendmsg(struct thread *, struct sendmsg_args *);
sys/sys/sysproto.h
1967
int sys_recvfrom(struct thread *, struct recvfrom_args *);
sys/sys/sysproto.h
1968
int sys_accept(struct thread *, struct accept_args *);
sys/sys/sysproto.h
1969
int sys_getpeername(struct thread *, struct getpeername_args *);
sys/sys/sysproto.h
1970
int sys_getsockname(struct thread *, struct getsockname_args *);
sys/sys/sysproto.h
1971
int sys_access(struct thread *, struct access_args *);
sys/sys/sysproto.h
1972
int sys_chflags(struct thread *, struct chflags_args *);
sys/sys/sysproto.h
1973
int sys_fchflags(struct thread *, struct fchflags_args *);
sys/sys/sysproto.h
1974
int sys_sync(struct thread *, struct sync_args *);
sys/sys/sysproto.h
1975
int sys_kill(struct thread *, struct kill_args *);
sys/sys/sysproto.h
1976
int sys_getppid(struct thread *, struct getppid_args *);
sys/sys/sysproto.h
1977
int sys_dup(struct thread *, struct dup_args *);
sys/sys/sysproto.h
1978
int sys_getegid(struct thread *, struct getegid_args *);
sys/sys/sysproto.h
1979
int sys_profil(struct thread *, struct profil_args *);
sys/sys/sysproto.h
1980
int sys_ktrace(struct thread *, struct ktrace_args *);
sys/sys/sysproto.h
1981
int sys_getgid(struct thread *, struct getgid_args *);
sys/sys/sysproto.h
1982
int sys_getlogin(struct thread *, struct getlogin_args *);
sys/sys/sysproto.h
1983
int sys_setlogin(struct thread *, struct setlogin_args *);
sys/sys/sysproto.h
1984
int sys_acct(struct thread *, struct acct_args *);
sys/sys/sysproto.h
1985
int sys_sigaltstack(struct thread *, struct sigaltstack_args *);
sys/sys/sysproto.h
1986
int sys_ioctl(struct thread *, struct ioctl_args *);
sys/sys/sysproto.h
1987
int sys_reboot(struct thread *, struct reboot_args *);
sys/sys/sysproto.h
1988
int sys_revoke(struct thread *, struct revoke_args *);
sys/sys/sysproto.h
1989
int sys_symlink(struct thread *, struct symlink_args *);
sys/sys/sysproto.h
1990
int sys_readlink(struct thread *, struct readlink_args *);
sys/sys/sysproto.h
1991
int sys_execve(struct thread *, struct execve_args *);
sys/sys/sysproto.h
1992
int sys_umask(struct thread *, struct umask_args *);
sys/sys/sysproto.h
1993
int sys_chroot(struct thread *, struct chroot_args *);
sys/sys/sysproto.h
1994
int sys_msync(struct thread *, struct msync_args *);
sys/sys/sysproto.h
1995
int sys_vfork(struct thread *, struct vfork_args *);
sys/sys/sysproto.h
1996
int sys_munmap(struct thread *, struct munmap_args *);
sys/sys/sysproto.h
1997
int sys_mprotect(struct thread *, struct mprotect_args *);
sys/sys/sysproto.h
1998
int sys_madvise(struct thread *, struct madvise_args *);
sys/sys/sysproto.h
1999
int sys_mincore(struct thread *, struct mincore_args *);
sys/sys/sysproto.h
2000
int sys_getpgrp(struct thread *, struct getpgrp_args *);
sys/sys/sysproto.h
2001
int sys_setpgid(struct thread *, struct setpgid_args *);
sys/sys/sysproto.h
2002
int sys_setitimer(struct thread *, struct setitimer_args *);
sys/sys/sysproto.h
2003
int sys_swapon(struct thread *, struct swapon_args *);
sys/sys/sysproto.h
2004
int sys_getitimer(struct thread *, struct getitimer_args *);
sys/sys/sysproto.h
2005
int sys_getdtablesize(struct thread *, struct getdtablesize_args *);
sys/sys/sysproto.h
2006
int sys_dup2(struct thread *, struct dup2_args *);
sys/sys/sysproto.h
2007
int sys_fcntl(struct thread *, struct fcntl_args *);
sys/sys/sysproto.h
2008
int sys_select(struct thread *, struct select_args *);
sys/sys/sysproto.h
2009
int sys_fsync(struct thread *, struct fsync_args *);
sys/sys/sysproto.h
2010
int sys_setpriority(struct thread *, struct setpriority_args *);
sys/sys/sysproto.h
2011
int sys_socket(struct thread *, struct socket_args *);
sys/sys/sysproto.h
2012
int sys_connect(struct thread *, struct connect_args *);
sys/sys/sysproto.h
2013
int sys_getpriority(struct thread *, struct getpriority_args *);
sys/sys/sysproto.h
2014
int sys_bind(struct thread *, struct bind_args *);
sys/sys/sysproto.h
2015
int sys_setsockopt(struct thread *, struct setsockopt_args *);
sys/sys/sysproto.h
2016
int sys_listen(struct thread *, struct listen_args *);
sys/sys/sysproto.h
2017
int sys_gettimeofday(struct thread *, struct gettimeofday_args *);
sys/sys/sysproto.h
2018
int sys_getrusage(struct thread *, struct getrusage_args *);
sys/sys/sysproto.h
2019
int sys_getsockopt(struct thread *, struct getsockopt_args *);
sys/sys/sysproto.h
2020
int sys_readv(struct thread *, struct readv_args *);
sys/sys/sysproto.h
2021
int sys_writev(struct thread *, struct writev_args *);
sys/sys/sysproto.h
2022
int sys_settimeofday(struct thread *, struct settimeofday_args *);
sys/sys/sysproto.h
2023
int sys_fchown(struct thread *, struct fchown_args *);
sys/sys/sysproto.h
2024
int sys_fchmod(struct thread *, struct fchmod_args *);
sys/sys/sysproto.h
2025
int sys_setreuid(struct thread *, struct setreuid_args *);
sys/sys/sysproto.h
2026
int sys_setregid(struct thread *, struct setregid_args *);
sys/sys/sysproto.h
2027
int sys_rename(struct thread *, struct rename_args *);
sys/sys/sysproto.h
2028
int sys_flock(struct thread *, struct flock_args *);
sys/sys/sysproto.h
2029
int sys_mkfifo(struct thread *, struct mkfifo_args *);
sys/sys/sysproto.h
2030
int sys_sendto(struct thread *, struct sendto_args *);
sys/sys/sysproto.h
2031
int sys_shutdown(struct thread *, struct shutdown_args *);
sys/sys/sysproto.h
2032
int sys_socketpair(struct thread *, struct socketpair_args *);
sys/sys/sysproto.h
2033
int sys_mkdir(struct thread *, struct mkdir_args *);
sys/sys/sysproto.h
2034
int sys_rmdir(struct thread *, struct rmdir_args *);
sys/sys/sysproto.h
2035
int sys_utimes(struct thread *, struct utimes_args *);
sys/sys/sysproto.h
2036
int sys_adjtime(struct thread *, struct adjtime_args *);
sys/sys/sysproto.h
2037
int sys_setsid(struct thread *, struct setsid_args *);
sys/sys/sysproto.h
2038
int sys_quotactl(struct thread *, struct quotactl_args *);
sys/sys/sysproto.h
2039
int sys_nlm_syscall(struct thread *, struct nlm_syscall_args *);
sys/sys/sysproto.h
2040
int sys_nfssvc(struct thread *, struct nfssvc_args *);
sys/sys/sysproto.h
2041
int sys_lgetfh(struct thread *, struct lgetfh_args *);
sys/sys/sysproto.h
2042
int sys_getfh(struct thread *, struct getfh_args *);
sys/sys/sysproto.h
2043
int sysarch(struct thread *, struct sysarch_args *);
sys/sys/sysproto.h
2044
int sys_rtprio(struct thread *, struct rtprio_args *);
sys/sys/sysproto.h
2045
int sys_semsys(struct thread *, struct semsys_args *);
sys/sys/sysproto.h
2046
int sys_msgsys(struct thread *, struct msgsys_args *);
sys/sys/sysproto.h
2047
int sys_shmsys(struct thread *, struct shmsys_args *);
sys/sys/sysproto.h
2048
int sys_setfib(struct thread *, struct setfib_args *);
sys/sys/sysproto.h
2049
int sys_ntp_adjtime(struct thread *, struct ntp_adjtime_args *);
sys/sys/sysproto.h
2050
int sys_setgid(struct thread *, struct setgid_args *);
sys/sys/sysproto.h
2051
int sys_setegid(struct thread *, struct setegid_args *);
sys/sys/sysproto.h
2052
int sys_seteuid(struct thread *, struct seteuid_args *);
sys/sys/sysproto.h
2053
int sys_pathconf(struct thread *, struct pathconf_args *);
sys/sys/sysproto.h
2054
int sys_fpathconf(struct thread *, struct fpathconf_args *);
sys/sys/sysproto.h
2055
int sys_getrlimit(struct thread *, struct getrlimit_args *);
sys/sys/sysproto.h
2056
int sys_setrlimit(struct thread *, struct setrlimit_args *);
sys/sys/sysproto.h
2057
int sys___sysctl(struct thread *, struct __sysctl_args *);
sys/sys/sysproto.h
2058
int sys_mlock(struct thread *, struct mlock_args *);
sys/sys/sysproto.h
2059
int sys_munlock(struct thread *, struct munlock_args *);
sys/sys/sysproto.h
2060
int sys_undelete(struct thread *, struct undelete_args *);
sys/sys/sysproto.h
2061
int sys_futimes(struct thread *, struct futimes_args *);
sys/sys/sysproto.h
2062
int sys_getpgid(struct thread *, struct getpgid_args *);
sys/sys/sysproto.h
2063
int sys_poll(struct thread *, struct poll_args *);
sys/sys/sysproto.h
2064
int sys_semget(struct thread *, struct semget_args *);
sys/sys/sysproto.h
2065
int sys_semop(struct thread *, struct semop_args *);
sys/sys/sysproto.h
2066
int sys_msgget(struct thread *, struct msgget_args *);
sys/sys/sysproto.h
2067
int sys_msgsnd(struct thread *, struct msgsnd_args *);
sys/sys/sysproto.h
2068
int sys_msgrcv(struct thread *, struct msgrcv_args *);
sys/sys/sysproto.h
2069
int sys_shmat(struct thread *, struct shmat_args *);
sys/sys/sysproto.h
2070
int sys_shmdt(struct thread *, struct shmdt_args *);
sys/sys/sysproto.h
2071
int sys_shmget(struct thread *, struct shmget_args *);
sys/sys/sysproto.h
2072
int sys_clock_gettime(struct thread *, struct clock_gettime_args *);
sys/sys/sysproto.h
2073
int sys_clock_settime(struct thread *, struct clock_settime_args *);
sys/sys/sysproto.h
2074
int sys_clock_getres(struct thread *, struct clock_getres_args *);
sys/sys/sysproto.h
2075
int sys_ktimer_create(struct thread *, struct ktimer_create_args *);
sys/sys/sysproto.h
2076
int sys_ktimer_delete(struct thread *, struct ktimer_delete_args *);
sys/sys/sysproto.h
2077
int sys_ktimer_settime(struct thread *, struct ktimer_settime_args *);
sys/sys/sysproto.h
2078
int sys_ktimer_gettime(struct thread *, struct ktimer_gettime_args *);
sys/sys/sysproto.h
2079
int sys_ktimer_getoverrun(struct thread *, struct ktimer_getoverrun_args *);
sys/sys/sysproto.h
2080
int sys_nanosleep(struct thread *, struct nanosleep_args *);
sys/sys/sysproto.h
2081
int sys_ffclock_getcounter(struct thread *, struct ffclock_getcounter_args *);
sys/sys/sysproto.h
2082
int sys_ffclock_setestimate(struct thread *, struct ffclock_setestimate_args *);
sys/sys/sysproto.h
2083
int sys_ffclock_getestimate(struct thread *, struct ffclock_getestimate_args *);
sys/sys/sysproto.h
2084
int sys_clock_nanosleep(struct thread *, struct clock_nanosleep_args *);
sys/sys/sysproto.h
2085
int sys_clock_getcpuclockid2(struct thread *, struct clock_getcpuclockid2_args *);
sys/sys/sysproto.h
2086
int sys_ntp_gettime(struct thread *, struct ntp_gettime_args *);
sys/sys/sysproto.h
2087
int sys_minherit(struct thread *, struct minherit_args *);
sys/sys/sysproto.h
2088
int sys_rfork(struct thread *, struct rfork_args *);
sys/sys/sysproto.h
2089
int sys_issetugid(struct thread *, struct issetugid_args *);
sys/sys/sysproto.h
2090
int sys_lchown(struct thread *, struct lchown_args *);
sys/sys/sysproto.h
2091
int sys_aio_read(struct thread *, struct aio_read_args *);
sys/sys/sysproto.h
2092
int sys_aio_write(struct thread *, struct aio_write_args *);
sys/sys/sysproto.h
2093
int sys_lio_listio(struct thread *, struct lio_listio_args *);
sys/sys/sysproto.h
2094
int sys_lchmod(struct thread *, struct lchmod_args *);
sys/sys/sysproto.h
2095
int sys_lutimes(struct thread *, struct lutimes_args *);
sys/sys/sysproto.h
2096
int sys_preadv(struct thread *, struct preadv_args *);
sys/sys/sysproto.h
2097
int sys_pwritev(struct thread *, struct pwritev_args *);
sys/sys/sysproto.h
2098
int sys_fhopen(struct thread *, struct fhopen_args *);
sys/sys/sysproto.h
2099
int sys_modnext(struct thread *, struct modnext_args *);
sys/sys/sysproto.h
2100
int sys_modstat(struct thread *, struct modstat_args *);
sys/sys/sysproto.h
2101
int sys_modfnext(struct thread *, struct modfnext_args *);
sys/sys/sysproto.h
2102
int sys_modfind(struct thread *, struct modfind_args *);
sys/sys/sysproto.h
2103
int sys_kldload(struct thread *, struct kldload_args *);
sys/sys/sysproto.h
2104
int sys_kldunload(struct thread *, struct kldunload_args *);
sys/sys/sysproto.h
2105
int sys_kldfind(struct thread *, struct kldfind_args *);
sys/sys/sysproto.h
2106
int sys_kldnext(struct thread *, struct kldnext_args *);
sys/sys/sysproto.h
2107
int sys_kldstat(struct thread *, struct kldstat_args *);
sys/sys/sysproto.h
2108
int sys_kldfirstmod(struct thread *, struct kldfirstmod_args *);
sys/sys/sysproto.h
2109
int sys_getsid(struct thread *, struct getsid_args *);
sys/sys/sysproto.h
2110
int sys_setresuid(struct thread *, struct setresuid_args *);
sys/sys/sysproto.h
2111
int sys_setresgid(struct thread *, struct setresgid_args *);
sys/sys/sysproto.h
2112
int sys_aio_return(struct thread *, struct aio_return_args *);
sys/sys/sysproto.h
2113
int sys_aio_suspend(struct thread *, struct aio_suspend_args *);
sys/sys/sysproto.h
2114
int sys_aio_cancel(struct thread *, struct aio_cancel_args *);
sys/sys/sysproto.h
2115
int sys_aio_error(struct thread *, struct aio_error_args *);
sys/sys/sysproto.h
2116
int sys_yield(struct thread *, struct yield_args *);
sys/sys/sysproto.h
2117
int sys_mlockall(struct thread *, struct mlockall_args *);
sys/sys/sysproto.h
2118
int sys_munlockall(struct thread *, struct munlockall_args *);
sys/sys/sysproto.h
2119
int sys___getcwd(struct thread *, struct __getcwd_args *);
sys/sys/sysproto.h
2120
int sys_sched_setparam(struct thread *, struct sched_setparam_args *);
sys/sys/sysproto.h
2121
int sys_sched_getparam(struct thread *, struct sched_getparam_args *);
sys/sys/sysproto.h
2122
int sys_sched_setscheduler(struct thread *, struct sched_setscheduler_args *);
sys/sys/sysproto.h
2123
int sys_sched_getscheduler(struct thread *, struct sched_getscheduler_args *);
sys/sys/sysproto.h
2124
int sys_sched_yield(struct thread *, struct sched_yield_args *);
sys/sys/sysproto.h
2125
int sys_sched_get_priority_max(struct thread *, struct sched_get_priority_max_args *);
sys/sys/sysproto.h
2126
int sys_sched_get_priority_min(struct thread *, struct sched_get_priority_min_args *);
sys/sys/sysproto.h
2127
int sys_sched_rr_get_interval(struct thread *, struct sched_rr_get_interval_args *);
sys/sys/sysproto.h
2128
int sys_utrace(struct thread *, struct utrace_args *);
sys/sys/sysproto.h
2129
int sys_kldsym(struct thread *, struct kldsym_args *);
sys/sys/sysproto.h
2130
int sys_jail(struct thread *, struct jail_args *);
sys/sys/sysproto.h
2131
int sys_nnpfs_syscall(struct thread *, struct nnpfs_syscall_args *);
sys/sys/sysproto.h
2132
int sys_sigprocmask(struct thread *, struct sigprocmask_args *);
sys/sys/sysproto.h
2133
int sys_sigsuspend(struct thread *, struct sigsuspend_args *);
sys/sys/sysproto.h
2134
int sys_sigpending(struct thread *, struct sigpending_args *);
sys/sys/sysproto.h
2135
int sys_sigtimedwait(struct thread *, struct sigtimedwait_args *);
sys/sys/sysproto.h
2136
int sys_sigwaitinfo(struct thread *, struct sigwaitinfo_args *);
sys/sys/sysproto.h
2137
int sys___acl_get_file(struct thread *, struct __acl_get_file_args *);
sys/sys/sysproto.h
2138
int sys___acl_set_file(struct thread *, struct __acl_set_file_args *);
sys/sys/sysproto.h
2139
int sys___acl_get_fd(struct thread *, struct __acl_get_fd_args *);
sys/sys/sysproto.h
2140
int sys___acl_set_fd(struct thread *, struct __acl_set_fd_args *);
sys/sys/sysproto.h
2141
int sys___acl_delete_file(struct thread *, struct __acl_delete_file_args *);
sys/sys/sysproto.h
2142
int sys___acl_delete_fd(struct thread *, struct __acl_delete_fd_args *);
sys/sys/sysproto.h
2143
int sys___acl_aclcheck_file(struct thread *, struct __acl_aclcheck_file_args *);
sys/sys/sysproto.h
2144
int sys___acl_aclcheck_fd(struct thread *, struct __acl_aclcheck_fd_args *);
sys/sys/sysproto.h
2145
int sys_extattrctl(struct thread *, struct extattrctl_args *);
sys/sys/sysproto.h
2146
int sys_extattr_set_file(struct thread *, struct extattr_set_file_args *);
sys/sys/sysproto.h
2147
int sys_extattr_get_file(struct thread *, struct extattr_get_file_args *);
sys/sys/sysproto.h
2148
int sys_extattr_delete_file(struct thread *, struct extattr_delete_file_args *);
sys/sys/sysproto.h
2149
int sys_aio_waitcomplete(struct thread *, struct aio_waitcomplete_args *);
sys/sys/sysproto.h
2150
int sys_getresuid(struct thread *, struct getresuid_args *);
sys/sys/sysproto.h
2151
int sys_getresgid(struct thread *, struct getresgid_args *);
sys/sys/sysproto.h
2152
int sys_kqueue(struct thread *, struct kqueue_args *);
sys/sys/sysproto.h
2153
int sys_extattr_set_fd(struct thread *, struct extattr_set_fd_args *);
sys/sys/sysproto.h
2154
int sys_extattr_get_fd(struct thread *, struct extattr_get_fd_args *);
sys/sys/sysproto.h
2155
int sys_extattr_delete_fd(struct thread *, struct extattr_delete_fd_args *);
sys/sys/sysproto.h
2156
int sys___setugid(struct thread *, struct __setugid_args *);
sys/sys/sysproto.h
2157
int sys_eaccess(struct thread *, struct eaccess_args *);
sys/sys/sysproto.h
2158
int sys_afs3_syscall(struct thread *, struct afs3_syscall_args *);
sys/sys/sysproto.h
2159
int sys_nmount(struct thread *, struct nmount_args *);
sys/sys/sysproto.h
2160
int sys___mac_get_proc(struct thread *, struct __mac_get_proc_args *);
sys/sys/sysproto.h
2161
int sys___mac_set_proc(struct thread *, struct __mac_set_proc_args *);
sys/sys/sysproto.h
2162
int sys___mac_get_fd(struct thread *, struct __mac_get_fd_args *);
sys/sys/sysproto.h
2163
int sys___mac_get_file(struct thread *, struct __mac_get_file_args *);
sys/sys/sysproto.h
2164
int sys___mac_set_fd(struct thread *, struct __mac_set_fd_args *);
sys/sys/sysproto.h
2165
int sys___mac_set_file(struct thread *, struct __mac_set_file_args *);
sys/sys/sysproto.h
2166
int sys_kenv(struct thread *, struct kenv_args *);
sys/sys/sysproto.h
2167
int sys_lchflags(struct thread *, struct lchflags_args *);
sys/sys/sysproto.h
2168
int sys_uuidgen(struct thread *, struct uuidgen_args *);
sys/sys/sysproto.h
2169
int sys_sendfile(struct thread *, struct sendfile_args *);
sys/sys/sysproto.h
2170
int sys_mac_syscall(struct thread *, struct mac_syscall_args *);
sys/sys/sysproto.h
2171
int sys_ksem_close(struct thread *, struct ksem_close_args *);
sys/sys/sysproto.h
2172
int sys_ksem_post(struct thread *, struct ksem_post_args *);
sys/sys/sysproto.h
2173
int sys_ksem_wait(struct thread *, struct ksem_wait_args *);
sys/sys/sysproto.h
2174
int sys_ksem_trywait(struct thread *, struct ksem_trywait_args *);
sys/sys/sysproto.h
2175
int sys_ksem_init(struct thread *, struct ksem_init_args *);
sys/sys/sysproto.h
2176
int sys_ksem_open(struct thread *, struct ksem_open_args *);
sys/sys/sysproto.h
2177
int sys_ksem_unlink(struct thread *, struct ksem_unlink_args *);
sys/sys/sysproto.h
2178
int sys_ksem_getvalue(struct thread *, struct ksem_getvalue_args *);
sys/sys/sysproto.h
2179
int sys_ksem_destroy(struct thread *, struct ksem_destroy_args *);
sys/sys/sysproto.h
2180
int sys___mac_get_pid(struct thread *, struct __mac_get_pid_args *);
sys/sys/sysproto.h
2181
int sys___mac_get_link(struct thread *, struct __mac_get_link_args *);
sys/sys/sysproto.h
2182
int sys___mac_set_link(struct thread *, struct __mac_set_link_args *);
sys/sys/sysproto.h
2183
int sys_extattr_set_link(struct thread *, struct extattr_set_link_args *);
sys/sys/sysproto.h
2184
int sys_extattr_get_link(struct thread *, struct extattr_get_link_args *);
sys/sys/sysproto.h
2185
int sys_extattr_delete_link(struct thread *, struct extattr_delete_link_args *);
sys/sys/sysproto.h
2186
int sys___mac_execve(struct thread *, struct __mac_execve_args *);
sys/sys/sysproto.h
2187
int sys_sigaction(struct thread *, struct sigaction_args *);
sys/sys/sysproto.h
2188
int sys_sigreturn(struct thread *, struct sigreturn_args *);
sys/sys/sysproto.h
2189
int sys_getcontext(struct thread *, struct getcontext_args *);
sys/sys/sysproto.h
2190
int sys_setcontext(struct thread *, struct setcontext_args *);
sys/sys/sysproto.h
2191
int sys_swapcontext(struct thread *, struct swapcontext_args *);
sys/sys/sysproto.h
2192
int sys___acl_get_link(struct thread *, struct __acl_get_link_args *);
sys/sys/sysproto.h
2193
int sys___acl_set_link(struct thread *, struct __acl_set_link_args *);
sys/sys/sysproto.h
2194
int sys___acl_delete_link(struct thread *, struct __acl_delete_link_args *);
sys/sys/sysproto.h
2195
int sys___acl_aclcheck_link(struct thread *, struct __acl_aclcheck_link_args *);
sys/sys/sysproto.h
2196
int sys_sigwait(struct thread *, struct sigwait_args *);
sys/sys/sysproto.h
2197
int sys_thr_create(struct thread *, struct thr_create_args *);
sys/sys/sysproto.h
2198
int sys_thr_exit(struct thread *, struct thr_exit_args *);
sys/sys/sysproto.h
2199
int sys_thr_self(struct thread *, struct thr_self_args *);
sys/sys/sysproto.h
2200
int sys_thr_kill(struct thread *, struct thr_kill_args *);
sys/sys/sysproto.h
2201
int sys_jail_attach(struct thread *, struct jail_attach_args *);
sys/sys/sysproto.h
2202
int sys_extattr_list_fd(struct thread *, struct extattr_list_fd_args *);
sys/sys/sysproto.h
2203
int sys_extattr_list_file(struct thread *, struct extattr_list_file_args *);
sys/sys/sysproto.h
2204
int sys_extattr_list_link(struct thread *, struct extattr_list_link_args *);
sys/sys/sysproto.h
2205
int sys_ksem_timedwait(struct thread *, struct ksem_timedwait_args *);
sys/sys/sysproto.h
2206
int sys_thr_suspend(struct thread *, struct thr_suspend_args *);
sys/sys/sysproto.h
2207
int sys_thr_wake(struct thread *, struct thr_wake_args *);
sys/sys/sysproto.h
2208
int sys_kldunloadf(struct thread *, struct kldunloadf_args *);
sys/sys/sysproto.h
2209
int sys_audit(struct thread *, struct audit_args *);
sys/sys/sysproto.h
2210
int sys_auditon(struct thread *, struct auditon_args *);
sys/sys/sysproto.h
2211
int sys_getauid(struct thread *, struct getauid_args *);
sys/sys/sysproto.h
2212
int sys_setauid(struct thread *, struct setauid_args *);
sys/sys/sysproto.h
2213
int sys_getaudit(struct thread *, struct getaudit_args *);
sys/sys/sysproto.h
2214
int sys_setaudit(struct thread *, struct setaudit_args *);
sys/sys/sysproto.h
2215
int sys_getaudit_addr(struct thread *, struct getaudit_addr_args *);
sys/sys/sysproto.h
2216
int sys_setaudit_addr(struct thread *, struct setaudit_addr_args *);
sys/sys/sysproto.h
2217
int sys_auditctl(struct thread *, struct auditctl_args *);
sys/sys/sysproto.h
2218
int sys__umtx_op(struct thread *, struct _umtx_op_args *);
sys/sys/sysproto.h
2219
int sys_thr_new(struct thread *, struct thr_new_args *);
sys/sys/sysproto.h
2220
int sys_sigqueue(struct thread *, struct sigqueue_args *);
sys/sys/sysproto.h
2221
int sys_kmq_open(struct thread *, struct kmq_open_args *);
sys/sys/sysproto.h
2222
int sys_kmq_setattr(struct thread *, struct kmq_setattr_args *);
sys/sys/sysproto.h
2223
int sys_kmq_timedreceive(struct thread *, struct kmq_timedreceive_args *);
sys/sys/sysproto.h
2224
int sys_kmq_timedsend(struct thread *, struct kmq_timedsend_args *);
sys/sys/sysproto.h
2225
int sys_kmq_notify(struct thread *, struct kmq_notify_args *);
sys/sys/sysproto.h
2226
int sys_kmq_unlink(struct thread *, struct kmq_unlink_args *);
sys/sys/sysproto.h
2227
int sys_abort2(struct thread *, struct abort2_args *);
sys/sys/sysproto.h
2228
int sys_thr_set_name(struct thread *, struct thr_set_name_args *);
sys/sys/sysproto.h
2229
int sys_aio_fsync(struct thread *, struct aio_fsync_args *);
sys/sys/sysproto.h
2230
int sys_rtprio_thread(struct thread *, struct rtprio_thread_args *);
sys/sys/sysproto.h
2231
int sys_sctp_peeloff(struct thread *, struct sctp_peeloff_args *);
sys/sys/sysproto.h
2232
int sys_sctp_generic_sendmsg(struct thread *, struct sctp_generic_sendmsg_args *);
sys/sys/sysproto.h
2233
int sys_sctp_generic_sendmsg_iov(struct thread *, struct sctp_generic_sendmsg_iov_args *);
sys/sys/sysproto.h
2234
int sys_sctp_generic_recvmsg(struct thread *, struct sctp_generic_recvmsg_args *);
sys/sys/sysproto.h
2235
int sys_pread(struct thread *, struct pread_args *);
sys/sys/sysproto.h
2236
int sys_pwrite(struct thread *, struct pwrite_args *);
sys/sys/sysproto.h
2237
int sys_mmap(struct thread *, struct mmap_args *);
sys/sys/sysproto.h
2238
int sys_lseek(struct thread *, struct lseek_args *);
sys/sys/sysproto.h
2239
int sys_truncate(struct thread *, struct truncate_args *);
sys/sys/sysproto.h
2240
int sys_ftruncate(struct thread *, struct ftruncate_args *);
sys/sys/sysproto.h
2241
int sys_thr_kill2(struct thread *, struct thr_kill2_args *);
sys/sys/sysproto.h
2242
int sys_shm_unlink(struct thread *, struct shm_unlink_args *);
sys/sys/sysproto.h
2243
int sys_cpuset(struct thread *, struct cpuset_args *);
sys/sys/sysproto.h
2244
int sys_cpuset_setid(struct thread *, struct cpuset_setid_args *);
sys/sys/sysproto.h
2245
int sys_cpuset_getid(struct thread *, struct cpuset_getid_args *);
sys/sys/sysproto.h
2246
int sys_cpuset_getaffinity(struct thread *, struct cpuset_getaffinity_args *);
sys/sys/sysproto.h
2247
int sys_cpuset_setaffinity(struct thread *, struct cpuset_setaffinity_args *);
sys/sys/sysproto.h
2248
int sys_faccessat(struct thread *, struct faccessat_args *);
sys/sys/sysproto.h
2249
int sys_fchmodat(struct thread *, struct fchmodat_args *);
sys/sys/sysproto.h
2250
int sys_fchownat(struct thread *, struct fchownat_args *);
sys/sys/sysproto.h
2251
int sys_fexecve(struct thread *, struct fexecve_args *);
sys/sys/sysproto.h
2252
int sys_futimesat(struct thread *, struct futimesat_args *);
sys/sys/sysproto.h
2253
int sys_linkat(struct thread *, struct linkat_args *);
sys/sys/sysproto.h
2254
int sys_mkdirat(struct thread *, struct mkdirat_args *);
sys/sys/sysproto.h
2255
int sys_mkfifoat(struct thread *, struct mkfifoat_args *);
sys/sys/sysproto.h
2256
int sys_openat(struct thread *, struct openat_args *);
sys/sys/sysproto.h
2257
int sys_readlinkat(struct thread *, struct readlinkat_args *);
sys/sys/sysproto.h
2258
int sys_renameat(struct thread *, struct renameat_args *);
sys/sys/sysproto.h
2259
int sys_symlinkat(struct thread *, struct symlinkat_args *);
sys/sys/sysproto.h
2260
int sys_unlinkat(struct thread *, struct unlinkat_args *);
sys/sys/sysproto.h
2261
int sys_posix_openpt(struct thread *, struct posix_openpt_args *);
sys/sys/sysproto.h
2262
int sys_jail_get(struct thread *, struct jail_get_args *);
sys/sys/sysproto.h
2263
int sys_jail_set(struct thread *, struct jail_set_args *);
sys/sys/sysproto.h
2264
int sys_jail_remove(struct thread *, struct jail_remove_args *);
sys/sys/sysproto.h
2265
int sys___semctl(struct thread *, struct __semctl_args *);
sys/sys/sysproto.h
2266
int sys_msgctl(struct thread *, struct msgctl_args *);
sys/sys/sysproto.h
2267
int sys_shmctl(struct thread *, struct shmctl_args *);
sys/sys/sysproto.h
2268
int sys_lpathconf(struct thread *, struct lpathconf_args *);
sys/sys/sysproto.h
2269
int sys___cap_rights_get(struct thread *, struct __cap_rights_get_args *);
sys/sys/sysproto.h
2270
int sys_cap_enter(struct thread *, struct cap_enter_args *);
sys/sys/sysproto.h
2271
int sys_cap_getmode(struct thread *, struct cap_getmode_args *);
sys/sys/sysproto.h
2272
int sys_pdfork(struct thread *, struct pdfork_args *);
sys/sys/sysproto.h
2273
int sys_pdkill(struct thread *, struct pdkill_args *);
sys/sys/sysproto.h
2274
int sys_pdgetpid(struct thread *, struct pdgetpid_args *);
sys/sys/sysproto.h
2275
int sys_pselect(struct thread *, struct pselect_args *);
sys/sys/sysproto.h
2276
int sys_getloginclass(struct thread *, struct getloginclass_args *);
sys/sys/sysproto.h
2277
int sys_setloginclass(struct thread *, struct setloginclass_args *);
sys/sys/sysproto.h
2278
int sys_rctl_get_racct(struct thread *, struct rctl_get_racct_args *);
sys/sys/sysproto.h
2279
int sys_rctl_get_rules(struct thread *, struct rctl_get_rules_args *);
sys/sys/sysproto.h
2280
int sys_rctl_get_limits(struct thread *, struct rctl_get_limits_args *);
sys/sys/sysproto.h
2281
int sys_rctl_add_rule(struct thread *, struct rctl_add_rule_args *);
sys/sys/sysproto.h
2282
int sys_rctl_remove_rule(struct thread *, struct rctl_remove_rule_args *);
sys/sys/sysproto.h
2283
int sys_posix_fallocate(struct thread *, struct posix_fallocate_args *);
sys/sys/sysproto.h
2284
int sys_posix_fadvise(struct thread *, struct posix_fadvise_args *);
sys/sys/sysproto.h
2285
int sys_wait6(struct thread *, struct wait6_args *);
sys/sys/sysproto.h
2286
int sys_cap_rights_limit(struct thread *, struct cap_rights_limit_args *);
sys/sys/sysproto.h
2287
int sys_cap_ioctls_limit(struct thread *, struct cap_ioctls_limit_args *);
sys/sys/sysproto.h
2288
int sys_cap_ioctls_get(struct thread *, struct cap_ioctls_get_args *);
sys/sys/sysproto.h
2289
int sys_cap_fcntls_limit(struct thread *, struct cap_fcntls_limit_args *);
sys/sys/sysproto.h
2290
int sys_cap_fcntls_get(struct thread *, struct cap_fcntls_get_args *);
sys/sys/sysproto.h
2291
int sys_bindat(struct thread *, struct bindat_args *);
sys/sys/sysproto.h
2292
int sys_connectat(struct thread *, struct connectat_args *);
sys/sys/sysproto.h
2293
int sys_chflagsat(struct thread *, struct chflagsat_args *);
sys/sys/sysproto.h
2294
int sys_accept4(struct thread *, struct accept4_args *);
sys/sys/sysproto.h
2295
int sys_pipe2(struct thread *, struct pipe2_args *);
sys/sys/sysproto.h
2296
int sys_aio_mlock(struct thread *, struct aio_mlock_args *);
sys/sys/sysproto.h
2297
int sys_procctl(struct thread *, struct procctl_args *);
sys/sys/sysproto.h
2298
int sys_ppoll(struct thread *, struct ppoll_args *);
sys/sys/sysproto.h
2299
int sys_futimens(struct thread *, struct futimens_args *);
sys/sys/sysproto.h
23
struct thread;
sys/sys/sysproto.h
2300
int sys_utimensat(struct thread *, struct utimensat_args *);
sys/sys/sysproto.h
2301
int sys_fdatasync(struct thread *, struct fdatasync_args *);
sys/sys/sysproto.h
2302
int sys_fstat(struct thread *, struct fstat_args *);
sys/sys/sysproto.h
2303
int sys_fstatat(struct thread *, struct fstatat_args *);
sys/sys/sysproto.h
2304
int sys_fhstat(struct thread *, struct fhstat_args *);
sys/sys/sysproto.h
2305
int sys_getdirentries(struct thread *, struct getdirentries_args *);
sys/sys/sysproto.h
2306
int sys_statfs(struct thread *, struct statfs_args *);
sys/sys/sysproto.h
2307
int sys_fstatfs(struct thread *, struct fstatfs_args *);
sys/sys/sysproto.h
2308
int sys_getfsstat(struct thread *, struct getfsstat_args *);
sys/sys/sysproto.h
2309
int sys_fhstatfs(struct thread *, struct fhstatfs_args *);
sys/sys/sysproto.h
2310
int sys_mknodat(struct thread *, struct mknodat_args *);
sys/sys/sysproto.h
2311
int sys_kevent(struct thread *, struct kevent_args *);
sys/sys/sysproto.h
2312
int sys_cpuset_getdomain(struct thread *, struct cpuset_getdomain_args *);
sys/sys/sysproto.h
2313
int sys_cpuset_setdomain(struct thread *, struct cpuset_setdomain_args *);
sys/sys/sysproto.h
2314
int sys_getrandom(struct thread *, struct getrandom_args *);
sys/sys/sysproto.h
2315
int sys_getfhat(struct thread *, struct getfhat_args *);
sys/sys/sysproto.h
2316
int sys_fhlink(struct thread *, struct fhlink_args *);
sys/sys/sysproto.h
2317
int sys_fhlinkat(struct thread *, struct fhlinkat_args *);
sys/sys/sysproto.h
2318
int sys_fhreadlink(struct thread *, struct fhreadlink_args *);
sys/sys/sysproto.h
2319
int sys_funlinkat(struct thread *, struct funlinkat_args *);
sys/sys/sysproto.h
2320
int sys_copy_file_range(struct thread *, struct copy_file_range_args *);
sys/sys/sysproto.h
2321
int sys___sysctlbyname(struct thread *, struct __sysctlbyname_args *);
sys/sys/sysproto.h
2322
int sys_shm_open2(struct thread *, struct shm_open2_args *);
sys/sys/sysproto.h
2323
int sys_shm_rename(struct thread *, struct shm_rename_args *);
sys/sys/sysproto.h
2324
int sys_sigfastblock(struct thread *, struct sigfastblock_args *);
sys/sys/sysproto.h
2325
int sys___realpathat(struct thread *, struct __realpathat_args *);
sys/sys/sysproto.h
2326
int sys_close_range(struct thread *, struct close_range_args *);
sys/sys/sysproto.h
2327
int sys_rpctls_syscall(struct thread *, struct rpctls_syscall_args *);
sys/sys/sysproto.h
2328
int sys___specialfd(struct thread *, struct __specialfd_args *);
sys/sys/sysproto.h
2329
int sys_aio_writev(struct thread *, struct aio_writev_args *);
sys/sys/sysproto.h
2330
int sys_aio_readv(struct thread *, struct aio_readv_args *);
sys/sys/sysproto.h
2331
int sys_fspacectl(struct thread *, struct fspacectl_args *);
sys/sys/sysproto.h
2332
int sys_sched_getcpu(struct thread *, struct sched_getcpu_args *);
sys/sys/sysproto.h
2333
int sys_swapoff(struct thread *, struct swapoff_args *);
sys/sys/sysproto.h
2334
int sys_kqueuex(struct thread *, struct kqueuex_args *);
sys/sys/sysproto.h
2335
int sys_membarrier(struct thread *, struct membarrier_args *);
sys/sys/sysproto.h
2336
int sys_timerfd_create(struct thread *, struct timerfd_create_args *);
sys/sys/sysproto.h
2337
int sys_timerfd_gettime(struct thread *, struct timerfd_gettime_args *);
sys/sys/sysproto.h
2338
int sys_timerfd_settime(struct thread *, struct timerfd_settime_args *);
sys/sys/sysproto.h
2339
int sys_kcmp(struct thread *, struct kcmp_args *);
sys/sys/sysproto.h
2340
int sys_getrlimitusage(struct thread *, struct getrlimitusage_args *);
sys/sys/sysproto.h
2341
int sys_fchroot(struct thread *, struct fchroot_args *);
sys/sys/sysproto.h
2342
int sys_setcred(struct thread *, struct setcred_args *);
sys/sys/sysproto.h
2343
int sys_exterrctl(struct thread *, struct exterrctl_args *);
sys/sys/sysproto.h
2344
int sys_inotify_add_watch_at(struct thread *, struct inotify_add_watch_at_args *);
sys/sys/sysproto.h
2345
int sys_inotify_rm_watch(struct thread *, struct inotify_rm_watch_args *);
sys/sys/sysproto.h
2346
int sys_getgroups(struct thread *, struct getgroups_args *);
sys/sys/sysproto.h
2347
int sys_setgroups(struct thread *, struct setgroups_args *);
sys/sys/sysproto.h
2348
int sys_jail_attach_jd(struct thread *, struct jail_attach_jd_args *);
sys/sys/sysproto.h
2349
int sys_jail_remove_jd(struct thread *, struct jail_remove_jd_args *);
sys/sys/sysproto.h
2350
int sys_kexec_load(struct thread *, struct kexec_load_args *);
sys/sys/sysproto.h
2351
int sys_pdrfork(struct thread *, struct pdrfork_args *);
sys/sys/sysproto.h
2352
int sys_pdwait(struct thread *, struct pdwait_args *);
sys/sys/sysproto.h
2353
int sys_renameat2(struct thread *, struct renameat2_args *);
sys/sys/sysproto.h
2354
int sys_pdopenpid(struct thread *, struct pdopenpid_args *);
sys/sys/sysproto.h
2355
int sys_pddupfd(struct thread *, struct pddupfd_args *);
sys/sys/sysproto.h
2506
int ocreat(struct thread *, struct ocreat_args *);
sys/sys/sysproto.h
2507
int olseek(struct thread *, struct olseek_args *);
sys/sys/sysproto.h
2508
int ostat(struct thread *, struct ostat_args *);
sys/sys/sysproto.h
2509
int olstat(struct thread *, struct olstat_args *);
sys/sys/sysproto.h
2510
int osigaction(struct thread *, struct osigaction_args *);
sys/sys/sysproto.h
2511
int osigprocmask(struct thread *, struct osigprocmask_args *);
sys/sys/sysproto.h
2512
int osigpending(struct thread *, struct osigpending_args *);
sys/sys/sysproto.h
2513
int ofstat(struct thread *, struct ofstat_args *);
sys/sys/sysproto.h
2514
int ogetkerninfo(struct thread *, struct ogetkerninfo_args *);
sys/sys/sysproto.h
2515
int ogetpagesize(struct thread *, struct ogetpagesize_args *);
sys/sys/sysproto.h
2516
int ommap(struct thread *, struct ommap_args *);
sys/sys/sysproto.h
2517
int owait(struct thread *, struct owait_args *);
sys/sys/sysproto.h
2518
int ogethostname(struct thread *, struct ogethostname_args *);
sys/sys/sysproto.h
2519
int osethostname(struct thread *, struct osethostname_args *);
sys/sys/sysproto.h
2520
int oaccept(struct thread *, struct oaccept_args *);
sys/sys/sysproto.h
2521
int osend(struct thread *, struct osend_args *);
sys/sys/sysproto.h
2522
int orecv(struct thread *, struct orecv_args *);
sys/sys/sysproto.h
2523
int osigreturn(struct thread *, struct osigreturn_args *);
sys/sys/sysproto.h
2524
int osigvec(struct thread *, struct osigvec_args *);
sys/sys/sysproto.h
2525
int osigblock(struct thread *, struct osigblock_args *);
sys/sys/sysproto.h
2526
int osigsetmask(struct thread *, struct osigsetmask_args *);
sys/sys/sysproto.h
2527
int osigsuspend(struct thread *, struct osigsuspend_args *);
sys/sys/sysproto.h
2528
int osigstack(struct thread *, struct osigstack_args *);
sys/sys/sysproto.h
2529
int orecvmsg(struct thread *, struct orecvmsg_args *);
sys/sys/sysproto.h
2530
int osendmsg(struct thread *, struct osendmsg_args *);
sys/sys/sysproto.h
2531
int orecvfrom(struct thread *, struct orecvfrom_args *);
sys/sys/sysproto.h
2532
int otruncate(struct thread *, struct otruncate_args *);
sys/sys/sysproto.h
2533
int oftruncate(struct thread *, struct oftruncate_args *);
sys/sys/sysproto.h
2534
int ogetpeername(struct thread *, struct ogetpeername_args *);
sys/sys/sysproto.h
2535
int ogethostid(struct thread *, struct ogethostid_args *);
sys/sys/sysproto.h
2536
int osethostid(struct thread *, struct osethostid_args *);
sys/sys/sysproto.h
2537
int ogetrlimit(struct thread *, struct ogetrlimit_args *);
sys/sys/sysproto.h
2538
int osetrlimit(struct thread *, struct osetrlimit_args *);
sys/sys/sysproto.h
2539
int okillpg(struct thread *, struct okillpg_args *);
sys/sys/sysproto.h
2540
int oquota(struct thread *, struct oquota_args *);
sys/sys/sysproto.h
2541
int ogetsockname(struct thread *, struct ogetsockname_args *);
sys/sys/sysproto.h
2542
int ogetdirentries(struct thread *, struct ogetdirentries_args *);
sys/sys/sysproto.h
2594
int freebsd4_getfsstat(struct thread *, struct freebsd4_getfsstat_args *);
sys/sys/sysproto.h
2595
int freebsd4_statfs(struct thread *, struct freebsd4_statfs_args *);
sys/sys/sysproto.h
2596
int freebsd4_fstatfs(struct thread *, struct freebsd4_fstatfs_args *);
sys/sys/sysproto.h
2597
int freebsd4_getdomainname(struct thread *, struct freebsd4_getdomainname_args *);
sys/sys/sysproto.h
2598
int freebsd4_setdomainname(struct thread *, struct freebsd4_setdomainname_args *);
sys/sys/sysproto.h
2599
int freebsd4_uname(struct thread *, struct freebsd4_uname_args *);
sys/sys/sysproto.h
2600
int freebsd4_fhstatfs(struct thread *, struct freebsd4_fhstatfs_args *);
sys/sys/sysproto.h
2601
int freebsd4_sendfile(struct thread *, struct freebsd4_sendfile_args *);
sys/sys/sysproto.h
2602
int freebsd4_sigaction(struct thread *, struct freebsd4_sigaction_args *);
sys/sys/sysproto.h
2603
int freebsd4_sigreturn(struct thread *, struct freebsd4_sigreturn_args *);
sys/sys/sysproto.h
2661
int freebsd6_pread(struct thread *, struct freebsd6_pread_args *);
sys/sys/sysproto.h
2662
int freebsd6_pwrite(struct thread *, struct freebsd6_pwrite_args *);
sys/sys/sysproto.h
2663
int freebsd6_mmap(struct thread *, struct freebsd6_mmap_args *);
sys/sys/sysproto.h
2664
int freebsd6_lseek(struct thread *, struct freebsd6_lseek_args *);
sys/sys/sysproto.h
2665
int freebsd6_truncate(struct thread *, struct freebsd6_truncate_args *);
sys/sys/sysproto.h
2666
int freebsd6_ftruncate(struct thread *, struct freebsd6_ftruncate_args *);
sys/sys/sysproto.h
2667
int freebsd6_aio_read(struct thread *, struct freebsd6_aio_read_args *);
sys/sys/sysproto.h
2668
int freebsd6_aio_write(struct thread *, struct freebsd6_aio_write_args *);
sys/sys/sysproto.h
2669
int freebsd6_lio_listio(struct thread *, struct freebsd6_lio_listio_args *);
sys/sys/sysproto.h
2692
int freebsd7___semctl(struct thread *, struct freebsd7___semctl_args *);
sys/sys/sysproto.h
2693
int freebsd7_msgctl(struct thread *, struct freebsd7_msgctl_args *);
sys/sys/sysproto.h
2694
int freebsd7_shmctl(struct thread *, struct freebsd7_shmctl_args *);
sys/sys/sysproto.h
2707
int freebsd10_pipe(struct thread *, struct freebsd10_pipe_args *);
sys/sys/sysproto.h
2708
int freebsd10__umtx_lock(struct thread *, struct freebsd10__umtx_lock_args *);
sys/sys/sysproto.h
2709
int freebsd10__umtx_unlock(struct thread *, struct freebsd10__umtx_unlock_args *);
sys/sys/sysproto.h
2800
int freebsd11_mknod(struct thread *, struct freebsd11_mknod_args *);
sys/sys/sysproto.h
2801
int freebsd11_vadvise(struct thread *, struct freebsd11_vadvise_args *);
sys/sys/sysproto.h
2802
int freebsd11_stat(struct thread *, struct freebsd11_stat_args *);
sys/sys/sysproto.h
2803
int freebsd11_fstat(struct thread *, struct freebsd11_fstat_args *);
sys/sys/sysproto.h
2804
int freebsd11_lstat(struct thread *, struct freebsd11_lstat_args *);
sys/sys/sysproto.h
2805
int freebsd11_getdirentries(struct thread *, struct freebsd11_getdirentries_args *);
sys/sys/sysproto.h
2806
int freebsd11_getdents(struct thread *, struct freebsd11_getdents_args *);
sys/sys/sysproto.h
2807
int freebsd11_nstat(struct thread *, struct freebsd11_nstat_args *);
sys/sys/sysproto.h
2808
int freebsd11_nfstat(struct thread *, struct freebsd11_nfstat_args *);
sys/sys/sysproto.h
2809
int freebsd11_nlstat(struct thread *, struct freebsd11_nlstat_args *);
sys/sys/sysproto.h
2810
int freebsd11_fhstat(struct thread *, struct freebsd11_fhstat_args *);
sys/sys/sysproto.h
2811
int freebsd11_kevent(struct thread *, struct freebsd11_kevent_args *);
sys/sys/sysproto.h
2812
int freebsd11_getfsstat(struct thread *, struct freebsd11_getfsstat_args *);
sys/sys/sysproto.h
2813
int freebsd11_statfs(struct thread *, struct freebsd11_statfs_args *);
sys/sys/sysproto.h
2814
int freebsd11_fstatfs(struct thread *, struct freebsd11_fstatfs_args *);
sys/sys/sysproto.h
2815
int freebsd11_fhstatfs(struct thread *, struct freebsd11_fhstatfs_args *);
sys/sys/sysproto.h
2816
int freebsd11_fstatat(struct thread *, struct freebsd11_fstatat_args *);
sys/sys/sysproto.h
2817
int freebsd11_mknodat(struct thread *, struct freebsd11_mknodat_args *);
sys/sys/sysproto.h
2832
int freebsd12_shm_open(struct thread *, struct freebsd12_shm_open_args *);
sys/sys/sysproto.h
2833
int freebsd12_closefrom(struct thread *, struct freebsd12_closefrom_args *);
sys/sys/sysproto.h
2843
int freebsd13_swapoff(struct thread *, struct freebsd13_swapoff_args *);
sys/sys/sysproto.h
2858
int freebsd14_getgroups(struct thread *, struct freebsd14_getgroups_args *);
sys/sys/sysproto.h
2859
int freebsd14_setgroups(struct thread *, struct freebsd14_setgroups_args *);
sys/sys/systm.h
135
struct thread;
sys/sys/systm.h
173
extern int (*lkpi_alloc_current)(struct thread *, int);
sys/sys/systm.h
174
int linux_alloc_current_noop(struct thread *, int);
sys/sys/systm.h
590
void intr_prof_stack_use(struct thread *td, struct trapframe *frame);
sys/sys/taskqueue.h
100
int taskqueue_member(struct taskqueue *queue, struct thread *td);
sys/sys/taskqueue.h
205
TASKQUEUE_DECLARE(thread);
sys/sys/taskqueue.h
43
struct thread;
sys/sys/terminal.h
164
struct thread *td);
sys/sys/terminal.h
47
struct thread;
sys/sys/tty.h
194
int tty_wait_background(struct tty *tp, struct thread *td, int sig);
sys/sys/tty.h
204
struct thread *td);
sys/sys/tty.h
206
int fflag, struct thread *td);
sys/sys/tty.h
225
int pts_alloc(int fflags, struct thread *td, struct file *fp);
sys/sys/tty.h
226
int pts_alloc_external(int fd, struct thread *td, struct file *fp,
sys/sys/ttydevsw.h
132
ttydevsw_ioctl(struct tty *tp, u_long cmd, caddr_t data, struct thread *td)
sys/sys/ttydevsw.h
143
struct thread *td)
sys/sys/ttydevsw.h
48
struct thread *td);
sys/sys/ttydevsw.h
50
struct thread *td);
sys/sys/ttydisc.h
40
struct thread;
sys/sys/turnstile.h
101
struct thread **);
sys/sys/turnstile.h
74
struct thread;
sys/sys/turnstile.h
84
void turnstile_adjust(struct thread *, u_char);
sys/sys/turnstile.h
94
struct thread *turnstile_head(struct turnstile *, int);
sys/sys/turnstile.h
99
void turnstile_wait(struct turnstile *, struct thread *, int);
sys/sys/ucontext.h
61
struct thread;
sys/sys/ucontext.h
71
int get_mcontext(struct thread *, mcontext_t *, int);
sys/sys/ucontext.h
72
int set_mcontext(struct thread *, mcontext_t *);
sys/sys/ucoredump.h
22
struct thread;
sys/sys/ucoredump.h
28
off_t, enum uio_seg, struct ucred *, size_t *, struct thread *);
sys/sys/ucoredump.h
50
struct thread *td;
sys/sys/ucoredump.h
68
typedef int coredumper_probe_fn(struct thread *);
sys/sys/ucoredump.h
85
typedef int coredumper_handle_fn(struct thread *, off_t);
sys/sys/ucred.h
207
struct thread;
sys/sys/ucred.h
210
int user_setcred(struct thread *td, const u_int flags,
sys/sys/ucred.h
228
void credbatch_add(struct credbatch *crb, struct thread *td);
sys/sys/ucred.h
256
void crcowfree(struct thread *td);
sys/sys/ucred.h
258
void cru2xt(struct thread *td, struct xucred *xcr);
sys/sys/uio.h
59
struct thread *uio_td; /* owner */
sys/sys/uio.h
85
int copyout_map(struct thread *td, vm_offset_t *addr, size_t sz);
sys/sys/uio.h
86
int copyout_unmap(struct thread *td, vm_offset_t addr, size_t sz);
sys/sys/uio.h
87
void exterr_copyout(struct thread *td);
sys/sys/umtxvar.h
128
struct thread *uq_thread;
sys/sys/umtxvar.h
223
int kern_umtx_wake(struct thread *, void *, int, int);
sys/sys/umtxvar.h
224
void umtx_pi_adjust(struct thread *, u_char);
sys/sys/umtxvar.h
226
int umtx_pi_claim(struct umtx_pi *, struct thread *);
sys/sys/umtxvar.h
227
int umtx_pi_drop(struct thread *, struct umtx_key *, bool, int *);
sys/sys/umtxvar.h
233
void umtx_thread_init(struct thread *);
sys/sys/umtxvar.h
234
void umtx_thread_fini(struct thread *);
sys/sys/umtxvar.h
235
void umtx_thread_alloc(struct thread *);
sys/sys/umtxvar.h
236
void umtx_thread_exit(struct thread *);
sys/sys/umtxvar.h
89
struct thread;
sys/sys/umtxvar.h
94
struct thread *pi_owner;
sys/sys/unpcb.h
177
struct thread;
sys/sys/unpcb.h
181
unp_copy_peercred(struct thread *td, struct unpcb *client_unp,
sys/sys/user.h
210
struct thread *ki_tdaddr; /* address of thread */
sys/sys/vnode.h
1139
int vnode_create_vobject(struct vnode *vp, off_t size, struct thread *td);
sys/sys/vnode.h
1140
int vnode_create_disk_vobject(struct vnode *vp, off_t size, struct thread *td);
sys/sys/vnode.h
1164
struct thread *td, struct vnode **vpp, vfs_hash_cmp_t *fn, void *arg);
sys/sys/vnode.h
1166
int vfs_hash_insert(struct vnode *vp, u_int hash, int flags, struct thread *td,
sys/sys/vnode.h
1168
void vfs_hash_ref(const struct mount *mp, u_int hash, struct thread *td,
sys/sys/vnode.h
1175
int vn_dir_next_dirent(struct vnode *vp, struct thread *td,
sys/sys/vnode.h
1185
int setfmode(struct thread *td, struct ucred *cred, struct vnode *vp, int mode);
sys/sys/vnode.h
1186
int setfown(struct thread *td, struct ucred *cred, struct vnode *vp, uid_t uid,
sys/sys/vnode.h
1189
struct thread *td);
sys/sys/vnode.h
1191
struct thread *td);
sys/sys/vnode.h
642
struct thread;
sys/sys/vnode.h
707
int change_dir(struct vnode *vp, struct thread *td);
sys/sys/vnode.h
730
int vn_path_to_global_path(struct thread *td, struct vnode *vp,
sys/sys/vnode.h
732
int vn_path_to_global_path_hardlink(struct thread *td, struct vnode *vp,
sys/sys/vnode.h
748
int vflush(struct mount *mp, int rootrefs, int flags, struct thread *td);
sys/sys/vnode.h
773
int flags, struct ucred *file_cred, struct thread *td);
sys/sys/vnode.h
777
struct thread *fsize_td);
sys/sys/vnode.h
786
struct thread *fsize_td);
sys/sys/vnode.h
798
struct thread *td, struct file *fp);
sys/sys/vnode.h
802
int vn_pollrecord(struct vnode *vp, struct thread *p, int events);
sys/sys/vnode.h
806
struct thread *td);
sys/sys/vnode.h
810
struct thread *td);
sys/sys/vnode.h
813
struct thread *td);
sys/sys/vnode.h
815
off_t maxfsz, ssize_t *resid_adj, struct thread *td);
sys/sys/vnode.h
817
int vn_rlimit_trunc(u_quad_t size, struct thread *td);
sys/sys/vnode.h
825
const char *attrname, int *buflen, char *buf, struct thread *td);
sys/sys/vnode.h
827
const char *attrname, int buflen, char *buf, struct thread *td);
sys/sys/vnode.h
829
const char *attrname, struct thread *td);
sys/sys/vnode.h
835
struct ucred *cred, struct thread *td);
sys/sys/vnode.h
836
int vn_cmp(struct file *, struct file *, struct thread *td);
sys/tests/epoch/epoch_test.c
131
static struct thread *testthreads[MAXCPU];
sys/tests/epoch/epoch_test.c
137
struct thread *td;
sys/tools/syscalls/examples/cpp/test_proto.h
23
struct thread;
sys/tools/syscalls/examples/cpp/test_proto.h
49
int sys_syscall1(struct thread *, struct syscall1_args *);
sys/tools/syscalls/examples/cpp/test_proto.h
54
int sys_syscall2(struct thread *, struct syscall2_args *);
sys/ufs/ffs/ffs_alloc.c
3162
struct thread *td = curthread; /* XXX */
sys/ufs/ffs/ffs_alloc.c
3281
struct thread *td = curthread;
sys/ufs/ffs/ffs_extern.h
171
int softdep_flushworklist(struct mount *, int *, struct thread *);
sys/ufs/ffs/ffs_extern.h
172
int softdep_flushfiles(struct mount *, int, struct thread *);
sys/ufs/ffs/ffs_extern.h
46
struct thread;
sys/ufs/ffs/ffs_extern.h
74
int ffs_flushfiles(struct mount *, int, struct thread *);
sys/ufs/ffs/ffs_rawread.c
181
struct thread *td,
sys/ufs/ffs/ffs_rawread.c
261
struct thread *td;
sys/ufs/ffs/ffs_rawread.c
61
struct thread *td,
sys/ufs/ffs/ffs_snapshot.c
1048
struct thread *td = curthread;
sys/ufs/ffs/ffs_snapshot.c
1330
struct thread *td = curthread;
sys/ufs/ffs/ffs_snapshot.c
1785
struct thread *td = curthread;
sys/ufs/ffs/ffs_snapshot.c
1999
struct thread *td = curthread;
sys/ufs/ffs/ffs_snapshot.c
207
struct thread *td = curthread;
sys/ufs/ffs/ffs_snapshot.c
2202
struct thread *td;
sys/ufs/ffs/ffs_snapshot.c
2278
struct thread *td = curthread;
sys/ufs/ffs/ffs_softdep.c
12668
struct thread *td = curthread;
sys/ufs/ffs/ffs_softdep.c
13780
struct thread *td;
sys/ufs/ffs/ffs_softdep.c
13824
struct thread *td;
sys/ufs/ffs/ffs_softdep.c
13848
softdep_ast_cleanup_proc(struct thread *td, int ast __unused)
sys/ufs/ffs/ffs_softdep.c
13905
struct thread *td = curthread;
sys/ufs/ffs/ffs_softdep.c
1503
struct thread *td;
sys/ufs/ffs/ffs_softdep.c
2022
struct thread *td)
sys/ufs/ffs/ffs_softdep.c
2055
struct thread *td;
sys/ufs/ffs/ffs_softdep.c
2095
struct thread *td)
sys/ufs/ffs/ffs_softdep.c
441
struct thread *td)
sys/ufs/ffs/ffs_softdep.c
870
static void softdep_ast_cleanup_proc(struct thread *, int);
sys/ufs/ffs/ffs_softdep.c
97
struct thread *td)
sys/ufs/ffs/ffs_suspend.c
274
struct thread *td)
sys/ufs/ffs/ffs_suspend.c
83
int fmt __unused, struct thread *td __unused)
sys/ufs/ffs/ffs_vfsops.c
1256
struct thread *td;
sys/ufs/ffs/ffs_vfsops.c
1370
ffs_flushfiles(struct mount *mp, int flags, struct thread *td)
sys/ufs/ffs/ffs_vfsops.c
1571
struct thread *td;
sys/ufs/ffs/ffs_vfsops.c
351
struct thread *td;
sys/ufs/ffs/ffs_vfsops.c
85
static int ffs_mountfs(struct vnode *, struct mount *, struct thread *);
sys/ufs/ffs/ffs_vfsops.c
880
ffs_mountfs(struct vnode *odevvp, struct mount *mp, struct thread *td)
sys/ufs/ffs/ffs_vnops.c
1334
ffs_rdextattr(uint8_t **p, struct vnode *vp, struct thread *td)
sys/ufs/ffs/ffs_vnops.c
1420
ffs_open_ea(struct vnode *vp, struct ucred *cred, struct thread *td)
sys/ufs/ffs/ffs_vnops.c
1448
ffs_close_ea(struct vnode *vp, int commit, struct ucred *cred, struct thread *td)
sys/ufs/ffs/softdep.h
1071
struct thread *sd_flushtd; /* thread handling flushing */
sys/ufs/ufs/acl.h
43
struct thread *td);
sys/ufs/ufs/acl.h
45
struct thread *td);
sys/ufs/ufs/extattr.h
134
int ufs_extattr_start(struct mount *mp, struct thread *td);
sys/ufs/ufs/extattr.h
135
int ufs_extattr_autostart(struct mount *mp, struct thread *td);
sys/ufs/ufs/extattr.h
136
int ufs_extattr_stop(struct mount *mp, struct thread *td);
sys/ufs/ufs/inode.h
56
struct thread *tr_owner;
sys/ufs/ufs/quota.h
219
struct thread;
sys/ufs/ufs/quota.h
231
int quotaoff(struct thread *, struct mount *, int);
sys/ufs/ufs/quota.h
232
int quotaon(struct thread *, struct mount *, int, void *, bool *);
sys/ufs/ufs/quota.h
233
int getquota32(struct thread *, struct mount *, uint64_t, int, void *);
sys/ufs/ufs/quota.h
234
int setquota32(struct thread *, struct mount *, uint64_t, int, void *);
sys/ufs/ufs/quota.h
235
int setuse32(struct thread *, struct mount *, uint64_t, int, void *);
sys/ufs/ufs/quota.h
236
int getquota(struct thread *, struct mount *, uint64_t, int, void *);
sys/ufs/ufs/quota.h
237
int setquota(struct thread *, struct mount *, uint64_t, int, void *);
sys/ufs/ufs/quota.h
238
int setuse(struct thread *, struct mount *, uint64_t, int, void *);
sys/ufs/ufs/quota.h
239
int getquotasize(struct thread *, struct mount *, uint64_t, int, void *);
sys/ufs/ufs/ufs_acl.c
155
ufs_getacl_nfs4_internal(struct vnode *vp, struct acl *aclp, struct thread *td)
sys/ufs/ufs/ufs_acl.c
229
struct thread *td)
sys/ufs/ufs/ufs_acl.c
374
ufs_setacl_nfs4_internal(struct vnode *vp, struct acl *aclp, struct thread *td)
sys/ufs/ufs/ufs_extattr.c
101
struct thread *td);
sys/ufs/ufs/ufs_extattr.c
104
struct thread *td);
sys/ufs/ufs/ufs_extattr.c
1044
struct uio *uio, struct ucred *cred, struct thread *td)
sys/ufs/ufs/ufs_extattr.c
1152
struct ucred *cred, struct thread *td)
sys/ufs/ufs/ufs_extattr.c
212
ufs_extattr_start(struct mount *mp, struct thread *td)
sys/ufs/ufs/ufs_extattr.c
226
ufs_extattr_start_locked(struct ufsmount *ump, struct thread *td)
sys/ufs/ufs/ufs_extattr.c
251
struct vnode **vp, struct thread *td)
sys/ufs/ufs/ufs_extattr.c
327
int attrnamespace, const char *attrname, struct thread *td)
sys/ufs/ufs/ufs_extattr.c
368
int attrnamespace, struct thread *td)
sys/ufs/ufs/ufs_extattr.c
450
ufs_extattr_autostart(struct mount *mp, struct thread *td)
sys/ufs/ufs/ufs_extattr.c
463
ufs_extattr_autostart_locked(struct mount *mp, struct thread *td)
sys/ufs/ufs/ufs_extattr.c
558
ufs_extattr_stop(struct mount *mp, struct thread *td)
sys/ufs/ufs/ufs_extattr.c
593
const char *attrname, struct vnode *backing_vnode, struct thread *td)
sys/ufs/ufs/ufs_extattr.c
682
const char *attrname, struct thread *td)
sys/ufs/ufs/ufs_extattr.c
717
struct thread *td = curthread;
sys/ufs/ufs/ufs_extattr.c
842
struct uio *uio, size_t *size, struct ucred *cred, struct thread *td)
sys/ufs/ufs/ufs_extattr.c
85
struct thread *td);
sys/ufs/ufs/ufs_extattr.c
88
struct thread *td);
sys/ufs/ufs/ufs_extattr.c
90
const char *attrname, struct thread *td);
sys/ufs/ufs/ufs_extattr.c
93
struct ucred *cred, struct thread *td);
sys/ufs/ufs/ufs_extattr.c
96
struct thread *td);
sys/ufs/ufs/ufs_extattr.c
98
const char *name, struct ucred *cred, struct thread *td);
sys/ufs/ufs/ufs_extern.h
40
struct thread;
sys/ufs/ufs/ufs_lookup.c
1313
NOCRED, &count, (struct thread *)0);
sys/ufs/ufs/ufs_lookup.c
77
struct thread *td)
sys/ufs/ufs/ufs_lookup.c
851
struct thread *td;
sys/ufs/ufs/ufs_quota.c
1005
setquota(struct thread *td, struct mount *mp, uint64_t id, int type, void *addr)
sys/ufs/ufs/ufs_quota.c
1018
setuse(struct thread *td, struct mount *mp, uint64_t id, int type, void *addr)
sys/ufs/ufs/ufs_quota.c
1034
getquotasize(struct thread *td, struct mount *mp, uint64_t id, int type,
sys/ufs/ufs/ufs_quota.c
1239
auio.uio_td = (struct thread *)0;
sys/ufs/ufs/ufs_quota.c
1423
auio.uio_td = (struct thread *)0;
sys/ufs/ufs/ufs_quota.c
1615
auio.uio_td = (struct thread *)0;
sys/ufs/ufs/ufs_quota.c
491
quotaon(struct thread *td, struct mount *mp, int type, void *fname,
sys/ufs/ufs/ufs_quota.c
643
quotaoff1(struct thread *td, struct mount *mp, int type)
sys/ufs/ufs/ufs_quota.c
709
quotaoff_inchange1(struct thread *td, struct mount *mp, int type)
sys/ufs/ufs/ufs_quota.c
742
quotaoff_inchange(struct thread *td, struct mount *mp, int type)
sys/ufs/ufs/ufs_quota.c
769
quotaoff(struct thread *td, struct mount *mp, int type)
sys/ufs/ufs/ufs_quota.c
794
_getquota(struct thread *td, struct mount *mp, uint64_t id, int type,
sys/ufs/ufs/ufs_quota.c
82
static int quotaoff1(struct thread *td, struct mount *mp, int type);
sys/ufs/ufs/ufs_quota.c
83
static int quotaoff_inchange(struct thread *td, struct mount *mp, int type);
sys/ufs/ufs/ufs_quota.c
835
_setquota(struct thread *td, struct mount *mp, uint64_t id, int type,
sys/ufs/ufs/ufs_quota.c
898
_setuse(struct thread *td, struct mount *mp, uint64_t id, int type,
sys/ufs/ufs/ufs_quota.c
945
getquota32(struct thread *td, struct mount *mp, uint64_t id, int type,
sys/ufs/ufs/ufs_quota.c
961
setquota32(struct thread *td, struct mount *mp, uint64_t id, int type,
sys/ufs/ufs/ufs_quota.c
977
setuse32(struct thread *td, struct mount *mp, uint64_t id, int type, void *addr)
sys/ufs/ufs/ufs_quota.c
992
getquota(struct thread *td, struct mount *mp, uint64_t id, int type, void *addr)
sys/ufs/ufs/ufs_vfsops.c
88
struct thread *td;
sys/ufs/ufs/ufs_vnops.c
103
static int ufs_chmod(struct vnode *, int, struct ucred *, struct thread *);
sys/ufs/ufs/ufs_vnops.c
105
struct thread *);
sys/ufs/ufs/ufs_vnops.c
1050
struct thread *td;
sys/ufs/ufs/ufs_vnops.c
1282
struct thread *td = curthread;
sys/ufs/ufs/ufs_vnops.c
1826
mode_t dmode, struct ucred *cred, struct thread *td)
sys/ufs/ufs/ufs_vnops.c
1904
mode_t mode, struct ucred *cred, struct thread *td)
sys/ufs/ufs/ufs_vnops.c
1983
mode_t child_mode, struct ucred *cred, struct thread *td)
sys/ufs/ufs/ufs_vnops.c
653
struct thread *td = curthread;
sys/ufs/ufs/ufs_vnops.c
813
int file_owner_id, struct ucred *cred, struct thread *td)
sys/ufs/ufs/ufs_vnops.c
872
ufs_chmod(struct vnode *vp, int mode, struct ucred *cred, struct thread *td)
sys/ufs/ufs/ufs_vnops.c
929
struct thread *td)
sys/vm/device_pager.c
422
struct thread *td;
sys/vm/pmap.h
120
void pmap_activate(struct thread *td);
sys/vm/pmap.h
92
struct thread;
sys/vm/swap_pager.c
2646
sys_swapon(struct thread *td, struct swapon_args *uap)
sys/vm/swap_pager.c
2789
kern_swapoff(struct thread *td, const char *name, enum uio_seg name_seg,
sys/vm/swap_pager.c
2831
freebsd13_swapoff(struct thread *td, struct freebsd13_swapoff_args *uap)
sys/vm/swap_pager.c
2838
sys_swapoff(struct thread *td, struct swapoff_args *uap)
sys/vm/swap_pager.c
3262
swapgeom_close(struct thread *td, struct swdevt *sw)
sys/vm/swap_pager.c
3382
swapdev_close(struct thread *td, struct swdevt *sp)
sys/vm/swap_pager.c
3393
swaponvp(struct thread *td, struct vnode *vp, u_long nblks)
sys/vm/swap_pager.c
486
static int swaponvp(struct thread *, struct vnode *, u_long);
sys/vm/swap_pager.h
44
struct thread;
sys/vm/swap_pager.h
46
typedef void sw_close_t(struct thread *, struct swdevt *);
sys/vm/vm_extern.h
100
int vm_forkproc(struct thread *, struct proc *, struct thread *,
sys/vm/vm_extern.h
106
vm_prot_t, int, vm_object_t, vm_ooffset_t, boolean_t, struct thread *);
sys/vm/vm_extern.h
108
int vm_mmap_cdev(struct thread *, vm_size_t, vm_prot_t, vm_prot_t *,
sys/vm/vm_extern.h
110
int vm_mmap_vnode(struct thread *, vm_size_t, vm_prot_t, vm_prot_t *, int *,
sys/vm/vm_extern.h
119
void vmspace_exit(struct thread *);
sys/vm/vm_extern.h
130
void vm_thread_dispose(struct thread *td);
sys/vm/vm_extern.h
131
int vm_thread_new(struct thread *td, int pages);
sys/vm/vm_glue.c
520
vm_thread_new(struct thread *td, int pages)
sys/vm/vm_glue.c
553
vm_thread_dispose(struct thread *td)
sys/vm/vm_glue.c
728
intr_prof_stack_use(struct thread *td, struct trapframe *frame)
sys/vm/vm_glue.c
772
vm_forkproc(struct thread *td, struct proc *p2, struct thread *td2,
sys/vm/vm_kern.c
1023
struct thread *td;
sys/vm/vm_map.c
410
vmspace_exit(struct thread *td)
sys/vm/vm_map.c
4739
struct thread *td;
sys/vm/vm_map.c
583
struct thread *td;
sys/vm/vm_map.h
116
struct thread *wiring_thread;
sys/vm/vm_meter.c
169
struct thread *td;
sys/vm/vm_mmap.c
1073
sys_mlock(struct thread *td, struct mlock_args *uap)
sys/vm/vm_mmap.c
1146
sys_mlockall(struct thread *td, struct mlockall_args *uap)
sys/vm/vm_mmap.c
117
ogetpagesize(struct thread *td, struct ogetpagesize_args *uap)
sys/vm/vm_mmap.c
1219
sys_munlockall(struct thread *td, struct munlockall_args *uap)
sys/vm/vm_mmap.c
1255
sys_munlock(struct thread *td, struct munlock_args *uap)
sys/vm/vm_mmap.c
1262
kern_munlock(struct thread *td, uintptr_t addr0, size_t size)
sys/vm/vm_mmap.c
1300
vm_mmap_vnode(struct thread *td, vm_size_t objsize,
sys/vm/vm_mmap.c
1412
vm_mmap_cdev(struct thread *td, vm_size_t objsize, vm_prot_t prot,
sys/vm/vm_mmap.c
1478
struct thread *td = curthread;
sys/vm/vm_mmap.c
151
sys_mmap(struct thread *td, struct mmap_args *uap)
sys/vm/vm_mmap.c
1532
kern_mmap_racct_check(struct thread *td, vm_map_t map, vm_size_t size)
sys/vm/vm_mmap.c
1571
boolean_t writecounted, struct thread *td)
sys/vm/vm_mmap.c
178
kern_mmap(struct thread *td, const struct mmap_req *mrp)
sys/vm/vm_mmap.c
432
freebsd6_mmap(struct thread *td, struct freebsd6_mmap_args *uap)
sys/vm/vm_mmap.c
457
ommap(struct thread *td, struct ommap_args *uap)
sys/vm/vm_mmap.c
464
kern_ommap(struct thread *td, uintptr_t hint, int len, int oprot,
sys/vm/vm_mmap.c
523
sys_msync(struct thread *td, struct msync_args *uap)
sys/vm/vm_mmap.c
530
kern_msync(struct thread *td, uintptr_t addr0, size_t size, int flags)
sys/vm/vm_mmap.c
576
sys_munmap(struct thread *td, struct munmap_args *uap)
sys/vm/vm_mmap.c
583
kern_munmap(struct thread *td, uintptr_t addr0, size_t size)
sys/vm/vm_mmap.c
666
sys_mprotect(struct thread *td, struct mprotect_args *uap)
sys/vm/vm_mmap.c
674
kern_mprotect(struct thread *td, uintptr_t addr0, size_t size, int prot,
sys/vm/vm_mmap.c
726
sys_minherit(struct thread *td, struct minherit_args *uap)
sys/vm/vm_mmap.c
734
kern_minherit(struct thread *td, uintptr_t addr0, size_t len, int inherit0)
sys/vm/vm_mmap.c
770
sys_madvise(struct thread *td, struct madvise_args *uap)
sys/vm/vm_mmap.c
777
kern_madvise(struct thread *td, uintptr_t addr0, size_t len, int behav)
sys/vm/vm_mmap.c
824
sys_mincore(struct thread *td, struct mincore_args *uap)
sys/vm/vm_mmap.c
831
kern_mincore(struct thread *td, uintptr_t addr0, size_t len, char *vec)
sys/vm/vm_page.c
3974
struct thread *td;
sys/vm/vm_pageout.c
1935
struct thread *td;
sys/vm/vm_pageout.c
2384
struct thread *td;
sys/vm/vm_phys.c
1396
struct thread *td;
sys/vm/vm_swapout.c
282
struct thread *td;
sys/vm/vm_unix.c
239
freebsd11_vadvise(struct thread *td, struct freebsd11_vadvise_args *uap)
sys/vm/vm_unix.c
68
sys_break(struct thread *td, struct break_args *uap)
sys/vm/vm_unix.c
85
kern_break(struct thread *td, uintptr_t *addr)
sys/vm/vnode_pager.c
150
vnode_create_vobject_any(struct vnode *vp, off_t isize, struct thread *td)
sys/vm/vnode_pager.c
186
vnode_create_vobject(struct vnode *vp, off_t isize, struct thread *td)
sys/vm/vnode_pager.c
199
vnode_create_disk_vobject(struct vnode *vp, off_t isize, struct thread *td)
sys/x86/acpica/acpi_apm.c
253
apmopen(struct cdev *dev, int flag, int fmt, struct thread *td)
sys/x86/acpica/acpi_apm.c
270
apmioctl(struct cdev *dev, u_long cmd, caddr_t addr, int flag, struct thread *td)
sys/x86/acpica/acpi_apm.c
389
apmpoll(struct cdev *dev, int events, struct thread *td)
sys/x86/include/sysarch.h
155
struct thread;
sys/x86/include/sysarch.h
158
int i386_get_ldt(struct thread *, struct i386_ldt_args *);
sys/x86/include/sysarch.h
159
int i386_set_ldt(struct thread *, struct i386_ldt_args *, union descriptor *);
sys/x86/include/sysarch.h
160
int i386_get_ioperm(struct thread *, struct i386_ioperm_args *);
sys/x86/include/sysarch.h
161
int i386_set_ioperm(struct thread *, struct i386_ioperm_args *);
sys/x86/include/sysarch.h
162
int amd64_get_ldt(struct thread *, struct i386_ldt_args *);
sys/x86/include/sysarch.h
163
int amd64_set_ldt(struct thread *, struct i386_ldt_args *,
sys/x86/include/sysarch.h
165
int amd64_get_ioperm(struct thread *, struct i386_ioperm_args *);
sys/x86/include/sysarch.h
166
int amd64_set_ioperm(struct thread *, struct i386_ioperm_args *);
sys/x86/include/x86_var.h
103
struct thread;
sys/x86/include/x86_var.h
163
struct pcb *get_pcb_td(struct thread *td);
sys/x86/include/x86_var.h
164
void x86_set_fork_retval(struct thread *td);
sys/x86/isa/clock.c
412
struct thread *td;
sys/x86/x86/cpu_machdep.c
272
struct thread *td;
sys/x86/x86/local_apic.c
1472
struct thread *td;
sys/x86/x86/local_apic.c
1871
struct thread *td;
sys/x86/x86/mca.c
1203
struct thread *td;
sys/x86/x86/mp_x86.c
1335
struct thread *td;
sys/x86/x86/pvclock.c
190
pvclock_cdev_open(struct cdev *dev, int oflags, int devtype, struct thread *td)
sys/x86/x86/stack_machdep.c
106
stack_save_td(struct stack *st, struct thread *td)
sys/x86/x86/stack_machdep.c
66
static struct thread *stack_intr_td;
sys/x86/x86/stack_machdep.c
72
stack_capture(struct thread *td, struct stack *st, register_t fp)
sys/x86/x86/stack_machdep.c
97
struct thread *td;
tests/sys/kern/fdgrowtable_test.c
173
pthread_t thread;
tests/sys/kern/fdgrowtable_test.c
194
REQUIRE(pthread_create(&thread, NULL, exec_thread, NULL) == 0);
tests/sys/kern/fdgrowtable_test.c
202
REQUIRE(pthread_cancel(thread) == 0);
tests/sys/kern/fdgrowtable_test.c
203
REQUIRE(pthread_join(thread, NULL) == 0);
tests/sys/kern/kcov.c
197
pthread_t thread;
tests/sys/kern/kcov.c
202
pthread_create(&thread, NULL,
tests/sys/kern/kcov.c
207
pthread_join(thread, NULL);
tests/sys/kern/kcov.c
366
pthread_t thread;
tests/sys/kern/kcov.c
376
pthread_create(&thread, NULL, thread_test_helper, buf);
tests/sys/kern/kcov.c
377
pthread_join(thread, NULL);
tests/sys/kern/kcov.c
411
int thread;
tests/sys/kern/kcov.c
422
data->thread);
tests/sys/kern/kcov.c
427
"No records found in thread %d", data->thread);
tests/sys/kern/kcov.c
441
pthread_t thread;
tests/sys/kern/kcov.c
446
data.thread = 1;
tests/sys/kern/kcov.c
448
pthread_create(&thread, NULL, multi_thread_test_helper, &data);
tests/sys/kern/kcov.c
449
pthread_join(thread, NULL);
tests/sys/kern/kcov.c
452
data.thread = 2;
tests/sys/kern/kcov.c
454
pthread_create(&thread, NULL, multi_thread_test_helper, &data);
tests/sys/kern/kcov.c
455
pthread_join(thread, NULL);
tests/sys/kern/ptrace_test.c
1235
pthread_t thread;
tests/sys/kern/ptrace_test.c
1237
CHILD_REQUIRE_EQ(pthread_create(&thread, NULL, simple_thread, NULL), 0);
tests/sys/kern/ptrace_test.c
1238
CHILD_REQUIRE_EQ(pthread_join(thread, NULL), 0);
tests/sys/kern/ptrace_test.c
1400
pthread_t thread;
tests/sys/kern/ptrace_test.c
1402
CHILD_REQUIRE_EQ(pthread_create(&thread, NULL, exec_thread, NULL), 0);
tests/sys/kern/socket_splice.c
879
pthread_t thread[2];
tests/sys/kern/socket_splice.c
902
error = pthread_create(&thread[0], NULL, xfer, &xfers[0]);
tests/sys/kern/socket_splice.c
905
error = pthread_create(&thread[1], NULL, xfer, &xfers[1]);
tests/sys/kern/socket_splice.c
909
error = pthread_join(thread[0], NULL);
tests/sys/kern/socket_splice.c
912
error = pthread_join(thread[1], NULL);
tools/regression/kthread/kld/kthrdlk.c
129
struct thread *newthr;
tools/regression/kthread/kld/kthrdlk.c
60
struct thread *td = (struct thread *) arg;
tools/regression/kthread/kld/kthrdlk.c
87
struct thread *td = (struct thread *) arg;
tools/regression/pthread/mutex_isowned_np/mutex_isowned_np.c
64
pthread_create(&thr, NULL, thread, &mtx);
tools/tools/kttcp/sys/kttcp.c
100
static int kttcp_send(struct thread *p, struct kttcp_io_args *);
tools/tools/kttcp/sys/kttcp.c
101
static int kttcp_recv(struct thread *p, struct kttcp_io_args *);
tools/tools/kttcp/sys/kttcp.c
115
kttcpopen(struct cdev *dev, int flag, int mode, struct thread *td)
tools/tools/kttcp/sys/kttcp.c
122
kttcpioctl(struct cdev *dev, u_long cmd, caddr_t data, int flag, struct thread *td)
tools/tools/kttcp/sys/kttcp.c
148
kttcp_send(struct thread *td, struct kttcp_io_args *kio)
tools/tools/kttcp/sys/kttcp.c
196
kttcp_recv(struct thread *td, struct kttcp_io_args *kio)
tools/tools/mctest/mctest.cc
364
pthread_t thread[clients];
tools/tools/mctest/mctest.cc
371
if (pthread_create(&thread[i], NULL, server, &args[i]) != 0) {
tools/tools/mctest/mctest.cc
396
if (pthread_join(thread[i], NULL) != 0) {
tools/tools/netmap/pkt-gen.c
1702
if (setaffinity(targ->thread, targ->affinity))
tools/tools/netmap/pkt-gen.c
1935
if (setaffinity(targ->thread, targ->affinity))
tools/tools/netmap/pkt-gen.c
2074
if (setaffinity(targ->thread, targ->affinity))
tools/tools/netmap/pkt-gen.c
2270
if (setaffinity(targ->thread, targ->affinity))
tools/tools/netmap/pkt-gen.c
2700
if (pthread_create(&t->thread, NULL, g->td_body, t) == -1) {
tools/tools/netmap/pkt-gen.c
2803
pthread_join(targs[i].thread, NULL); /* blocking */
tools/tools/netmap/pkt-gen.c
339
pthread_t thread;
tools/tools/netrate/juggle/juggle.c
318
pthread_t thread;
tools/tools/netrate/juggle/juggle.c
326
if (pthread_create(&thread, NULL, juggling_thread, &fd2) != 0)
tools/tools/netrate/juggle/juggle.c
358
if (pthread_join(thread, NULL) != 0)
usr.bin/top/display.c
349
printf("%d %s:", total, ps.thread ? "threads" : "processes");
usr.bin/top/display.c
354
while (i++ < (ps.thread ? 6 : 4))
usr.bin/top/display.c
391
printf(" %s:", ps.thread ? "threads" : "processes");
usr.bin/top/display.c
394
while (i++ < (ps.thread ? 6 : 4))
usr.bin/top/machine.c
1127
if (ps.thread && pp->ki_flag & P_HADTHREADS &&
usr.bin/top/machine.c
1138
if (ps.thread && pp->ki_flag & P_HADTHREADS &&
usr.bin/top/machine.c
1184
if (ps.thread && pp->ki_flag & P_HADTHREADS &&
usr.bin/top/machine.c
1194
if (ps.thread && pp->ki_flag & P_HADTHREADS &&
usr.bin/top/machine.c
1244
if (!ps.thread) {
usr.bin/top/machine.c
488
if (!ps.thread) {
usr.bin/top/machine.c
714
sizeof(*previous_pref), ps.thread ? compare_tid : compare_pid);
usr.bin/top/machine.c
836
if (previous_thread != sel->thread)
usr.bin/top/machine.c
838
previous_thread = sel->thread;
usr.bin/top/machine.c
859
ps.thread ? compare_tid : compare_pid);
usr.bin/top/machine.c
866
pbase = kvm_getprocs(kd, sel->thread ? KERN_PROC_ALL : KERN_PROC_PROC,
usr.bin/top/machine.c
933
if (sel->thread && PCTCPU(pp) > 1.0)
usr.bin/top/machine.h
67
bool thread; /* show threads */
usr.bin/top/top.c
281
ps.thread = false;
usr.bin/top/top.c
432
ps.thread = !ps.thread;
usr.bin/top/top.c
987
ps.thread = !ps.thread;
usr.bin/top/top.c
990
ps.thread ? "separately" : "as a count");
usr.sbin/bhyve/tpm_intf_crb.c
182
pthread_t thread;
usr.sbin/bhyve/tpm_intf_crb.c
551
error = pthread_create(&crb->thread, NULL, tpm_crb_thread, crb);
usr.sbin/bhyve/tpm_intf_crb.c
557
pthread_set_name_np(crb->thread, "tpm_intf_crb");
usr.sbin/bhyve/tpm_intf_crb.c
583
pthread_join(crb->thread, NULL);