Searched refs:td (Results 1 - 25 of 74) sorted by relevance

123

/illumos-gate/usr/src/common/net/wanboot/crypt/
H A Dhmac_test.c56 test_data_t td[7]; local
63 td[0].keylen = 20;
64 getxdata(td[0].key, "0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b",
65 td[0].keylen);
66 td[0].datalen = 8;
67 (void) strcpy((char *)td[0].data, "Hi There");
68 getxdata(td[0].digest, "b617318655057264e28bc0b6fb378c8ef146be00", 20);
70 td[1].keylen = 4;
71 (void) strcpy((char *)td[1].key, "Jefe");
72 td[
[all...]
H A Daes_test.c52 static test_data_t td[] = { variable
83 num = sizeof (td) / sizeof (test_data_t);
87 (void) printf("Test #%d [AES%d] ", i, td[i].keysize * 8);
88 getxdata(key, td[i].key, td[i].keysize);
89 aes_key(ah, key, td[i].keysize);
91 getxdata(plain, td[i].plain, AES_BLOCK_SIZE);
93 getxdata(cipher, td[i].cipher, AES_BLOCK_SIZE);
H A Ddes3_test.c32 * Using the values for td[], encrypts plain text using the provided
55 static test_data_t td[] = { variable
126 num = sizeof (td) / sizeof (test_data_t);
131 getxdata(key, td[i].key, DES_KEY_SIZE);
136 getxdata(plain, td[i].plain, DES3_BLOCK_SIZE);
138 getxdata(cipher, td[i].cipher, DES3_BLOCK_SIZE);
/illumos-gate/usr/src/cmd/mdb/common/mdb/
H A Dmdb_termio.c399 termio_data_t *td = io->io_data; local
411 td->tio_rti_on = TRUE;
412 if (termio_ctl(td->tio_io, TCSETSW, &td->tio_rtios) == -1)
416 if ((c = mdb_iob_getc(td->tio_in)) == EOF)
425 if (td->tio_flags & TIO_TAB)
426 termio_redraw(td);
428 termio_prompt(td);
434 if (sigsetjmp(td->tio_env, 1) != 0) {
435 td
554 termio_data_t *td = io->io_data; local
572 termio_data_t *td = io->io_data; local
588 termio_data_t *td = io->io_data; local
609 termio_data_t *td = io->io_data; local
620 termio_data_t *td = io->io_data; local
632 termio_data_t *td = io->io_data; local
644 termio_data_t *td = io->io_data; local
685 termio_warn(termio_data_t *td, uint_t flag, const char *format, ...) argument
705 termio_suspend_tty(termio_data_t *td, struct termios *iosp) argument
737 termio_resume_tty(termio_data_t *td, struct termios *iosp) argument
882 termio_data_t *td = io->io_data; local
889 termio_data_t *td = io->io_data; local
899 termio_delay(termio_data_t *td, uint_t usec) argument
915 termio_pad(termio_data_t *td, const char *s, uint_t lines) argument
978 termio_putp(termio_data_t *td, const char *s, uint_t lines) argument
997 termio_puts(termio_data_t *td, const char *s, uint_t lines) argument
1010 termio_tput(termio_data_t *td, const char *s, uint_t lines) argument
1017 termio_addch(termio_data_t *td, char c, size_t width) argument
1036 termio_insch(termio_data_t *td, char c, size_t width) argument
1063 termio_mvcur(termio_data_t *td) argument
1107 termio_backleft(termio_data_t *td) argument
1121 termio_bspch(termio_data_t *td) argument
1136 termio_delch(termio_data_t *td) argument
1149 termio_clear(termio_data_t *td) argument
1171 termio_redraw(termio_data_t *td) argument
1205 termio_prompt(termio_data_t *td) argument
1231 termio_dump(termio_data_t *td, const termio_attr_t *ta) argument
1266 termio_setup_attrs(termio_data_t *td, const char *name) argument
1454 termio_data_t *td; local
1629 termio_insert(termio_data_t *td, int c) argument
1644 termio_accept(termio_data_t *td, int c) argument
1664 termio_backspace(termio_data_t *td, int c) argument
1691 termio_tab(termio_data_t *td, int c) argument
1738 termio_delchar(termio_data_t *td, int c) argument
1756 termio_fwdchar(termio_data_t *td, int c) argument
1765 termio_backchar(termio_data_t *td, int c) argument
1774 termio_transpose(termio_data_t *td, int c) argument
1783 termio_home(termio_data_t *td, int c) argument
1792 termio_end(termio_data_t *td, int c) argument
1801 termio_fwdword(termio_data_t *td, int c) argument
1810 termio_backword(termio_data_t *td, int c) argument
1819 termio_kill(termio_data_t *td, int c) argument
1828 termio_killfwdword(termio_data_t *td, int c) argument
1837 termio_killbackword(termio_data_t *td, int c) argument
1846 termio_reset(termio_data_t *td, int c) argument
1856 termio_widescreen(termio_data_t *td, int c) argument
1871 termio_prevhist(termio_data_t *td, int c) argument
1880 termio_nexthist(termio_data_t *td, int c) argument
1895 termio_accel(termio_data_t *td, int c) argument
1909 termio_findhist(termio_data_t *td, int c) argument
1923 termio_refresh(termio_data_t *td, int c) argument
1938 termio_abort(termio_data_t *td, int c, int err) argument
1953 termio_intr(termio_data_t *td, int c) argument
1959 termio_quit(termio_data_t *td, int c) argument
1966 termio_susp(termio_data_t *td, int c) argument
1998 termio_data_t *td = data; local
[all...]
/illumos-gate/usr/src/uts/common/sys/usb/hcd/uhci/
H A Duhci.h172 #define GetField(u, td, f, o, l) \
173 ((GetTD32(u, (td)->f) >> (o)) & ((1U<<l)-1))
175 #define SetField(u, td, f, o, l, v) \
176 SetTD32(u, (td)->f, \
177 (GetTD32(u, (td)->f) & ~(((1U<<l)-1) << o)) | \
180 #define GetTD_alen(u, td) GetField((u), (td), dw2, 0, 11)
181 #define GetTD_status(u, td) GetField((u), (td), dw2, 16, 8)
182 #define GetTD_ioc(u, td) GetFiel
[all...]
H A Duhciutil.h74 void uhci_handle_ctrl_td(uhci_state_t *uhcip, uhci_td_t *td);
78 void uhci_handle_intr_td(uhci_state_t *uhcip, uhci_td_t *td);
82 uhci_pipe_private_t *pp, uhci_td_t *td);
84 void uhci_delete_td(uhci_state_t *uhcip, uhci_td_t *td);
157 void uhci_handle_bulk_td(uhci_state_t *uhcip, uhci_td_t *td);
170 void uhci_handle_isoc_td(uhci_state_t *uhcip, uhci_td_t *td);
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Ddmu_traverse.c69 static int traverse_dnode(traverse_data_t *td, const dnode_phys_t *dnp,
71 static void prefetch_dnode_metadata(traverse_data_t *td, const dnode_phys_t *,
77 traverse_data_t *td = arg; local
83 if (claim_txg == 0 && bp->blk_birth >= spa_first_txg(td->td_spa))
86 SET_BOOKMARK(&zb, td->td_objset, ZB_ZIL_OBJECT, ZB_ZIL_LEVEL,
89 (void) td->td_func(td->td_spa, zilog, bp, &zb, NULL, td->td_arg);
97 traverse_data_t *td = arg; local
110 SET_BOOKMARK(&zb, td
120 traverse_zil(traverse_data_t *td, zil_header_t *zh) argument
155 resume_skip_check(traverse_data_t *td, const dnode_phys_t *dnp, const zbookmark_phys_t *zb) argument
180 traverse_prefetch_metadata(traverse_data_t *td, const blkptr_t *bp, const zbookmark_phys_t *zb) argument
214 traverse_visitbp(traverse_data_t *td, const dnode_phys_t *dnp, const blkptr_t *bp, const zbookmark_phys_t *zb) argument
427 prefetch_dnode_metadata(traverse_data_t *td, const dnode_phys_t *dnp, uint64_t objset, uint64_t object) argument
445 traverse_dnode(traverse_data_t *td, const dnode_phys_t *dnp, uint64_t objset, uint64_t object) argument
525 traverse_data_t td = *td_main; local
552 traverse_data_t td; local
[all...]
/illumos-gate/usr/src/uts/common/io/usb/hcd/uhci/
H A Duhcipolled.c205 uhci_td_t *td; local
232 td = uhci_polledp->uhci_polled_td;
237 if (GetTD_status(uhcip, td) & UHCI_TD_ACTIVE) {
244 if ((GetTD_status(uhcip, td) & TD_STATUS_MASK) ||
245 (GetTD_alen(uhcip, td) == ZERO_LENGTH)) {
247 SetTD_alen(uhcip, td, 0);
249 *num_characters = GetTD_alen(uhcip, td) + 1;
251 tw = td->tw;
256 (uint8_t *)td->tw->tw_buf,
261 * Insert the td agai
392 uhci_td_t *td; local
540 uhci_td_t *td = uhci_polledp->uhci_polled_td; local
571 uhci_td_t *td, *polled_td; local
704 uhci_td_t *td, *polled_td; local
795 uhci_td_t *td; local
[all...]
H A Duhci.c127 static void uhci_handle_intr_td_errors(uhci_state_t *uhcip, uhci_td_t *td,
130 usb_cr_t usb_err, uhci_td_t *td);
357 /* Create the td and ed pools */
1132 uhci_handle_intr_td(uhci_state_t *uhcip, uhci_td_t *td) argument
1137 uhci_trans_wrapper_t *tw = td->tw;
1148 /* set tw->tw_claim flag, so that nobody else works on this td. */
1155 usb_err = uhci_parse_td_error(uhcip, pp, td);
1158 bytes_xfered = GetTD_alen(uhcip, td);
1162 GetTD_mlen(uhcip, td))) {
1180 * If error occurred or all data xfered, delete the current td,
1416 uhci_handle_ctrl_td(uhci_state_t *uhcip, uhci_td_t *td) argument
1718 uhci_handle_intr_td_errors(uhci_state_t *uhcip, uhci_td_t *td, uhci_trans_wrapper_t *tw, uhci_pipe_private_t *pp) argument
1747 uhci_handle_one_xfer_completion( uhci_state_t *uhcip, usb_cr_t usb_err, uhci_td_t *td) argument
1795 uhci_parse_td_error(uhci_state_t *uhcip, uhci_pipe_private_t *pp, uhci_td_t *td) argument
[all...]
H A Duhciutil.c62 uhci_td_t *td, uhci_td_t *current_dummy,
91 static void uhci_handle_bulk_td_errors(uhci_state_t *uhcip, uhci_td_t *td);
106 uhci_td_t *td);
108 static void uhci_print_td(uhci_state_t *uhcip, uhci_td_t *td);
202 * Add a dummy td that is used to generate an interrupt for
354 uhci_td_t *td; local
362 td = &uhcip->uhci_td_pool_addr[i];
366 (flag != TD_FLAG_DUMMY) && (td->tw != NULL)) {
367 tw = td->tw;
545 * Set the ioc bit of the isoc intr td
1875 uhci_td_t *td, *current_dummy; local
1940 uhci_fill_in_td( uhci_state_t *uhcip, uhci_td_t *td, uhci_td_t *current_dummy, uint32_t buffer_offset, size_t length, uhci_pipe_private_t *pp, uchar_t PID, usb_req_attrs_t attrs, uhci_trans_wrapper_t *tw) argument
2555 uhci_delete_td(uhci_state_t *uhcip, uhci_td_t *td) argument
2742 uhci_td_t *td; local
3262 uhci_handle_bulk_td(uhci_state_t *uhcip, uhci_td_t *td) argument
3526 uhci_handle_bulk_td_errors(uhci_state_t *uhcip, uhci_td_t *td) argument
4289 uhci_handle_isoc_td(uhci_state_t *uhcip, uhci_td_t *td) argument
4413 uhci_delete_isoc_td(uhci_state_t *uhcip, uhci_td_t *td) argument
5003 uhci_print_td(uhci_state_t *uhcip, uhci_td_t *td) argument
[all...]
/illumos-gate/usr/src/tools/ctf/cvt/
H A Dtdata.c274 tdata_label_add(tdata_t *td, char *label, int idx) argument
279 le->le_idx = (idx == -1 ? td->td_nextid - 1 : idx);
281 slist_add(&td->td_labels, le, (int (*)())tdata_label_cmp);
296 tdata_label_top(tdata_t *td) argument
300 (void) list_iter(td->td_labels, tdata_label_top_cb, &top);
312 tdata_label_find(tdata_t *td, char *label) argument
318 ret = (labelent_t *)list_first(td->td_labels);
324 if (!(ret = (labelent_t *)list_find(td->td_labels, &let,
346 tdata_label_newmax(tdata_t *td, int newmax) argument
348 (void) list_iter(td
361 tdata_label_free(tdata_t *td) argument
391 tdata_free(tdata_t *td) argument
412 tdata_t *td = private; local
438 tdata_build_hashes_common(tdata_t *td, hash_t *hash) argument
445 tdata_build_hashes(tdata_t *td) argument
[all...]
H A Dfixup_tdescs.c53 fix_ptrptr_to_struct(tdata_t *td) argument
91 p2->t_id = td->td_nextid++;
96 p1->t_id = td->td_nextid++;
107 fix_ptr_to_struct(tdata_t *td) argument
140 ptr->t_id = td->td_nextid++;
154 cvt_fixstabs(tdata_t *td) argument
156 fix_ptrptr_to_struct(td);
157 fix_ptr_to_struct(td);
179 lookup_tdesc(tdata_t *td, const char *name) argument
182 iter_iidescs_by_name(td, nam
198 fix_small_cpu_struct(tdata_t *td, size_t ptrsize) argument
274 cvt_fixups(tdata_t *td, size_t ptrsize) argument
[all...]
H A Dstabs.c116 resolve_nodes(tdata_t *td) argument
120 (void) iitraverse_hash(td->td_iihash, &td->td_curvgen, resolve_cbs,
121 NULL, NULL, td);
177 stabs_read(tdata_t *td, Elf *elf, const char *file) argument
212 parse_init(td);
345 iidesc_add(td->td_iihash, iidescp);
354 iidesc_add(td->td_iihash, iidescp);
373 resolve_nodes(td);
375 parse_finish(td);
[all...]
H A Doutput.c116 iiburst_new(tdata_t *td, int max) argument
119 iiburst->iib_td = td;
191 find_iidesc(tdata_t *td, iidesc_match_t *match) argument
194 iter_iidescs_by_name(td, match->iim_name,
299 * the weak symbol. We also need to add it to the td so it's
303 copy_from_strong(tdata_t *td, GElf_Sym *sym, iidesc_t *strongdesc, argument
318 hash_add(td->td_iihash, new);
329 sort_iidescs(Elf *elf, const char *file, tdata_t *td, int fuzzymatch, argument
354 iiburst = iiburst_new(td, nent);
389 iidesc = find_iidesc(td,
669 make_ctf_data(tdata_t *td, Elf *elf, const char *file, size_t *lenp, int flags) argument
684 write_ctf(tdata_t *td, const char *curname, const char *newname, int flags) argument
[all...]
/illumos-gate/usr/src/cmd/sendmail/db/xa/
H A Dxa.c168 TXN_DETAIL *td; local
199 td = (TXN_DETAIL *)((u_int8_t *)env->tx_info->region + off);
200 if (td->xa_status == TXN_XA_SUSPENDED && !LF_ISSET(TMRESUME))
202 if (td->xa_status == TXN_XA_DEADLOCKED)
204 if (td->xa_status == TXN_XA_ABORTED)
208 __xa_txn_init(env, td, off);
209 td->xa_status = TXN_XA_STARTED;
214 td = (TXN_DETAIL *)
216 td->xa_status = TXN_XA_STARTED;
233 TXN_DETAIL *td; local
286 TXN_DETAIL *td; local
338 TXN_DETAIL *td; local
555 TXN_DETAIL *td; local
[all...]
H A Dxa_map.c113 struct __txn_detail *td; local
123 for (td = SH_TAILQ_FIRST(&tmr->active_txn, __txn_detail);
124 td != NULL;
125 td = SH_TAILQ_NEXT(td, links, __txn_detail))
126 if (memcmp(xid->data, td->xid, XIDDATASIZE) == 0)
130 if (td == NULL)
133 *offp = (u_int8_t *)td - (u_int8_t *)tmr;
195 TXN_DETAIL *td; local
198 td
220 TXN_DETAIL *td; local
[all...]
/illumos-gate/usr/src/cmd/mdb/common/modules/uhci/
H A Duhci.c63 * For the current uchi_state_t*, see if the td address is in its pool.
72 void *fic_td_qh; /* td/qh we want uhci instance for */
120 /* td/qh address is within pool for this instance of uhci. */
129 * Figure out which instance of uhci owns a td/qh.
131 * - td_qh: a pointer to a uhci td or qh
132 * - td_or_qh: a flag indicating which it is (td/qh),
195 uhci_td_t td; local
227 if (mdb_vread(&td, sizeof (td), addr) != sizeof (td)) {
[all...]
/illumos-gate/usr/src/tools/scripts/
H A Dwdiff.pl91 .hidebar td.active-down { border: 1px solid #ff9900;
94 .hidebar td.active-down:hover { background-color: #ffcc99; }
96 .hidebar td.active-up { border: 1px solid #ff9900; cursor: n-resize;
99 .hidebar td.active-up:hover { background-color: #ffcc99; }
101 .hidebar td.elided-label { font-style: italic; width: 12em; }
108 .cmdbox td { background-color: #eee; border: 1px #444 outset;
110 .cmdbox td:hover { background-color: #ffcc99;
122 .hidebar td.active-down { display: none; }
123 .hidebar td.active-up { display: none; }
124 .hidebar td
[all...]
/illumos-gate/usr/src/lib/pkcs11/pkcs11_tpm/common/
H A Dloadsave.c427 load_token_data(TSS_HCONTEXT hContext, TOKEN_DATA *td) argument
454 rc = init_token_data(hContext, td);
485 READ_TOKEN_INFO_STR(fp, td->token_info.label,
486 sizeof (td->token_info.label));
487 READ_TOKEN_INFO_STR(fp, td->token_info.manufacturerID,
488 sizeof (td->token_info.manufacturerID));
489 READ_TOKEN_INFO_STR(fp, td->token_info.model,
490 sizeof (td->token_info.model));
491 READ_TOKEN_INFO_STR(fp, td->token_info.serialNumber,
492 sizeof (td
542 save_token_data(TOKEN_DATA *td) argument
[all...]
H A Dutility.c336 init_slot_info(TOKEN_DATA *td) argument
352 td->token_info.manufacturerID,
353 strlen((char *)td->token_info.manufacturerID));
369 init_token_info(TOKEN_DATA *td) argument
373 token_info = &td->token_info;
387 if (memcmp(td->user_pin_sha, "00000000000000000000",
411 init_token_data(TSS_HCONTEXT hContext, TOKEN_DATA *td) { argument
414 (void) memset((char *)td, 0, sizeof (nv_token_data));
418 (void) memcpy(td->user_pin_sha, "00000000000000000000",
420 (void) memcpy(td
[all...]
/illumos-gate/usr/src/uts/common/io/usb/hcd/openhci/
H A Dohci_polled.c76 ohci_td_t *td);
78 ohci_td_t *td);
80 ohci_td_t *td,
89 ohci_td_t *td);
168 /* Insert bulkin td into endpoint's tds list */
521 /* Insert td into endpoint's tds list */
885 ohci_td_t *td, *prev_td; local
1056 td = (ohci_td_t *)
1060 while (td) {
1061 prev_td = td;
1268 ohci_td_t *td; local
1578 ohci_td_t *create_head = NULL, *current_td, *td; local
1649 ohci_td_t *cpu_save, *td; local
1705 ohci_td_t *td, *next_td; local
1810 ohci_polled_handle_normal_td( ohci_polled_t *ohci_polledp, ohci_td_t *td) argument
1861 ohci_polled_insert_td( ohci_state_t *ohcip, ohci_td_t *td) argument
1957 ohci_polled_fill_in_td( ohci_state_t *ohcip, ohci_td_t *td, ohci_td_t *new_dummy, uint_t hctd_ctrl, uint32_t hctd_dma_offs, size_t hctd_length, ohci_trans_wrapper_t *tw) argument
1996 ohci_polled_insert_td_on_tw( ohci_state_t *ohcip, ohci_trans_wrapper_t *tw, ohci_td_t *td) argument
[all...]
H A Dohci.c288 ohci_td_t *td,
301 ohci_td_t *td);
310 ohci_td_t *td);
378 ohci_td_t *td);
383 ohci_td_t *td);
388 ohci_td_t *td,
392 ohci_td_t *td,
398 ohci_td_t *td);
401 ohci_td_t *td,
406 ohci_td_t *td,
2087 ohci_td_t *td; local
5960 ohci_td_t *td; local
6010 ohci_fill_in_td( ohci_state_t *ohcip, ohci_td_t *td, ohci_td_t *new_dummy, uint_t hctd_ctrl, uint32_t hctd_dma_offs, size_t hctd_length, uint32_t hctd_ctrl_phase, ohci_pipe_private_t *pp, ohci_trans_wrapper_t *tw) argument
6073 ohci_init_td( ohci_state_t *ohcip, ohci_trans_wrapper_t *tw, uint32_t hctd_dma_offs, size_t hctd_length, ohci_td_t *td) argument
6158 ohci_init_itd( ohci_state_t *ohcip, ohci_trans_wrapper_t *tw, uint_t hctd_ctrl, uint32_t index, ohci_td_t *td) argument
6397 ohci_insert_td_on_tw( ohci_state_t *ohcip, ohci_trans_wrapper_t *tw, ohci_td_t *td) argument
6699 uint32_t td; local
6731 ohci_td_t *td; local
6764 ohci_td_t *td; local
6838 ohci_td_t *td; local
7352 ohci_td_t *td; local
8268 ohci_td_t *td, *old_td; /* TD pointers */ local
8434 ohci_parse_error( ohci_state_t *ohcip, ohci_td_t *td) argument
8507 ohci_parse_isoc_error( ohci_state_t *ohcip, ohci_pipe_private_t *pp, ohci_trans_wrapper_t *tw, ohci_td_t *td) argument
8583 ohci_check_for_error( ohci_state_t *ohcip, ohci_pipe_private_t *pp, ohci_trans_wrapper_t *tw, ohci_td_t *td, uint_t ctrl) argument
8720 ohci_handle_error( ohci_state_t *ohcip, ohci_td_t *td, usb_cr_t error) argument
8854 ohci_cleanup_data_underrun( ohci_state_t *ohcip, ohci_pipe_private_t *pp, ohci_trans_wrapper_t *tw, ohci_td_t *td) argument
8952 ohci_handle_normal_td( ohci_state_t *ohcip, ohci_td_t *td, ohci_trans_wrapper_t *tw) argument
8983 ohci_handle_ctrl_td( ohci_state_t *ohcip, ohci_pipe_private_t *pp, ohci_trans_wrapper_t *tw, ohci_td_t *td, void *tw_handle_callback_value) argument
9069 ohci_handle_bulk_td( ohci_state_t *ohcip, ohci_pipe_private_t *pp, ohci_trans_wrapper_t *tw, ohci_td_t *td, void *tw_handle_callback_value) argument
9130 ohci_handle_intr_td( ohci_state_t *ohcip, ohci_pipe_private_t *pp, ohci_trans_wrapper_t *tw, ohci_td_t *td, void *tw_handle_callback_value) argument
9285 ohci_handle_isoc_td( ohci_state_t *ohcip, ohci_pipe_private_t *pp, ohci_trans_wrapper_t *tw, ohci_td_t *td, void *tw_handle_callback_value) argument
9494 ohci_sendup_td_message( ohci_state_t *ohcip, ohci_pipe_private_t *pp, ohci_trans_wrapper_t *tw, ohci_td_t *td, usb_cr_t error) argument
9653 ohci_get_td_residue( ohci_state_t *ohcip, ohci_td_t *td) argument
11236 ohci_print_td( ohci_state_t *ohcip, ohci_td_t *td) argument
[all...]
/illumos-gate/usr/src/cmd/sendmail/db/txn/
H A Dtxn_rec.c266 TXN_DETAIL *td; local
276 if ((ret = __db_shalloc(mgr->mem, sizeof(TXN_DETAIL), 0, &td)) != 0)
280 SH_TAILQ_INSERT_HEAD(&mgr->region->active_txn, td, links, __txn_detail);
282 td->txnid = argp->txnid->txnid;
283 td->begin_lsn = argp->begin_lsn;
284 td->last_lsn = *lsnp;
285 td->last_lock = 0;
286 td->parent = 0;
287 td->status = TXN_PREPARED;
288 td
[all...]
/illumos-gate/usr/src/uts/i86pc/io/
H A Dhrtimers.c366 hrt_gettofd(hrtimes_t *td) argument
368 ulong new_res = td->hrt_res;
372 td->hrt_secs = ts.tv_sec;
373 td->hrt_rem = ts.tv_nsec;
374 td->hrt_res = NANOSEC;
376 if (new_res != td->hrt_res) {
377 td->hrt_rem /= NANOSEC / new_res;
378 td->hrt_res = new_res;
/illumos-gate/usr/src/cmd/auditrecord/
H A Dauditrecord.pl318 <td>$label</td>
319 <td>$id</td>
320 <td>$class</td>
321 <td>$mask</td>
324 <td colspan=2>$titleName</td>
[all...]

Completed in 110 milliseconds

123