Home
last modified time | relevance | path

Searched refs:status_fd (Results 1 – 3 of 3) sorted by relevance

/system/extras/postinst/
Dpostinst.sh51 status_fd="$2"
57 print -u${status_fd} "global_progress 0"
62 print -u${status_fd} "global_progress 0.5"
67 print -u${status_fd} "global_progress 1.0"
/system/core/libprocinfo/
Dprocess.cpp67 int status_fd = openat(fd, "status", O_RDONLY | O_CLOEXEC); in GetProcessInfoFromProcPidFd() local
69 if (status_fd == -1) { in GetProcessInfoFromProcPidFd()
76 std::unique_ptr<FILE, decltype(&fclose)> fp(fdopen(status_fd, "r"), fclose); in GetProcessInfoFromProcPidFd()
81 close(status_fd); in GetProcessInfoFromProcPidFd()
/system/update_engine/
Dsideload_main.cc127 int64_t status_fd) { in ApplyUpdatePayload() argument
138 brillo::FileStream::FromFileDescriptor(status_fd, true, nullptr)); in ApplyUpdatePayload()
184 DEFINE_int64(status_fd, -1, "A file descriptor to notify the update status."); in main()