OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:record_fd
(Results
1 - 2
of
2
) sorted by null
/system/core/bootstat/
boot_event_record_store.cpp
86
int
record_fd
= creat(record_path.c_str(), S_IRUSR | S_IWUSR);
local
87
if (
record_fd
== -1) {
96
if (!android::base::WriteStringToFd(std::to_string(value),
record_fd
)) {
98
close(
record_fd
);
107
close(
record_fd
);
116
close(
record_fd
);
120
close(
record_fd
);
boot_event_record_store_test.cpp
43
android::base::unique_fd
record_fd
(creat(record_path.c_str(), S_IRUSR | S_IWUSR));
44
if (
record_fd
== -1) {
52
if (!android::base::WriteStringToFd(std::to_string(value),
record_fd
)) {
Completed in 92 milliseconds