/external/libnl/lib/ |
D | handlers.c | 39 static void print_header_content(FILE *ofd, struct nlmsghdr *n) in print_header_content() argument 44 fprintf(ofd, "type=%s length=%u flags=<%s> sequence-nr=%u pid=%u", in print_header_content() 52 FILE *ofd = arg ? arg : stdout; in nl_valid_handler_verbose() local 54 fprintf(ofd, "-- Warning: unhandled valid message: "); in nl_valid_handler_verbose() 55 print_header_content(ofd, nlmsg_hdr(msg)); in nl_valid_handler_verbose() 56 fprintf(ofd, "\n"); in nl_valid_handler_verbose() 63 FILE *ofd = arg ? arg : stderr; in nl_invalid_handler_verbose() local 65 fprintf(ofd, "-- Error: Invalid message: "); in nl_invalid_handler_verbose() 66 print_header_content(ofd, nlmsg_hdr(msg)); in nl_invalid_handler_verbose() 67 fprintf(ofd, "\n"); in nl_invalid_handler_verbose() [all …]
|
D | msg.c | 856 static void prefix_line(FILE *ofd, int prefix) in prefix_line() argument 861 fprintf(ofd, " "); in prefix_line() 864 static inline void dump_hex(FILE *ofd, char *start, int len, int prefix) in dump_hex() argument 870 prefix_line(ofd, prefix); in dump_hex() 871 fprintf(ofd, " "); in dump_hex() 876 fprintf(ofd, "%02x ", v); in dump_hex() 880 fprintf(ofd, "%s\n", ascii); in dump_hex() 882 prefix_line(ofd, prefix); in dump_hex() 883 fprintf(ofd, " "); in dump_hex() 893 fprintf(ofd, " "); in dump_hex() [all …]
|
/external/bison/lib/ |
D | spawn-pipe.c | 125 int ofd[2]; in create_pipe() local 142 if (pipe2_safer (ofd, O_BINARY | O_CLOEXEC) < 0) in create_pipe() 166 if ((!pipe_stdin || dup2 (ofd[0], STDIN_FILENO) >= 0) in create_pipe() 227 close (ofd[0]); in create_pipe() 238 close (ofd[1]); in create_pipe() 246 fd[1] = ofd[1]; in create_pipe() 253 int ofd[2]; in create_pipe() 266 if (pipe_safer (ofd) < 0) in create_pipe() 288 ofd[0], STDIN_FILENO)) in create_pipe() 295 && (err = posix_spawn_file_actions_addclose (&actions, ofd[0])) in create_pipe() [all …]
|
/external/opencv3/3rdparty/openexr/IlmImf/ |
D | ImfTiledOutputFile.cpp | 429 writeTileData (TiledOutputFile::Data *ofd, in writeTileData() argument 441 Int64 currentPosition = ofd->currentPosition; in writeTileData() 442 ofd->currentPosition = 0; in writeTileData() 445 currentPosition = ofd->os->tellp(); in writeTileData() 447 ofd->tileOffsets (dx, dy, lx, ly) = currentPosition; in writeTileData() 450 assert (ofd->os->tellp() == currentPosition); in writeTileData() 457 Xdr::write <StreamIO> (*ofd->os, dx); in writeTileData() 458 Xdr::write <StreamIO> (*ofd->os, dy); in writeTileData() 459 Xdr::write <StreamIO> (*ofd->os, lx); in writeTileData() 460 Xdr::write <StreamIO> (*ofd->os, ly); in writeTileData() [all …]
|
D | ImfOutputFile.cpp | 262 writePixelData (OutputFile::Data *ofd, in writePixelData() argument 273 Int64 currentPosition = ofd->currentPosition; in writePixelData() 274 ofd->currentPosition = 0; in writePixelData() 277 currentPosition = ofd->os->tellp(); in writePixelData() 279 ofd->lineOffsets[(ofd->currentScanLine - ofd->minY) / ofd->linesInBuffer] = in writePixelData() 284 assert (ofd->os->tellp() == currentPosition); in writePixelData() 288 Xdr::write <StreamIO> (*ofd->os, lineBufferMinY); in writePixelData() 289 Xdr::write <StreamIO> (*ofd->os, pixelDataSize); in writePixelData() 290 ofd->os->write (pixelData, pixelDataSize); in writePixelData() 292 ofd->currentPosition = currentPosition + in writePixelData() [all …]
|
/external/e2fsprogs/util/ |
D | copy_sparse.c | 93 long lb, i, fd, ofd, bs, block, numblocks; in copy_sparse_file() local 135 ofd = open(dest, O_WRONLY|O_CREAT|O_TRUNC|O_LARGEFILE, 0777); in copy_sparse_file() 136 if (ofd < 0) { in copy_sparse_file() 160 if (lseek64(ofd, should_be, SEEK_SET) == (off_t) -1) { in copy_sparse_file() 177 lseek(ofd, bs, SEEK_CUR); in copy_sparse_file() 182 got2 = write(ofd, buf, got); in copy_sparse_file() 190 if (fstat64(ofd, &fileinfo) < 0) { in copy_sparse_file() 195 lseek64(ofd, offset-1, SEEK_CUR); in copy_sparse_file() 197 write(ofd, buf, 1); in copy_sparse_file() 200 close(ofd); in copy_sparse_file()
|
/external/libedit/src/ |
D | refresh.c | 504 Char *ofd, *ols, *oe, *nfd, *nls, *ne; in re_update_line() local 514 ofd = o; in re_update_line() 526 while (ofd < o) { in re_update_line() 549 if (*ofd == '\0' && *nfd == '\0') { in re_update_line() 556 while ((o > ofd) && (n > nfd) && (*--o == *--n)) in re_update_line() 572 if (*ofd) { in re_update_line() 573 for (c = *ofd, n = nfd; n < nls; n++) { in re_update_line() 575 for (o = ofd, p = n; in re_update_line() 587 osb = ofd; in re_update_line() 597 for (c = *nfd, o = ofd; o < ols; o++) { in re_update_line() [all …]
|
/external/toybox/toys/posix/ |
D | uudecode.c | 29 int ifd = 0, ofd, idx = 0, m = m; local 44 ofd = xcreate(TT.o ? TT.o : line+idx, O_WRONLY|O_CREAT|O_TRUNC, 100 xwrite(ofd, line, out-line); 105 close(ofd);
|
/external/ppp/pppd/ |
D | tty.c | 926 start_charshunt(ifd, ofd) in start_charshunt() argument 927 int ifd, ofd; in start_charshunt() 931 cpid = safe_fork(ifd, ofd, (log_to_fd >= 0? log_to_fd: 2)); 978 charshunt(ifd, ofd, record_file) in charshunt() argument 979 int ifd, ofd; in charshunt() 1041 if (ifd >= FD_SETSIZE || ofd >= FD_SETSIZE || pty_master >= FD_SETSIZE) 1043 ifd, ofd, pty_master); 1063 if (ofd != ifd) { 1064 flags = fcntl(ofd, F_GETFL); 1066 || fcntl(ofd, F_SETFL, flags | O_NONBLOCK) == -1) [all …]
|
/external/bison/m4/ |
D | posix_spawn.m4 | 149 int ofd[2]; 163 if (pipe (ofd) < 0 || (ofd[1] = fd_safer (ofd[1])) < 0) 179 (err = posix_spawn_file_actions_adddup2 (&actions, ofd[0], STDIN_FILENO)) != 0 180 || (err = posix_spawn_file_actions_addclose (&actions, ofd[0])) != 0 181 || (err = posix_spawn_file_actions_addclose (&actions, ofd[1])) != 0 205 close (ofd[0]); 206 close (ofd[1]);
|
/external/blktrace/ |
D | blktrace.c | 264 int ifd, ofd; member 1443 ret = sendfile(iop->ofd, iop->ifd, NULL, iop->ready); in net_sendfile() 1460 if (net_send_header(iop->ofd, tp->cpu, dpp->buts_name, iop->ready)) in net_sendfile_data() 1530 iop->ofd = -1; in iop_open() 1548 iop->ofd = fileno(iop->ofp); in iop_open() 1584 else if (iop->ofd >= 0) { in close_ios() 1587 net_send_close(iop->ofd, dpp->buts_name, dpp->drops); in close_ios() 1588 net_close_connection(&iop->ofd); in close_ios() 1615 iop->ofd = -1; in open_ios() 1634 iop->ofd = net_setup_client(); in open_ios() [all …]
|
/external/blktrace/btreplay/ |
D | btreplay.c | 113 int cpu, ifd, ofd, iterations; member 736 io_prep_pread(iop, iocbp->tip->ofd, buf, n, off); in iocb_setup() 739 io_prep_pwrite(iop, iocbp->tip->ofd, buf, n, off); in iocb_setup() 770 tip->ofd = -1; in tip_init() 937 close(tip->ofd); in rem_input_file() 1331 tip->ofd = open(path, O_RDWR | O_DIRECT | oflags); in replay_sub() 1332 if (tip->ofd < 0) { in replay_sub()
|
/external/mksh/src/ |
D | main.c | 1391 ksh_dup2(int ofd, int nfd, bool errok) in ksh_dup2() argument 1395 if (((rv = dup2(ofd, nfd)) < 0) && !errok && (errno != EBADF)) in ksh_dup2() 1426 restfd(int fd, int ofd) in restfd() argument 1430 if (ofd < 0) in restfd() 1433 else if (fd != ofd) { in restfd() 1435 ksh_dup2(ofd, fd, true); in restfd() 1436 close(ofd); in restfd()
|
/external/iproute2/tc/ |
D | tc_bpf.c | 797 int ret, cfd, ofd, ffd; in bpf_obj_hash() local 817 ofd = accept(cfd, NULL, 0); in bpf_obj_hash() 818 if (ofd < 0) { in bpf_obj_hash() 821 ret = ofd; in bpf_obj_hash() 840 size = sendfile(ofd, ffd, NULL, stbuff.st_size); in bpf_obj_hash() 848 size = read(ofd, out, len); in bpf_obj_hash() 859 close(ofd); in bpf_obj_hash()
|
/external/bison/ |
D | configure | 18479 int ofd[2]; 18493 if (pipe (ofd) < 0 || (ofd[1] = fd_safer (ofd[1])) < 0) 18509 (err = posix_spawn_file_actions_adddup2 (&actions, ofd[0], STDIN_FILENO)) != 0 18510 || (err = posix_spawn_file_actions_addclose (&actions, ofd[0])) != 0 18511 || (err = posix_spawn_file_actions_addclose (&actions, ofd[1])) != 0 18535 close (ofd[0]); 18536 close (ofd[1]);
|