Searched refs:tp (Results 26 - 50 of 696) sorted by relevance

1234567891011>>

/macosx-10.10/postfix-255/postfix/src/tls/
H A Dtls_proxy_print.c58 TLS_SESS_STATE *tp = (TLS_SESS_STATE *) ptr; local
65 STRING_OR_EMPTY(tp->peer_CN),
67 STRING_OR_EMPTY(tp->issuer_CN),
69 STRING_OR_EMPTY(tp->peer_cert_fprint),
71 STRING_OR_EMPTY(tp->peer_pkey_fprint),
73 tp->peer_status,
75 STRING_OR_EMPTY(tp->protocol),
77 STRING_OR_EMPTY(tp->cipher_name),
79 tp->cipher_usebits,
81 tp
[all...]
/macosx-10.10/ncurses-44/ncurses/include/
H A Dterm_entry.h73 #define NUM_BOOLEANS(tp) (tp)->num_Booleans
74 #define NUM_NUMBERS(tp) (tp)->num_Numbers
75 #define NUM_STRINGS(tp) (tp)->num_Strings
76 #define EXT_NAMES(tp,i,limit,index,table) (i >= limit) ? tp->ext_Names[index] : table[i]
78 #define NUM_BOOLEANS(tp) BOOLCOUNT
79 #define NUM_NUMBERS(tp) NUMCOUN
[all...]
/macosx-10.10/ksh-23/ksh/src/cmd/ksh93/sh/
H A Dtimers.c51 struct timeval tp; local
52 timeofday(&tp);
53 now = tp.tv_sec + 1.e-6*tp.tv_usec;
89 register Timer_t *tp, *tplast, *tpold, *tpnext; local
111 for(tplast=0,tp=tptop; tp; tp=tpnext)
113 tpnext = tp->next;
114 if(tp
183 register Timer_t *tp; local
233 register Timer_t *tp = (Timer_t*)handle; local
[all...]
/macosx-10.10/ksh-23/ksh/src/lib/libast/vmalloc/
H A Dvmclear.c42 Block_t *tp; local
62 tp = SEGBLOCK(seg);
63 size = seg->baddr - ((Vmuchar_t*)tp) - 2*sizeof(Head_t);
65 SEG(tp) = seg;
66 SIZE(tp) = size;
68 seg->free = tp;
70 { SIZE(tp) |= BUSY|JUNK;
71 LINK(tp) = CACHE(vd)[C_INDEX(SIZE(tp))];
72 CACHE(vd)[C_INDEX(SIZE(tp))]
[all...]
/macosx-10.10/curl-83.1.2/curl/lib/
H A Dinet_pton.c97 unsigned char tmp[INADDRSZ], *tp; local
101 tp = tmp;
102 *tp = 0;
107 unsigned int val = *tp * 10 + (unsigned int)(pch - digits);
109 if(saw_digit && *tp == 0)
113 *tp = (unsigned char)val;
123 *++tp = 0;
154 unsigned char tmp[IN6ADDRSZ], *tp, *endp, *colonp; local
159 memset((tp = tmp), 0, IN6ADDRSZ);
160 endp = tp
[all...]
/macosx-10.10/tcpdump-61/tcpdump/
H A Dprint-dhcp6.c332 u_char *tp; local
359 tp = (u_char *)(dh6o + 1);
360 switch (EXTRACT_16BITS(tp)) {
364 EXTRACT_16BITS(&tp[2]),
365 EXTRACT_32BITS(&tp[4]));
367 printf("%02x", tp[i]);
379 printf("%02x", tp[i]);
390 EXTRACT_16BITS(&tp[2]));
392 printf("%02x", tp[i]);
401 printf(" type %d)", EXTRACT_16BITS(tp));
[all...]
/macosx-10.10/ncurses-44/ncurses/ncurses/tinfo/
H A Dlib_ti.c49 TERMTYPE *tp = &(cur_term->type); local
50 for_each_boolean(i, tp) {
51 const char *capname = ExtBoolname(tp, i, boolnames);
54 returnCode(tp->Booleans[i]);
70 TERMTYPE *tp = &(cur_term->type); local
71 for_each_number(i, tp) {
72 const char *capname = ExtNumname(tp, i, numnames);
74 if (!VALID_NUMERIC(tp->Numbers[i]))
76 returnCode(tp->Numbers[i]);
92 TERMTYPE *tp local
[all...]
H A Dalloc_entry.c62 _nc_init_entry(TERMTYPE *const tp) argument
68 if (tp == 0 && stringbuf != 0) {
78 tp->num_Booleans = BOOLCOUNT;
79 tp->num_Numbers = NUMCOUNT;
80 tp->num_Strings = STRCOUNT;
81 tp->ext_Booleans = 0;
82 tp->ext_Numbers = 0;
83 tp->ext_Strings = 0;
85 if (tp->Booleans == 0)
86 tp
152 TERMTYPE *tp = &(ep->tterm); local
[all...]
/macosx-10.10/xnu-2782.1.97/bsd/kern/
H A Dtty_dev.c98 static void ptcwakeup(struct tty *tp, int flag);
267 struct tty *tp = pti->pt_tty; local
268 tty_lock(tp);
270 if ((tp->t_state & TS_ISOPEN) == 0) {
271 termioschars(&tp->t_termios); /* Set up default chars */
272 tp->t_iflag = TTYDEF_IFLAG;
273 tp->t_oflag = TTYDEF_OFLAG;
274 tp->t_lflag = TTYDEF_LFLAG;
275 tp->t_cflag = TTYDEF_CFLAG;
276 tp
320 struct tty *tp; local
340 driver->revoke(minor(dev), tp); local
353 struct tty *tp; local
443 struct tty *tp; local
470 ptsstart(struct tty *tp) argument
490 ptcwakeup(struct tty *tp, int flag) argument
517 struct tty *tp = pti->pt_tty; local
556 struct tty *tp; local
597 struct tty *tp; local
669 ptsstop(struct tty* tp, int flush) argument
704 struct tty *tp; local
754 struct tty *tp; local
821 ptcstop(__unused struct tty *tp, __unused int flush) argument
836 struct tty *tp; local
956 struct tty *tp; local
[all...]
/macosx-10.10/bind9-45.101/bind9/lib/isc/
H A Dinet_pton.c85 unsigned char tmp[NS_INADDRSZ], *tp; local
89 *(tp = tmp) = 0;
94 unsigned int new = *tp * 10 + (pch - digits);
96 if (saw_digit && *tp == 0)
100 *tp = new;
109 *++tp = 0;
137 unsigned char tmp[NS_IN6ADDRSZ], *tp, *endp, *colonp; local
142 memset((tp = tmp), '\0', NS_IN6ADDRSZ);
143 endp = tp + NS_IN6ADDRSZ;
169 colonp = tp;
[all...]
/macosx-10.10/ntp-92/lib/isc/
H A Dinet_pton.c85 unsigned char tmp[NS_INADDRSZ], *tp; local
89 *(tp = tmp) = 0;
94 unsigned int new = *tp * 10 + (pch - digits);
96 if (saw_digit && *tp == 0)
100 *tp = new;
109 *++tp = 0;
137 unsigned char tmp[NS_IN6ADDRSZ], *tp, *endp, *colonp; local
142 memset((tp = tmp), '\0', NS_IN6ADDRSZ);
143 endp = tp + NS_IN6ADDRSZ;
169 colonp = tp;
[all...]
/macosx-10.10/xnu-2782.1.97/libkern/net/
H A Dinet_pton.c78 u_char tmp[NS_INADDRSZ], *tp; local
82 *(tp = tmp) = 0;
87 u_int new = *tp * 10 + (pch - digits);
89 if (saw_digit && *tp == 0)
93 *tp = new;
102 *++tp = 0;
133 u_char tmp[NS_IN6ADDRSZ], *tp, *endp, *colonp; local
138 memset((tp = tmp), '\0', NS_IN6ADDRSZ);
139 endp = tp + NS_IN6ADDRSZ;
165 colonp = tp;
[all...]
/macosx-10.10/postfix-255/postfix/src/trivial-rewrite/
H A Dtransport.c97 TRANSPORT_INFO *tp; local
99 tp = (TRANSPORT_INFO *) mymalloc(sizeof(*tp));
100 tp->transport_path = maps_create(transport_maps_name, transport_maps,
103 tp->wildcard_channel = tp->wildcard_nexthop = 0;
104 tp->wildcard_errno = 0;
105 tp->expire = 0;
106 return (tp);
111 void transport_post_init(TRANSPORT_INFO *tp) argument
119 transport_free(TRANSPORT_INFO *tp) argument
164 find_transport_entry(TRANSPORT_INFO *tp, const char *key, const char *rcpt_domain, int flags, VSTRING *channel, VSTRING *nexthop) argument
202 transport_wildcard_init(TRANSPORT_INFO *tp) argument
250 transport_lookup(TRANSPORT_INFO *tp, const char *addr, const char *rcpt_domain, VSTRING *channel, VSTRING *nexthop) argument
[all...]
/macosx-10.10/xnu-2782.1.97/bsd/netinet/
H A Dtcp_sack.c132 tcp_update_sack_list(struct tcpcb *tp, tcp_seq rcv_start, tcp_seq rcv_end) argument
153 for (i = 0; i < tp->rcv_numsacks; i++) {
154 tcp_seq start = tp->sackblks[i].start;
155 tcp_seq end = tp->sackblks[i].end;
156 if (SEQ_GEQ(start, end) || SEQ_LEQ(start, tp->rcv_nxt)) {
181 * Update SACK list in tp->sackblks[].
184 if (SEQ_GT(head_blk.start, tp->rcv_nxt)) {
189 tp->sackblks[0] = head_blk;
202 bcopy(saved_blks, &tp->sackblks[num_head],
207 tp
226 tcp_clean_sackreport( struct tcpcb *tp) argument
237 tcp_sackhole_alloc(struct tcpcb *tp, tcp_seq start, tcp_seq end) argument
265 tcp_sackhole_free(struct tcpcb *tp, struct sackhole *hole) argument
277 tcp_sackhole_insert(struct tcpcb *tp, tcp_seq start, tcp_seq end, struct sackhole *after) argument
304 tcp_sackhole_remove(struct tcpcb *tp, struct sackhole *hole) argument
323 tcp_sack_detect_reordering(struct tcpcb *tp, struct sackhole *s, tcp_seq sacked_seq, tcp_seq snd_fack) argument
392 tcp_sack_doack(struct tcpcb *tp, struct tcpopt *to, struct tcphdr *th, u_int32_t *newbytes_acked) argument
615 tcp_free_sackholes(struct tcpcb *tp) argument
663 tcp_sack_output_debug(struct tcpcb *tp, int *sack_bytes_rexmt) argument
699 tcp_sack_output(struct tcpcb *tp, int *sack_bytes_rexmt) argument
735 tcp_sack_adjust(struct tcpcb *tp) argument
769 tcp_sack_byte_islost(struct tcpcb *tp) argument
[all...]
H A Dtcp_output.c245 static struct mbuf* tcp_send_lroacks(struct tcpcb *tp, struct mbuf *m, struct tcphdr *th);
246 static int tcp_recv_throttle(struct tcpcb *tp);
275 tcp_output(struct tcpcb *tp) argument
277 struct inpcb *inp = tp->t_inpcb;
308 u_int32_t lro_ackmore = (tp->t_lropktlen != 0) ? 1 : 0;
329 idle = (tp->t_flags & TF_LASTIDLE) || (tp->snd_max == tp->snd_una);
334 idle_time = tcp_now - tp->t_rcvtime;
335 if (idle && idle_time >= TCP_IDLETIMEOUT(tp)) {
2289 tcp_ip_output(struct socket *so, struct tcpcb *tp, struct mbuf *pkt, int cnt, struct mbuf *opt, int flags, int sack_in_progress, int recwin, boolean_t isipv6) argument
2567 tcp_send_lroacks(struct tcpcb *tp, struct mbuf *m, struct tcphdr *th) argument
2662 tcp_recv_throttle(struct tcpcb *tp) argument
[all...]
/macosx-10.10/bind9-45.101/bind9/lib/lwres/
H A Dlwinetpton.c84 unsigned char tmp[NS_INADDRSZ], *tp; local
88 *(tp = tmp) = 0;
93 unsigned int new = *tp * 10 + (pch - digits);
97 *tp = new;
108 * *++tp = 0;
110 tp++;
111 *tp = 0;
139 unsigned char tmp[NS_IN6ADDRSZ], *tp, *endp, *colonp; local
144 memset((tp = tmp), '\0', NS_IN6ADDRSZ);
145 endp = tp
[all...]
/macosx-10.10/gnutar-453/gnutar/lib/
H A Dtime_r.c38 gmtime_r (time_t const * restrict t, struct tm * restrict tp) argument
40 return copy_tm_result (tp, gmtime (t));
44 localtime_r (time_t const * restrict t, struct tm * restrict tp) argument
46 return copy_tm_result (tp, localtime (t));
/macosx-10.10/postfix-255/postfix/src/global/
H A Dtok822_parse.c159 #define SKIP(tp, cond) { \
160 while (tp->type && (cond)) \
161 tp = tp->prev; \
164 #define MOVE_COMMENT_AND_CONTINUE(tp, right) { \
165 TOK822 *prev = tok822_unlink(tp); \
166 right = tok822_prepend(right, tp); \
167 tp = prev; \
171 #define SKIP_MOVE_COMMENT(tp, cond, right) { \
172 while (tp
201 TOK822 *tp; local
273 TOK822 *tp; local
408 tok822_append_space(TOK822 *tp) argument
431 TOK822 *tp; local
486 TOK822 *tp; local
567 tok822_quote_atom(TOK822 *tp) argument
587 tok822_comment(TOK822 *tp, const char *str) argument
666 TOK822 *tp; local
[all...]
/macosx-10.10/Libc-1044.1.2/sys/
H A Dsettimeofday.c32 int __settimeofday(const struct timeval *tp, const struct timezone *tzp);
38 settimeofday(const struct timeval *tp, const struct timezone *tzp) argument
40 int ret = __settimeofday(tp, tzp);
/macosx-10.10/tcl-105/tcl/tcl/compat/
H A Dgettod.c22 struct timeval *tp,
28 tp->tv_sec = t.time;
29 tp->tv_usec = t. millitm * 1000;
21 gettimeofday( struct timeval *tp, struct timezone *tz) argument
/macosx-10.10/apr-32/apr/apr/network_io/unix/
H A Dinet_pton.c110 unsigned char tmp[INADDRSZ], *tp; local
114 *(tp = tmp) = 0;
119 unsigned int new = *tp * 10 + (unsigned int)(pch - digits);
123 *tp = new;
132 *++tp = 0;
163 unsigned char tmp[IN6ADDRSZ], *tp, *endp, *colonp; local
168 memset((tp = tmp), '\0', IN6ADDRSZ);
169 endp = tp + IN6ADDRSZ;
196 colonp = tp;
199 if (tp
[all...]
/macosx-10.10/rsync-45/rsync/lib/
H A Dinet_pton.c81 unsigned char tmp[NS_INADDRSZ], *tp; local
85 *(tp = tmp) = 0;
90 unsigned int new = *tp * 10 + (pch - digits);
94 *tp = new;
103 *++tp = 0;
135 unsigned char tmp[NS_IN6ADDRSZ], *tp, *endp, *colonp; local
140 memset((tp = tmp), '\0', NS_IN6ADDRSZ);
141 endp = tp + NS_IN6ADDRSZ;
168 colonp = tp;
171 if (tp
[all...]
/macosx-10.10/bind9-45.101/bind9/unit/atf-src/atf-c/
H A Dtp.c37 #include "atf-c/tp.h"
54 find_tc(const atf_tp_t *tp, const char *ident) argument
60 atf_list_for_each_c(iter, &tp->pimpl->m_tcs) {
80 atf_tp_init(atf_tp_t *tp, const char *const *config) argument
86 tp->pimpl = malloc(sizeof(struct atf_tp_impl));
87 if (tp->pimpl == NULL)
90 err = atf_list_init(&tp->pimpl->m_tcs);
94 err = atf_map_init_charpp(&tp->pimpl->m_config, config);
96 atf_list_fini(&tp->pimpl->m_tcs);
106 atf_tp_fini(atf_tp_t *tp) argument
126 atf_tp_get_config(const atf_tp_t *tp) argument
132 atf_tp_has_tc(const atf_tp_t *tp, const char *id) argument
139 atf_tp_get_tc(const atf_tp_t *tp, const char *id) argument
147 atf_tp_get_tcs(const atf_tp_t *tp) argument
180 atf_tp_add_tc(atf_tp_t *tp, atf_tc_t *tc) argument
198 atf_tp_run(const atf_tp_t *tp, const char *tcname, const char *resfile) argument
209 atf_tp_cleanup(const atf_tp_t *tp, const char *tcname) argument
[all...]
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-core/PyObjCTest/
H A Dtest_structs.py18 tp = objc.createStructType("FooStruct", "{_FooStruct=ffff}", ["a","b","c","d"])
19 self.assert_(isinstance(tp, type))
20 self.assert_(tp.__typestr__, "{_FooStruct=ffff}")
22 o = tp()
29 tp = objc.createStructType("BarStruct", '{_BarStruct="e"f"f"f"g"f"h"f}', None)
30 self.assert_(isinstance(tp, type))
31 self.assert_(tp.__typestr__, "{_BarStruct=ffff}")
33 o = tp()
48 tp = objc.createStructType("XBarStruct", '{_XBarStruct="e"^f"f"^f"g"^@"h"f}', None)
49 self.assert_(isinstance(tp, typ
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/PyObjCTest/
H A Dtest_structs.py18 tp = objc.createStructType("FooStruct", b"{_FooStruct=ffff}", ["a","b","c","d"])
19 self.assertIsInstance(tp, type)
20 self.assertEquals(tp.__typestr__, b"{_FooStruct=ffff}")
22 o = tp()
29 tp = objc.createStructType("BarStruct", b'{_BarStruct="e"f"f"f"g"f"h"f}', None)
30 self.assertIsInstance(tp, type)
31 self.assertEquals(tp.__typestr__, b"{_BarStruct=ffff}")
33 o = tp()
48 tp = objc.createStructType("XBarStruct", b'{_XBarStruct="e"^f"f"^f"g"^@"h"f}', None)
49 self.assertIsInstance(tp, typ
[all...]

Completed in 337 milliseconds

1234567891011>>