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

  /system/core/debuggerd/
utility.h 46 int tfd; member in struct:log_t
57 : tfd(-1), amfd(-1), crashed_tid(-1), current_tid(-1), should_retrieve_logcat(true) {}
  /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/toybox/toys/posix/
cp.c 107 tfd = dirtree_parentfd(try); local
195 if (!linkat(tfd, try->name, cfd, catch, 0)) err = 0;
232 ? (0 < (i = readlinkat(tfd, try->name, toybuf, sizeof(toybuf))) &&
244 fdin = openat(tfd, try->name, O_RDONLY);
293 if (unlinkat(tfd, try->name, S_ISDIR(try->st.st_mode) ? AT_REMOVEDIR :0))
  /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...]

Completed in 97 milliseconds