Home
last modified time | relevance | path

Searched refs:fd (Results 1 – 6 of 6) sorted by relevance

/CafeSDK-2.12.13-1/system/include/cafe/net/
Dso.h251 extern int accept(int fd, struct sockaddr *addr, int *addrlen);
252 extern int bind(int fd, struct sockaddr *addr, int addrlen);
253 extern int connect(int fd, struct sockaddr *addr, int addrlen);
254 extern int listen(int fd, int backlog);
255 extern int recv(int fd, void *buffer, int len, int flags);
256 extern int recvfrom(int fd, void *buffer, int len, int flags,
258 extern int recvfrom_ex(int fd, void *buffer, int len, int flags,
261 extern int recvfrom_multi (int fd, int flags,
265 extern int send(int fd, const void *buffer, int len, int flags);
266 extern int sendto(int fd, const void *buffer, int len, int flags,
[all …]
/CafeSDK-2.12.13-1/system/src/lib/libsys/
Dind_bcnt.c76 int fd; in __ghs_prof_dump_coverage() local
83 fd = HOSTIO_CREAT("bmon.out", _0644); in __ghs_prof_dump_coverage()
85 if (fd == -1) { in __ghs_prof_dump_coverage()
113 if (HOSTIO_WRITE(fd, test->info, cnt) != cnt) { in __ghs_prof_dump_coverage()
115 HOSTIO_CLOSE(fd); in __ghs_prof_dump_coverage()
122 if(HOSTIO_WRITE(fd, &(test->info[i]), cnt) != cnt ) { in __ghs_prof_dump_coverage()
124 HOSTIO_CLOSE(fd); in __ghs_prof_dump_coverage()
130 HOSTIO_CLOSE(fd); in __ghs_prof_dump_coverage()
Dind_gprf.c197 int32_t fd; in __ghs_prof_dump_callgraph() local
243 if ((fd = HOSTIO_CREAT(gmonout, _0660)) < 0) { in __ghs_prof_dump_callgraph()
248 if (HOSTIO_WRITE(fd, gmon_header, sizeof(gmon_header)) != sizeof(gmon_header)) { in __ghs_prof_dump_callgraph()
269 if (HOSTIO_WRITE(fd, __ghscallgraph_arcbuffer, in __ghs_prof_dump_callgraph()
287 if (HOSTIO_WRITE(fd, __ghscallgraph_arcbuffer, size) != size) { in __ghs_prof_dump_callgraph()
293 HOSTIO_CLOSE(fd); in __ghs_prof_dump_callgraph()
Dind_mprf.c151 int fd, totalUsed; in __ghs_prof_dump_callcounts() local
179 if ((fd = HOSTIO_CREAT(monout, _0660)) < 0) { in __ghs_prof_dump_callcounts()
182 if (HOSTIO_WRITE(fd, h, sizeof(h)) != sizeof(h)) { in __ghs_prof_dump_callcounts()
255 if (HOSTIO_WRITE(fd, (void *) temp->counts, len) != len) { in __ghs_prof_dump_callcounts()
269 HOSTIO_CLOSE(fd); in __ghs_prof_dump_callcounts()
/CafeSDK-2.12.13-1/system/include/cafe/curl/
Dmprintf.h39 CURL_EXTERN int curl_mfprintf(FILE *fd, const char *format, ...);
44 CURL_EXTERN int curl_mvfprintf(FILE *fd, const char *format, va_list args);
/CafeSDK-2.12.13-1/system/include/
Dzlib.h1190 ZEXTERN gzFile ZEXPORT gzdopen OF((int fd, const char *mode));