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

  /frameworks/opt/net/wifi/libwifi_system/
supplicant_manager.cpp 51 int srcfd, destfd; local
90 destfd = TEMP_FAILURE_RETRY(open(config_file,
93 if (destfd < 0) {
105 close(destfd);
109 TEMP_FAILURE_RETRY(write(destfd, buf, nread));
112 close(destfd);
230 int destfd; local
241 destfd = TEMP_FAILURE_RETRY(open(kWiFiEntropyFile, O_CREAT | O_RDWR, 0660));
242 if (destfd < 0) {
247 if (TEMP_FAILURE_RETRY(write(destfd, kDummyKey, sizeof(kDummyKey))) !
    [all...]
  /external/toybox/toys/pending/
crontab.c 267 int srcfd, destfd, status; local
271 if ((destfd = mkstemp(tname)) < 0)
274 fchmod(destfd, 0666);
280 xsendfile(srcfd, destfd);
284 xclose(destfd);

Completed in 111 milliseconds