Symbol: ksched
crypto/openssl/include/crypto/evp.h
376
#define BLOCK_CIPHER_func_ecb(cname, cprefix, kstruct, ksched) \
crypto/openssl/include/crypto/evp.h
380
cprefix##_ecb_encrypt(in + i, out + i, &EVP_C_DATA(kstruct, ctx)->ksched, EVP_CIPHER_CTX_is_encrypting(ctx)); \
crypto/openssl/include/crypto/evp.h
386
#define BLOCK_CIPHER_func_ofb(cname, cprefix, cbits, kstruct, ksched) \
crypto/openssl/include/crypto/evp.h
391
cprefix##_ofb##cbits##_encrypt(in, out, (long)EVP_MAXCHUNK, &EVP_C_DATA(kstruct, ctx)->ksched, ctx->iv, &num); \
crypto/openssl/include/crypto/evp.h
399
cprefix##_ofb##cbits##_encrypt(in, out, (long)inl, &EVP_C_DATA(kstruct, ctx)->ksched, ctx->iv, &num); \
crypto/openssl/include/crypto/evp.h
405
#define BLOCK_CIPHER_func_cbc(cname, cprefix, kstruct, ksched) \
crypto/openssl/include/crypto/evp.h
409
cprefix##_cbc_encrypt(in, out, (long)EVP_MAXCHUNK, &EVP_C_DATA(kstruct, ctx)->ksched, ctx->iv, EVP_CIPHER_CTX_is_encrypting(ctx)); \
crypto/openssl/include/crypto/evp.h
415
cprefix##_cbc_encrypt(in, out, (long)inl, &EVP_C_DATA(kstruct, ctx)->ksched, ctx->iv, EVP_CIPHER_CTX_is_encrypting(ctx)); \
crypto/openssl/include/crypto/evp.h
419
#define BLOCK_CIPHER_func_cfb(cname, cprefix, cbits, kstruct, ksched) \
crypto/openssl/include/crypto/evp.h
430
&EVP_C_DATA(kstruct, ctx)->ksched, ctx->iv, \
crypto/openssl/include/crypto/evp.h
442
#define BLOCK_CIPHER_all_funcs(cname, cprefix, cbits, kstruct, ksched) \
crypto/openssl/include/crypto/evp.h
443
BLOCK_CIPHER_func_cbc(cname, cprefix, kstruct, ksched) \
crypto/openssl/include/crypto/evp.h
444
BLOCK_CIPHER_func_cfb(cname, cprefix, cbits, kstruct, ksched) \
crypto/openssl/include/crypto/evp.h
445
BLOCK_CIPHER_func_ecb(cname, cprefix, kstruct, ksched) \
crypto/openssl/include/crypto/evp.h
446
BLOCK_CIPHER_func_ofb(cname, cprefix, cbits, kstruct, ksched)
crypto/openssl/include/crypto/evp.h
565
#define IMPLEMENT_BLOCK_CIPHER(cname, ksched, cprefix, kstruct, nid, \
crypto/openssl/include/crypto/evp.h
569
BLOCK_CIPHER_all_funcs(cname, cprefix, cbits, kstruct, ksched) \
crypto/openssl/include/crypto/evp.h
574
#define IMPLEMENT_CFBR(cipher, cprefix, kstruct, ksched, keysize, cbits, iv_len, fl) \
crypto/openssl/include/crypto/evp.h
575
BLOCK_CIPHER_func_cfb(cipher##_##keysize, cprefix, cbits, kstruct, ksched) \
sys/kern/ksched.c
106
getscheduler(struct ksched *ksched, struct thread *td, int *policy)
sys/kern/ksched.c
128
ksched_setparam(struct ksched *ksched,
sys/kern/ksched.c
133
e = getscheduler(ksched, td, &policy);
sys/kern/ksched.c
135
e = ksched_setscheduler(ksched, td, policy, 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
211
return (getscheduler(ksched, td, policy));
sys/kern/ksched.c
216
ksched_yield(struct ksched *ksched)
sys/kern/ksched.c
224
ksched_get_priority_max(struct ksched *ksched, int policy, int *prio)
sys/kern/ksched.c
245
ksched_get_priority_min(struct ksched *ksched, int policy, int *prio)
sys/kern/ksched.c
266
ksched_rr_get_interval(struct ksched *ksched, struct thread *td,
sys/kern/ksched.c
270
*timespec = ksched->rr_interval;
sys/kern/ksched.c
60
ksched_attach(struct ksched **p)
sys/kern/ksched.c
62
struct ksched *ksched;
sys/kern/ksched.c
64
ksched = malloc(sizeof(*ksched), M_P31B, M_WAITOK);
sys/kern/ksched.c
65
ksched->rr_interval.tv_sec = 0;
sys/kern/ksched.c
66
ksched->rr_interval.tv_nsec = 1000000000L / hz * sched_rr_interval();
sys/kern/ksched.c
67
*p = ksched;
sys/kern/ksched.c
72
ksched_detach(struct ksched *ks)
sys/kern/p1003_1b.c
101
int ret = ksched_attach(&ksched);
sys/kern/p1003_1b.c
149
error = ksched_setparam(ksched, targettd,
sys/kern/p1003_1b.c
193
error = ksched_getparam(ksched, targettd, param);
sys/kern/p1003_1b.c
243
error = ksched_setscheduler(ksched, targettd, policy,
sys/kern/p1003_1b.c
286
error = ksched_getscheduler(ksched, targettd, policy);
sys/kern/p1003_1b.c
304
error = ksched_get_priority_max(ksched, uap->policy, &prio);
sys/kern/p1003_1b.c
315
error = ksched_get_priority_min(ksched, uap->policy, &prio);
sys/kern/p1003_1b.c
369
error = ksched_rr_get_interval(ksched, targettd, ts);
sys/kern/p1003_1b.c
96
static struct ksched *ksched;
sys/sys/posix4.h
100
int ksched_getscheduler(struct ksched *, struct thread *, int *);
sys/sys/posix4.h
102
int ksched_yield(struct ksched *);
sys/sys/posix4.h
104
int ksched_get_priority_max(struct ksched *, int, int *);
sys/sys/posix4.h
105
int ksched_get_priority_min(struct ksched *, int, int *);
sys/sys/posix4.h
107
int ksched_rr_get_interval(struct ksched *,
sys/sys/posix4.h
88
struct ksched;
sys/sys/posix4.h
90
int ksched_attach(struct ksched **);
sys/sys/posix4.h
91
int ksched_detach(struct ksched *);
sys/sys/posix4.h
93
int ksched_setparam(struct ksched *,
sys/sys/posix4.h
95
int ksched_getparam(struct ksched *,
sys/sys/posix4.h
98
int ksched_setscheduler(struct ksched *,