OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:srcfd
(Results
1 - 2
of
2
) sorted by null
/external/toybox/toys/pending/
crontab.c
267
int
srcfd
, destfd, status;
local
279
srcfd
= xopen(toybuf, O_RDONLY);
280
xsendfile(
srcfd
, destfd);
281
xclose(
srcfd
);
/hardware/libhardware_legacy/wifi/
wifi.c
380
int
srcfd
, destfd;
local
398
srcfd
= TEMP_FAILURE_RETRY(open(SUPP_CONFIG_TEMPLATE, O_RDONLY));
399
if (
srcfd
< 0) {
406
close(
srcfd
);
411
while ((nread = TEMP_FAILURE_RETRY(read(
srcfd
, buf, sizeof(buf)))) != 0) {
414
close(
srcfd
);
423
close(
srcfd
);
Completed in 180 milliseconds