HomeSort by relevance Sort by last modified time
    Searched refs:tmp_fd (Results 1 - 13 of 13) sorted by null

  /system/core/libsparse/
append2simg.c 60 int tmp_fd; local
114 tmp_fd = open(tmp_path, O_WRONLY | O_CREAT | O_BINARY, 0664);
115 if (tmp_fd < 0) {
121 if (sparse_file_write(sparse_output, tmp_fd, false, true, false) < 0) {
127 close(tmp_fd);
  /system/extras/perfprofd/dropbox/
dropbox.cc 47 android::base::unique_fd tmp_fd; local
51 tmp_fd.reset(mkstemp(path));
52 if (tmp_fd.get() == -1) {
68 snprintf(fdpath, arraysize(fdpath), "/proc/self/fd/%d", tmp_fd.get());
83 if (!SerializeProtobuf(encodedProfile, std::move(tmp_fd), kCompress)) {
  /frameworks/base/native/webview/loader/
loader.cpp 80 int tmp_fd = TEMP_FAILURE_RETRY(mkstemp(relro_tmp)); local
81 if (tmp_fd == -1) {
89 extinfo.relro_fd = tmp_fd;
91 int close_result = close(tmp_fd);
  /art/libartbase/base/unix_file/
fd_file.h 64 int tmp_fd = fd_; local
68 return tmp_fd;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
pty.py 122 tmp_fd = os.open(os.ttyname(STDOUT_FILENO), os.O_RDWR)
123 os.close(tmp_fd)
  /external/python/cpython2/Lib/
pty.py 122 tmp_fd = os.open(os.ttyname(STDOUT_FILENO), os.O_RDWR)
123 os.close(tmp_fd)
  /external/python/cpython3/Lib/
pty.py 111 tmp_fd = os.open(os.ttyname(STDOUT_FILENO), os.O_RDWR)
112 os.close(tmp_fd)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
pty.py 122 tmp_fd = os.open(os.ttyname(STDOUT_FILENO), os.O_RDWR)
123 os.close(tmp_fd)
  /prebuilts/gdb/linux-x86/lib/python2.7/
pty.py 122 tmp_fd = os.open(os.ttyname(STDOUT_FILENO), os.O_RDWR)
123 os.close(tmp_fd)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pty.py 122 tmp_fd = os.open(os.ttyname(STDOUT_FILENO), os.O_RDWR)
123 os.close(tmp_fd)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pty.py 122 tmp_fd = os.open(os.ttyname(STDOUT_FILENO), os.O_RDWR)
123 os.close(tmp_fd)
  /external/perfetto/src/ipc/
unix_socket_unittest.cc 258 int tmp_fd = scoped_tmp.fd(); local
259 ASSERT_FALSE(ftruncate(tmp_fd, kTmpSize));
261 mmap(nullptr, kTmpSize, PROT_READ | PROT_WRITE, MAP_SHARED, tmp_fd, 0));
272 [this, tmp_fd, checkpoint, mem](UnixSocket*, UnixSocket* new_conn) {
274 ASSERT_TRUE(new_conn->Send("txfd", 5, tmp_fd));
  /development/scripts/
stack_core.py 213 tmp_fd, tmp_file = tempfile.mkstemp()
214 if subprocess.call(["unzip", "-p", apk, shared_lib_name], stdout=tmp_fd) == 0:
215 os.close(tmp_fd)
221 os.close(tmp_fd)

Completed in 216 milliseconds