HomeSort by relevance Sort by last modified time
    Searched defs:tfd (Results 1 - 6 of 6) sorted by null

  /system/core/debuggerd/
utility.h 48 int tfd; member in struct:log_t
59 : tfd(-1), amfd_data(nullptr), crashed_tid(-1), current_tid(-1),
  /external/valgrind/memcheck/tests/linux/
timerfd-syscall.c 146 long waittmr(int tfd, int timeo)
151 pfd.fd = tfd;
164 if (read(tfd, &ticks, sizeof(ticks)) != sizeof(ticks))
175 int i, tfd; local
198 if ((tfd = timerfd_create(clks[i].id, 0)) == -1)
204 if (timerfd_settime(tfd, 0, &tmr, NULL))
211 ticks = waittmr(tfd, -1);
224 if (timerfd_settime(tfd, TFD_TIMER_ABSTIME, &tmr, NULL))
231 ticks = waittmr(tfd, -1);
243 if (timerfd_settime(tfd, TFD_TIMER_ABSTIME, &tmr, NULL)
    [all...]
  /external/iproute2/examples/bpf/
bpf_agent.c 108 static void bpf_dump_map_data(int *tfd)
117 bpf_dump_drops(tfd[BPF_MAP_ID_DROPS]);
118 bpf_dump_queue(tfd[BPF_MAP_ID_QUEUE]);
119 bpf_dump_proto(tfd[BPF_MAP_ID_PROTO]);
127 int i, tfd[BPF_MAP_ID_MAX]; local
142 tfd[aux->ent[i].id] = fds[i];
145 bpf_dump_map_data(tfd);
148 static void bpf_map_get_from_env(int *tfd)
160 tfd[i] = atoi(val);
220 int tfd[BPF_MAP_ID_MAX] local
    [all...]
  /external/toybox/toys/pending/
crontab.c 249 int tfd = mkstemp(tname); local
251 if (tfd < 0) perror_exit("mkstemp");
252 xsendfile(0, tfd);
253 xclose(tfd);
syslogd.c 239 struct logfile *tfd; local
241 for (tfd = TT.lfiles; tfd; tfd = tfd->next) {
245 if (*tfd->filename == '@') { // network
248 tmpfile = xstrdup(tfd->filename + 1);
255 error_exit("bad port in %s", tfd->filename);
265 memcpy(&tfd->saddr, info->ai_addr, info->ai_addrlen);
268 tfd->logfd = xsocket(AF_INET, SOCK_DGRAM, IPPROTO_UDP)
    [all...]
  /external/toybox/toys/posix/
cp.c 146 tfd = dirtree_parentfd(try); local
234 if (!linkat(tfd, try->name, cfd, catch, 0)) err = 0;
271 ? (0 < (i = readlinkat(tfd, try->name, toybuf, sizeof(toybuf))) &&
283 fdin = openat(tfd, try->name, O_RDONLY);
361 if (unlinkat(tfd, try->name, S_ISDIR(try->st.st_mode) ? AT_REMOVEDIR :0))

Completed in 103 milliseconds