HomeSort by relevance Sort by last modified time
    Searched refs:tcb (Results 26 - 46 of 46) sorted by null

12

  /external/qemu/slirp/
tcp_subr.c 54 tcb.so_next = tcb.so_prev = &tcb;
280 tcp_last_so = &tcb;
522 insque(so, &tcb);
645 for (tmpso = tcb.so_next; tmpso != &tcb; tmpso = tmpso->so_next) {
    [all...]
debug.c 307 for (so = tcb.so_next; so != &tcb; so = so->so_next) {
misc.c 702 for (so = tcb.so_next; so != &tcb; so = so->so_next) {
socket.c 76 tcp_last_so = &tcb;
618 insque(so,&tcb);
tcp_input.c 44 struct socket tcb; variable in typeref:struct:socket
47 struct socket *tcp_last_so = &tcb;
379 so = solookup(&tcb, ti->ti_src, ti->ti_sport,
387 * If the state is CLOSED (i.e., TCB does not exist) then
389 * If the TCB exists but is in CLOSED state, it is embryonic,
395 * XXX If a TCB does not exist, and the TH_SYN flag is
966 * Inform user that connection was reset, and close tcb.
968 * Close the tcb.
    [all...]
  /external/qemu/slirp-android/
tcp_subr.c 56 tcb.so_next = tcb.so_prev = &tcb;
282 tcp_last_so = &tcb;
678 insque(so, &tcb);
797 for (tmpso = tcb.so_next; tmpso != &tcb; tmpso = tmpso->so_next) {
1146 for (tmpso = tcb.so_next; tmpso != &tcb; tmpso = tmpso->so_next) {
socket.c 84 tcp_last_so = &tcb;
640 insque(so,&tcb);
678 for (so = tcb.so_next; so != &tcb; so = so->so_next) {
684 if (so == &tcb) {
slirp.c 324 do_slowtimo = ((tcb.so_next != &tcb) ||
327 for (so = tcb.so_next; so != &tcb; so = so_next) {
499 for (so = tcb.so_next; so != &tcb; so = so_next) {
1135 struct socket *head = (is_udp ? &udb : &tcb);
1163 struct socket *head = (is_udp ? &udb : &tcb);
    [all...]
debug.c 279 for (so = tcb.so_next; so != &tcb; so = so->so_next) {
misc.c 666 for (so = tcb.so_next; so != &tcb; so = so->so_next) {
tcp_input.c 44 struct socket tcb; variable in typeref:struct:socket
47 struct socket *tcp_last_so = &tcb;
385 so = solookup(&tcb, srcip, srcport, dstip, dstport);
392 * If the state is CLOSED (i.e., TCB does not exist) then
394 * If the TCB exists but is in CLOSED state, it is embryonic,
400 * XXX If a TCB does not exist, and the TH_SYN flag is
972 * Inform user that connection was reset, and close tcb.
974 * Close the tcb.
    [all...]
  /external/strace/
block.c 92 print_blkpg_req(struct tcb *tcp, struct blkpg_ioctl_arg *blkpg)
113 block_ioctl(struct tcb *tcp, long code, long arg)
sock.c 72 struct tcb *tcp;
85 sock_ioctl(struct tcb *tcp, long code, long arg)
syscall.c 478 dumpio(struct tcb *tcp)
538 struct tcb *tcp;
623 struct tcb *tcp_last = NULL;
626 internal_syscall(struct tcb *tcp)
737 get_scno(struct tcb *tcp)
    [all...]
quota.c 331 decode_cmd_data(struct tcb *tcp, u_int32_t cmd, unsigned long data)
630 sys_quotactl(struct tcb *tcp)
716 sys_quotactl(struct tcb *tcp)
count.c 51 count_syscall(struct tcb *tcp, struct timeval *tv)
term.c 181 int term_ioctl(struct tcb *tcp, long code, long arg)
  /external/v8/benchmarks/
richards.js 205 var tcb = this.blocks[id];
206 if (tcb == null) return tcb;
207 tcb.markAsNotHeld();
208 if (tcb.priority > this.currentTcb.priority) {
209 return tcb;
357 return "tcb { " + this.task + "@" + this.state + " }";
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
v8-richards.js 200 var tcb = this.blocks[id];
201 if (tcb == null) return tcb;
202 tcb.markAsNotHeld();
203 if (tcb.priority > this.currentTcb.priority) {
204 return tcb;
352 return "tcb { " + this.task + "@" + this.state + " }";
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
v8-richards.js 200 var tcb = this.blocks[id];
201 if (tcb == null) return tcb;
202 tcb.markAsNotHeld();
203 if (tcb.priority > this.currentTcb.priority) {
204 return tcb;
352 return "tcb { " + this.task + "@" + this.state + " }";
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
v8-richards.js 200 var tcb = this.blocks[id];
201 if (tcb == null) return tcb;
202 tcb.markAsNotHeld();
203 if (tcb.priority > this.currentTcb.priority) {
204 return tcb;
352 return "tcb { " + this.task + "@" + this.state + " }";

Completed in 1071 milliseconds

12