Searched refs:ta (Results 1 - 25 of 95) sorted by relevance

1234

/freebsd-9.3-release/lib/libthread_db/
H A Dlibpthread_db.c46 static void pt_unmap_lwp(const td_thragent_t *ta, lwpid_t lwp);
75 td_thragent_t *ta = __DECONST(td_thragent_t *, const_ta); local
80 for (i = 1; i < ta->map_len; ++i) {
81 if (ta->map[i].type == PT_NONE) {
84 } else if (ta->map[i].type == type && ta->map[i].thr == pt) {
90 if (ta->map_len == 0) {
91 ta->map = calloc(20, sizeof(struct pt_map));
92 if (ta->map == NULL)
94 ta
146 td_thragent_t *ta; local
201 pt_ta_delete(td_thragent_t *ta) argument
220 pt_ta_map_id2thr(const td_thragent_t *ta, thread_t id, td_thrhandle_t *th) argument
294 pt_ta_map_lwp2thr(const td_thragent_t *ta, lwpid_t lwp, td_thrhandle_t *th) argument
333 pt_ta_thr_iter(const td_thragent_t *ta, td_thr_iter_f *callback, void *cbdata_p, td_thr_state_e state __unused, int ti_pri __unused, sigset_t *ti_sigmask_p __unused, unsigned int ti_user_flags __unused) argument
372 pt_ta_tsd_iter(const td_thragent_t *ta, td_key_iter_f *ki, void *arg) argument
441 const td_thragent_t *ta = th->th_ta; local
575 const td_thragent_t *ta = th->th_ta; local
676 const td_thragent_t *ta = th->th_ta; local
720 const td_thragent_t *ta = th->th_ta; local
761 const td_thragent_t *ta = th->th_ta; local
803 const td_thragent_t *ta = th->th_ta; local
853 const td_thragent_t *ta = th->th_ta; local
900 const td_thragent_t *ta = th->th_ta; local
978 const td_thragent_t *ta = th->th_ta; local
1048 pt_unmap_lwp(const td_thragent_t *ta, lwpid_t lwp) argument
1074 const td_thragent_t *ta = th->th_ta; local
[all...]
H A Dthread_db.c69 td_ta_clear_event(const td_thragent_t *ta, td_thr_events_t *events) argument
71 return (ta->ta_ops->to_ta_clear_event(ta, events));
75 td_ta_delete(td_thragent_t *ta) argument
77 TAILQ_REMOVE(&proclist, ta, ta_next);
78 return (ta->ta_ops->to_ta_delete(ta));
82 td_ta_event_addr(const td_thragent_t *ta, td_event_e event, td_notify_t *ptr) argument
84 return (ta->ta_ops->to_ta_event_addr(ta, even
88 td_ta_event_getmsg(const td_thragent_t *ta, td_event_msg_t *msg) argument
94 td_ta_map_id2thr(const td_thragent_t *ta, thread_t id, td_thrhandle_t *th) argument
100 td_ta_map_lwp2thr(const td_thragent_t *ta, lwpid_t lwpid, td_thrhandle_t *th) argument
122 td_ta_set_event(const td_thragent_t *ta, td_thr_events_t *events) argument
128 td_ta_thr_iter(const td_thragent_t *ta, td_thr_iter_f *callback, void *cbdata_p, td_thr_state_e state, int ti_pri, sigset_t *ti_sigmask_p, unsigned int ti_user_flags) argument
137 td_ta_tsd_iter(const td_thragent_t *ta, td_key_iter_f *callback, void *cbdata_p) argument
146 const td_thragent_t *ta = th->th_ta; local
153 const td_thragent_t *ta = th->th_ta; local
160 const td_thragent_t *ta = th->th_ta; local
167 const td_thragent_t *ta = th->th_ta; local
174 const td_thragent_t *ta = th->th_ta; local
181 const td_thragent_t *ta = th->th_ta; local
189 const td_thragent_t *ta = th->th_ta; local
197 const td_thragent_t *ta = th->th_ta; local
206 const td_thragent_t *ta = th->th_ta; local
213 const td_thragent_t *ta = th->th_ta; local
220 const td_thragent_t *ta = th->th_ta; local
228 const td_thragent_t *ta = th->th_ta; local
236 const td_thragent_t *ta = th->th_ta; local
243 const td_thragent_t *ta = th->th_ta; local
250 const td_thragent_t *ta = th->th_ta; local
258 const td_thragent_t *ta = th->th_ta; local
267 const td_thragent_t *ta = th->th_ta; local
335 thr_pread_int(const struct td_thragent *ta, psaddr_t addr, uint32_t *val) argument
348 thr_pread_long(const struct td_thragent *ta, psaddr_t addr, uint64_t *val) argument
355 thr_pread_ptr(const struct td_thragent *ta, psaddr_t addr, psaddr_t *val) argument
423 thr_pwrite_int(const struct td_thragent *ta, psaddr_t addr, uint32_t val) argument
430 thr_pwrite_long(const struct td_thragent *ta, psaddr_t addr, uint64_t val) argument
437 thr_pwrite_ptr(const struct td_thragent *ta, psaddr_t addr, psaddr_t val) argument
[all...]
H A Dlibthr_db.c132 td_thragent_t *ta; local
139 ta = malloc(sizeof(td_thragent_t));
140 if (ta == NULL)
143 ta->ph = ph;
145 LOOKUP_SYM(ph, "_libthr_debug", &ta->libthr_debug_addr);
146 LOOKUP_SYM(ph, "_thread_list", &ta->thread_list_addr);
147 LOOKUP_SYM(ph, "_thread_active_threads",&ta->thread_active_threads_addr);
148 LOOKUP_SYM(ph, "_thread_keytable", &ta->thread_keytable_addr);
149 LOOKUP_SYM(ph, "_thread_last_event", &ta->thread_last_event_addr);
150 LOOKUP_SYM(ph, "_thread_event_mask", &ta
185 pt_ta_delete(td_thragent_t *ta) argument
202 pt_ta_map_id2thr(const td_thragent_t *ta, thread_t id, td_thrhandle_t *th) argument
236 pt_ta_map_lwp2thr(const td_thragent_t *ta, lwpid_t lwp, td_thrhandle_t *th) argument
242 pt_ta_thr_iter(const td_thragent_t *ta, td_thr_iter_f *callback, void *cbdata_p, td_thr_state_e state __unused, int ti_pri __unused, sigset_t *ti_sigmask_p __unused, unsigned int ti_user_flags __unused) argument
276 pt_ta_tsd_iter(const td_thragent_t *ta, td_key_iter_f *ki, void *arg) argument
311 pt_ta_event_addr(const td_thragent_t *ta, td_event_e event, td_notify_t *ptr) argument
331 pt_ta_set_event(const td_thragent_t *ta, td_thr_events_t *events) argument
348 pt_ta_clear_event(const td_thragent_t *ta, td_thr_events_t *events) argument
365 pt_ta_event_getmsg(const td_thragent_t *ta, td_event_msg_t *msg) argument
411 const td_thragent_t *ta = th->th_ta; local
458 const td_thragent_t *ta = th->th_ta; local
529 const td_thragent_t *ta = th->th_ta; local
546 const td_thragent_t *ta = th->th_ta; local
562 const td_thragent_t *ta = th->th_ta; local
579 const td_thragent_t *ta = th->th_ta; local
596 const td_thragent_t *ta = th->th_ta; local
612 const td_thragent_t *ta = th->th_ta; local
628 const td_thragent_t *ta = th->th_ta; local
640 const td_thragent_t *ta = th->th_ta; local
656 const td_thragent_t *ta = th->th_ta; local
673 const td_thragent_t *ta = th->th_ta; local
733 const td_thragent_t *ta = th->th_ta; local
[all...]
/freebsd-9.3-release/lib/libc/sparc64/sys/
H A D__sparc_utrap_fp_disabled.S33 ta %xcc, ST_FP_RESTORE
H A Dexect.S49 ta %xcc, ST_SYSCALL
H A Dpipe.S50 ta %xcc, ST_SYSCALL
H A Dbrk.S58 ta %xcc, ST_SYSCALL
H A Dsbrk.S65 ta %xcc, ST_SYSCALL
/freebsd-9.3-release/lib/libthr/arch/sparc64/sparc64/
H A D_umtx_op_err.S37 ta %xcc, ST_SYSCALL
/freebsd-9.3-release/contrib/sendmail/src/
H A Dtimers.c57 addtimer(ta, tb)
58 TIMER *ta;
61 tb->ti_wall_sec += ta->ti_wall_sec;
62 tb->ti_wall_usec += ta->ti_wall_usec;
68 tb->ti_cpu_sec += ta->ti_cpu_sec;
69 tb->ti_cpu_usec += ta->ti_cpu_usec;
78 subtimer(ta, tb)
79 TIMER *ta;
82 tb->ti_wall_sec -= ta->ti_wall_sec;
83 tb->ti_wall_usec -= ta
[all...]
/freebsd-9.3-release/lib/libc/nameser/
H A Dns_samedomain.c200 char ta[NS_MAXDNAME], tb[NS_MAXDNAME]; local
202 if (ns_makecanon(a, ta, sizeof ta) < 0 ||
205 if (strcasecmp(ta, tb) == 0)
/freebsd-9.3-release/crypto/heimdal/lib/asn1/
H A Dasn1_gen.c75 int ret, l, c, ty, ta; local
103 ta = der_get_tag_num(tag);
104 if (ta == -1)
105 ta = atoi(tag);
111 line, (unsigned long)offset, c, ty, ta, l,
118 ta,
/freebsd-9.3-release/lib/libc/stdlib/
H A Dradixsort.c111 const u_char *tr, **ta; local
119 if ((ta = malloc(n * sizeof(a))) == NULL)
121 r_sort_b(a, ta, n, 0, tr, endch);
122 free(ta);
236 r_sort_b(a, ta, n, i, tr, endch)
237 const u_char **a, **ta;
269 r_sort_b(a, ta, n, i, tr, endch);
300 for (ak = ta + n, ai = a+n; ak > ta;) /* Copy to temp. */
302 for (ak = ta
[all...]
/freebsd-9.3-release/contrib/bind9/lib/isc/include/isc/
H A Devent.h62 #define ISC_EVENT_INIT(event, sz, at, ta, ty, ac, ar, sn, df, da) \
66 (event)->ev_tag = (ta); \
/freebsd-9.3-release/contrib/ntp/lib/isc/include/isc/
H A Devent.h62 #define ISC_EVENT_INIT(event, sz, at, ta, ty, ac, ar, sn, df, da) \
66 (event)->ev_tag = (ta); \
/freebsd-9.3-release/sbin/iscontrol/
H A Discontrol.c138 char *pname, *pidfile, *p, *q, *ta, *kw, *v; local
150 kw = ta = 0;
187 ta = optarg;
213 if(ta)
214 op->targetAddress = ta;
/freebsd-9.3-release/sbin/mdmfs/
H A Dmdmfs.c336 const char *ta; /* Type arg. */ local
340 ta = "-t swap";
343 ta = "-t vnode";
346 ta = "-t malloc";
351 rv = run(NULL, "%s -a %s%s -u %s%d", path_mdconfig, ta, args,
363 const char *ta; /* Type arg. */ local
374 ta = "-t swap";
377 ta = "-t vnode";
380 ta = "-t malloc";
385 rv = run(&fd, "%s -a %s%s", path_mdconfig, ta, arg
[all...]
/freebsd-9.3-release/contrib/pf/pfctl/
H A Dpfctl_table.c367 print_table(struct pfr_table *ta, int verbose, int debug) argument
369 if (!debug && !(ta->pfrt_flags & PFR_TFLAG_ACTIVE))
373 (ta->pfrt_flags & PFR_TFLAG_CONST) ? 'c' : '-',
374 (ta->pfrt_flags & PFR_TFLAG_PERSIST) ? 'p' : '-',
375 (ta->pfrt_flags & PFR_TFLAG_ACTIVE) ? 'a' : '-',
376 (ta->pfrt_flags & PFR_TFLAG_INACTIVE) ? 'i' : '-',
377 (ta->pfrt_flags & PFR_TFLAG_REFERENCED) ? 'r' : '-',
378 (ta->pfrt_flags & PFR_TFLAG_REFDANCHOR) ? 'h' : '-',
379 (ta->pfrt_flags & PFR_TFLAG_COUNTERS) ? 'C' : '-',
380 ta
[all...]
/freebsd-9.3-release/sys/contrib/ipfilter/netinet/
H A Dfil.c6091 ipftuneable_t *ta, **tap; local
6093 for (ta = ipf_tuneables; ta->ipft_name != NULL; ta++)
6094 if (ta == cookie) {
6104 if ((ta + 1)->ipft_name != NULL)
6105 *next = ta + 1;
6109 return ta;
6112 for (tap = &ipf_tunelist; (ta = *tap) != NULL; tap = &ta
6137 ipftuneable_t *ta; local
6165 ipftuneable_t *ta, **tap; local
6193 ipftuneable_t *ta, **tap; local
6223 ipftuneable_t *ta; local
[all...]
/freebsd-9.3-release/contrib/bsnmp/snmpd/
H A Dtrap.c536 struct target_address *ta; local
586 SLIST_FOREACH(ta, &target_addresslist, ta)
587 if ((tag = strstr(ta->taglist, n->taglist)) != NULL &&
593 ta->status == RowStatus_active)
595 if (ta == NULL)
599 if (strcmp(tp->name, ta->paramname) == 0 &&
640 if ((len = send(ta->socket, sndbuf, sndlen, 0)) == -1)
671 return (SLIST_NEXT(addrs, ta));
680 SLIST_FOREACH(addrs, &target_addresslist, ta)
[all...]
/freebsd-9.3-release/usr.sbin/bsnmpd/modules/snmp_bridge/
H A Dbridge_addrs.c115 struct tp_entry *ta, struct tp_entry **f_tpa)
122 t1 != NULL && ta->sysindex == t1->sysindex;
124 if (bridge_compare_macs(ta->tp_addr, t1->tp_addr) < 0) {
125 TAILQ_INSERT_BEFORE(t1, ta, tp_e);
127 (*f_tpa) = ta;
133 TAILQ_INSERT_TAIL(headp, ta, tp_e);
135 TAILQ_INSERT_BEFORE(t1, ta, tp_e);
114 bridge_addrs_insert_at(struct tp_entries *headp, struct tp_entry *ta, struct tp_entry **f_tpa) argument
/freebsd-9.3-release/crypto/openssl/crypto/bn/
H A Dbn_asm.c525 BN_ULONG ta=(a),tb=(b); \
526 BN_UMULT_LOHI(t1,t2,ta,tb); \
532 BN_ULONG ta=(a),tb=(b),t0; \
533 BN_UMULT_LOHI(t0,t1,ta,tb); \
541 BN_ULONG ta=(a)[i]; \
542 BN_UMULT_LOHI(t1,t2,ta,ta); \
553 BN_ULONG ta=(a),tb=(b); \
554 t1 = ta * tb; \
555 t2 = BN_UMULT_HIGH(ta,t
[all...]
/freebsd-9.3-release/contrib/binutils/opcodes/
H A Dconfigure724 -target | --target | --targe | --targ | --tar | --ta | --t)
726 -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
11410 ta=
11417 bfd_alpha_arch) ta="$ta alpha-dis.lo alpha-opc.lo" ;;
11418 bfd_arc_arch) ta="$ta arc-dis.lo arc-opc.lo arc-ext.lo" ;;
11419 bfd_arm_arch) ta="$ta arm-dis.lo" ;;
11420 bfd_avr_arch) ta
[all...]
/freebsd-9.3-release/contrib/amd/amd/
H A Dsched.c113 * tf: The task to execute (ta is its arguments)
117 run_task(task_fun *tf, opaque_t ta, cb_fun *cf, opaque_t ca) argument
147 exit((*tf) (ta));
/freebsd-9.3-release/lib/libc/sparc64/
H A DSYS.h63 ta %xcc, ST_SYSCALL ; \

Completed in 797 milliseconds

1234