/external/chromium_org/chromeos/process_proxy/ |
process_output_watcher.cc | 27 void CloseFd(int* fd) { 57 CloseFd(&out_fd_); 58 CloseFd(&stop_fd_); 109 CloseFd(fd);
|
process_proxy.cc | 59 CloseFd(&pt_pair_[PT_SLAVE_FD]); 201 CloseFd(&pt_pair[PT_MASTER_FD]); 244 CloseFd(&(pipe[PIPE_END_READ])); 245 CloseFd(&(pipe[PIPE_END_WRITE])); 248 void ProcessProxy::CloseFd(int* fd) {
|
process_proxy.h | 77 void CloseFd(int* fd);
|
/external/chromium_org/content/common/ |
font_config_ipc_linux.cc | 35 void CloseFD(int fd) { 45 CloseFD(fd_); 118 CloseFD(result_fd); 123 CloseFD(result_fd);
|
/external/chromium_org/tools/android/forwarder2/ |
common.cc | 20 void CloseFD(int fd) {
|
daemon.cc | 192 CloseFD(STDIN_FILENO); 193 CloseFD(STDOUT_FILENO); 194 CloseFD(STDERR_FILENO);
|
common.h | 45 void CloseFD(int fd);
|
socket.cc | 92 CloseFD(socket_);
|
/external/chromium_org/third_party/skia/src/images/ |
SkImageRef_ashmem.h | 39 void closeFD();
|
SkImageRef_ashmem.cpp | 49 this->closeFD(); 52 void SkImageRef_ashmem::closeFD() { 154 this->closeFD();
|
/external/skia/src/images/ |
SkImageRef_ashmem.h | 39 void closeFD();
|
SkImageRef_ashmem.cpp | 49 this->closeFD(); 52 void SkImageRef_ashmem::closeFD() { 157 this->closeFD();
|
/frameworks/base/core/java/com/android/internal/os/ |
TransferPipe.java | 137 closeFd(1); 165 void closeFd(int num) { 177 closeFd(0); 178 closeFd(1);
|
/external/elfutils/libdwfl/ |
offline.c | 287 const char *file_name, int fd, bool closefd, 296 if (closefd) 309 bool closefd = false; 312 closefd = true; 321 return __libdwfl_report_offline (dwfl, name, file_name, fd, closefd, NULL);
|
dwfl_report_elf.c | 265 bool closefd = false; local 268 closefd = true; 283 if (closefd)
|
libdwflP.h | 313 int fd, bool closefd,
|
/external/llvm/lib/Support/Windows/ |
Path.inc | 730 error_code mapped_file_region::init(int FD, bool CloseFD, uint64_t Offset) { 735 if (CloseFD) 758 if (CloseFD) 780 if (CloseFD) 795 if (CloseFD) 808 if (CloseFD) 860 bool closefd, 873 if (closefd) 880 ec = init(FileDescriptor, closefd, offset); [all...] |
/external/llvm/lib/Support/Unix/ |
Path.inc | 533 error_code mapped_file_region::init(int FD, bool CloseFD, uint64_t Offset) { 535 if (!CloseFD) 592 bool closefd, 606 ec = init(fd, closefd, offset);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_io.py | 518 closefd=False) 524 file = self.open(f.fileno(), "r", closefd=False) 531 # can't use closefd in combination with a file name 532 self.assertRaises(ValueError, self.open, support.TESTFN, "r", closefd=False) 538 self.assertEqual(f.buffer.raw.closefd, True) 539 file = self.open(f.fileno(), "r", closefd=False) 540 self.assertEqual(file.buffer.raw.closefd, False) 603 fileio = self.FileIO(f1.fileno(), closefd=False) 605 fileio.__init__(f2.fileno(), closefd=False) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_io.py | 518 closefd=False) 524 file = self.open(f.fileno(), "r", closefd=False) 531 # can't use closefd in combination with a file name 532 self.assertRaises(ValueError, self.open, support.TESTFN, "r", closefd=False) 538 self.assertEqual(f.buffer.raw.closefd, True) 539 file = self.open(f.fileno(), "r", closefd=False) 540 self.assertEqual(file.buffer.raw.closefd, False) 603 fileio = self.FileIO(f1.fileno(), closefd=False) 605 fileio.__init__(f2.fileno(), closefd=False) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
_pyio.py | 45 newline=None, closefd=True): 53 returned I/O object is closed, unless closefd is set to False.) 136 If closefd is False, the underlying file descriptor will be kept open 194 closefd) 235 "errors=None, newline=None, closefd=True)\n\n" + [all...] |
tempfile.py | 200 with _io.open(fd, 'wb', closefd=False) as fp:
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
_pyio.py | 45 newline=None, closefd=True): 53 returned I/O object is closed, unless closefd is set to False.) 136 If closefd is False, the underlying file descriptor will be kept open 194 closefd) 235 "errors=None, newline=None, closefd=True)\n\n" + [all...] |
tempfile.py | 200 with _io.open(fd, 'wb', closefd=False) as fp:
|
/external/llvm/include/llvm/Support/ |
FileSystem.h | 711 error_code init(int FD, bool CloseFD, uint64_t Offset); 742 /// ownership if closefd is true. It must have been opended in the correct 745 bool closefd, [all...] |