Home
last modified time | relevance | path

Searched refs:tofd (Results 1 – 5 of 5) sorted by relevance

/external/fastrpc/src/
Dfastrpc_apps_user.c338 struct mem_to_fd* tofd = 0; in remote_register_fd_attr() local
341 VERIFYC(NULL != (tofd = calloc(1, sizeof(*tofd))), AEE_ENOMEMORY); in remote_register_fd_attr()
342 QNode_CtorZ(&tofd->qn); in remote_register_fd_attr()
344 tofd->buf = buf; in remote_register_fd_attr()
345 tofd->size = size; in remote_register_fd_attr()
346 tofd->fd = fd; in remote_register_fd_attr()
347 tofd->nova = 1; in remote_register_fd_attr()
348 tofd->attr = attr; in remote_register_fd_attr()
351 QList_AppendNode(&fdlist.ql, &tofd->qn); in remote_register_fd_attr()
354 tofd = 0; in remote_register_fd_attr()
[all …]
/external/iperf3/src/
Dnet.c395 Nsendfile(int fromfd, int tofd, const char *buf, size_t count) in Nsendfile() argument
409 r = sendfile(tofd, fromfd, &offset, nleft); in Nsendfile()
413 r = sendfile(fromfd, tofd, offset, nleft, NULL, &sent, 0); in Nsendfile()
417 r = sendfile(fromfd, tofd, offset, &sent, NULL, 0); in Nsendfile()
Dnet.h36 int Nsendfile(int fromfd, int tofd, const char *buf, size_t count) /* __attribute__((hot)) */;
/external/rust/crates/libc/src/unix/bsd/freebsdlike/freebsd/
Dmod.rs3922 pub fn fhlinkat(fhp: *mut fhandle_t, tofd: ::c_int, to: *const ::c_char) -> ::c_int;
/external/rust/crates/libc/src/unix/bsd/apple/
Dmod.rs5468 tofd: ::c_int, in renameatx_np()