Searched defs:work (Results 1 - 25 of 33) sorted by relevance

12

/illumos-gate/usr/src/lib/libsmbfs/smb/
H A Diod_wk.c67 smbioc_ssn_work_t *work = &ctx->ct_work; local
146 SMBIOC_IOD_WORK, work) == -1) {
151 vcst = work->wk_out_state;
/illumos-gate/usr/src/cmd/mail/
H A Dgoback.c44 char buf[1024], *cp, work[1024], wuser[1024]; local
61 work[0] = '\0';
91 strcat(work, buf);
116 strcat(work, wuser);
119 if (work[0] != '\0') {
123 "mail %s %s", m_sendto, work);
129 (void) strlcpy(work, my_name, sizeof (work));
131 fprintf(stderr, "%s: Return to %s\n", program, work);
151 pushlist(H_TCOPY, HEAD, work, FALS
[all...]
/illumos-gate/usr/src/cmd/sgs/libelf/common/
H A Dnewdata.c43 unsigned work; local
71 ELFACCESSDATA(work, _elf_work)
78 s->s_dnode.db_data.d_version = work;
88 d->db_data.d_version = work;
H A Dnewphdr.c72 unsigned work; local
105 ELFACCESSDATA(work, _elf_work)
106 if ((sz = count * _elf_msize(ELF_T_PHDR, work)) == 0) {
134 = (Half)elf_fsize(ELF_T_PHDR, 1, work);
H A Dbegin.c202 unsigned work; local
207 ELFACCESSDATA(work, _elf_work)
208 if (work == EV_NONE) {
303 unsigned work; local
306 ELFACCESSDATA(work, _elf_work)
307 if (work == EV_NONE) /* version() not called yet */
H A Dgetdata.c118 unsigned work; local
169 ELFACCESSDATA(work, _elf_work)
170 d->db_data.d_version = work;
H A Dclscook.c152 unsigned work; local
173 ELFACCESSDATA(work, _elf_work)
174 d->db_data.d_type = _elf_mtype(elf, sh->sh_type, work);
302 unsigned work; local
314 ELFACCESSDATA(work, _elf_work)
315 msz = _elf_msize(ELF_T_PHDR, work) * eh->e_phnum;
339 dst.d_version = work;
H A Dupdate.c550 unsigned work; local
560 ELFACCESSDATA(work, _elf_work)
561 src.d_version = work;
891 unsigned work; local
900 ELFACCESSDATA(work, _elf_work)
901 src.d_version = dst.d_version = work;
/illumos-gate/usr/src/common/net/wanboot/crypt/
H A Daes_test.c72 unsigned char work[AES_BLOCK_SIZE]; local
95 bcopy(plain, work, AES_BLOCK_SIZE);
96 aes_encrypt(ah, work);
98 if (bcmp(work, cipher, AES_BLOCK_SIZE) != 0) {
102 aes_decrypt(ah, work);
103 if (bcmp(work, plain, AES_BLOCK_SIZE) != 0) {
H A Ddes.c195 work = ((r >> 4) | (r << 28)) ^ (key)[0];\
196 l ^= Spbox[6][work & 0x3f];\
197 l ^= Spbox[4][(work >> 8) & 0x3f];\
198 l ^= Spbox[2][(work >> 16) & 0x3f];\
199 l ^= Spbox[0][(work >> 24) & 0x3f];\
200 work = r ^ (key)[1];\
201 l ^= Spbox[7][work & 0x3f];\
202 l ^= Spbox[5][(work >> 8) & 0x3f];\
203 l ^= Spbox[3][(work >> 16) & 0x3f];\
204 l ^= Spbox[1][(work >> 2
214 uint32_t work; local
[all...]
H A Ddes3_test.c115 unsigned char work[DES3_BLOCK_SIZE]; local
140 bcopy(plain, work, DES3_BLOCK_SIZE);
141 des3_encrypt(d3h, work);
143 if (bcmp(work, cipher, DES3_BLOCK_SIZE) != 0) {
146 putxdata(work, DES3_BLOCK_SIZE);
149 des3_decrypt(d3h, work);
150 if (bcmp(work, plain, DES3_BLOCK_SIZE) != 0) {
153 putxdata(work, DES3_BLOCK_SIZE);
/illumos-gate/usr/src/uts/common/io/ib/clients/rdsv3/
H A Dthreads.c52 * work queues that execute in a connection managing thread.
168 rdsv3_connect_worker(struct rdsv3_work_s *work) argument
170 struct rdsv3_connection *conn = container_of(work,
171 struct rdsv3_connection, c_conn_w.work);
174 RDSV3_DPRINTF2("rdsv3_connect_worker", "Enter(work: %p)", work);
202 RDSV3_DPRINTF2("rdsv3_connect_worker", "Return(work: %p)", work);
206 rdsv3_send_worker(struct rdsv3_work_s *work) argument
208 struct rdsv3_connection *conn = container_of(work,
234 rdsv3_recv_worker(struct rdsv3_work_s *work) argument
262 rdsv3_shutdown_worker(struct rdsv3_work_s *work) argument
272 rdsv3_reaper_worker(struct rdsv3_work_s *work) argument
[all...]
H A Drdsv3_impl.c523 rdsv3_work_t *work; local
528 work = list_remove_head(&wq->wq_queue);
529 while (work) {
532 /* process work */
533 work->func(work);
536 work = list_remove_head(&wq->wq_queue);
539 /* No more work, go home, until called again */
633 /* timeout handler for delayed work queuing */
640 "Enter(wq: %p, wp: %p)", dwp->wq, &dwp->work);
761 rdsv3_rdma_init_worker(struct rdsv3_work_s *work) argument
[all...]
/illumos-gate/usr/src/cmd/sgs/yacc/common/
H A Dy3.c253 int i, work, cc; local
260 work = 1;
261 while (work) {
262 work = 0;
274 work = 1;
H A Dy1.c1020 int c, ch, work, k; local
1042 work = 1;
1043 while (work) {
1044 work = 0;
1104 v->flag = work = 1;
1116 work = 1;
/illumos-gate/usr/src/uts/common/zmod/
H A Dinflate.h115 unsigned short work[288]; /* work area for code table building */ member in struct:inflate_state
/illumos-gate/usr/src/boot/lib/libz/test/
H A Dinfcover.c519 /* allocate work areas */
621 unsigned short lens[16], work[16]; local
631 ret = inflate_table(DISTS, lens, 16, &next, &bits, work);
635 ret = inflate_table(DISTS, lens, 16, &next, &bits, work);
/illumos-gate/usr/src/cmd/newform/
H A Dnewform.c37 * center 5 Center text in the work area.
105 work[3*NCOLS+1], /* Work area */ variable
108 *wfirst = &work[0], /* Pointer to beginning of work area */
109 *wlast = &work[3*NCOLS], /* Pointer to end of work area */
290 center(void) /* Center the text in the work area. */
300 if (pfirst < &work[NCOLS]) {
301 tlast = plast + (&work[NCOLS] - pfirst);
307 tfirst = &work[NCOL
[all...]
/illumos-gate/usr/src/cmd/eject/
H A Deject.c62 static int work(char *, char *);
157 excode = work(NULL, rmmount_opt);
161 res = work(argv[optind], rmmount_opt);
185 * the the real work of ejecting (and notifying)
188 work(char *arg, char *rmmount_opt) function
513 * work around problem where '-' in /etc/mnttab for
/illumos-gate/usr/src/cmd/latencytop/common/
H A Dtable.c485 parse_config(const char *work, int work_len) argument
506 while (read_line_from_mem(work, work_len, line, sizeof (line),
612 const char *work = NULL; local
617 work = &latencytop_trans_start;
650 work = config_loaded;
667 if (work_len != 0 && parse_config(work, work_len) != 0) {
/illumos-gate/usr/src/boot/lib/libz/
H A Dinflate.h117 unsigned short work[288]; /* work area for code table building */ member in struct:inflate_state
/illumos-gate/usr/src/cmd/deroff/
H A Dderoff.c129 static void work(void) __NORETURN;
187 work();
321 work(void) function
/illumos-gate/usr/src/uts/common/sys/ib/clients/rdsv3/
H A Drdsv3_impl.h265 rdsv3_work_t work; member in struct:rdsv3_delayed_work_s
272 (dwp)->work.func = f; \
/illumos-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DLocalConsumer.java600 work() method in class:LocalConsumer
642 // case at the top of this work() method). It is
670 * the created thread must call {@link #work()} in order to run this
689 * work();
707 work();
807 // The work() thread that runs the native consumer
852 // Wait for work() to set workEnded. If the work()
/illumos-gate/usr/src/uts/common/dtrace/
H A Dfasttrap.c370 * get a chance to do that work if and when the timeout is reenabled
2287 uint_t work; local
2290 * and start a new timeout if any work has accumulated while
2295 work = fasttrap_cleanup_work;
2298 if (work)

Completed in 108 milliseconds

12