HomeSort by relevance Sort by last modified time
    Searched refs:srcfd (Results 1 - 4 of 4) sorted by null

  /frameworks/opt/net/wifi/libwifi_system/
supplicant_manager.cpp 51 int srcfd, destfd; local
74 srcfd = TEMP_FAILURE_RETRY(open(configPathSystem.c_str(), O_RDONLY));
76 if (srcfd < 0) {
78 srcfd = TEMP_FAILURE_RETRY(open(configPathVendor.c_str(), O_RDONLY));
80 if (srcfd < 0) {
94 close(srcfd);
100 while ((nread = TEMP_FAILURE_RETRY(read(srcfd, buf, sizeof(buf)))) != 0) {
104 close(srcfd);
113 close(srcfd);
  /external/ltp/testcases/kernel/io/ltp-aiodio/
aiocp.c 51 static int srcfd; // source fd variable
267 if (iocb->aio_fildes == srcfd)
398 if ((srcfd = open(srcname = *argv, source_open_flag)) < 0) {
404 if (fstat(srcfd, &st) < 0) {
517 io_prep_pread(io, srcfd, io->u.c.buf,
579 if (srcfd != -1)
580 close(srcfd);
  /external/toybox/toys/pending/
crontab.c 267 int srcfd, destfd, status; local
279 srcfd = xopenro(toybuf);
280 xsendfile(srcfd, destfd);
281 xclose(srcfd);
  /frameworks/native/cmds/installd/
utils.cpp 558 static int _copy_owner_permissions(int srcfd, int dstfd)
561 if (fstat(srcfd, &st) != 0) {
    [all...]

Completed in 611 milliseconds