OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dt_content
(Results
1 - 2
of
2
) sorted by null
/system/core/init/
util.h
62
bool read_android_dt_file(const std::string& sub_path, std::string*
dt_content
);
util.cpp
397
bool read_android_dt_file(const std::string& sub_path, std::string*
dt_content
) {
399
if (android::base::ReadFileToString(file_name,
dt_content
)) {
400
if (!
dt_content
->empty()) {
401
dt_content
->pop_back(); // Trims the trailing '\0' out.
409
std::string
dt_content
;
local
410
if (read_android_dt_file(sub_path, &
dt_content
)) {
411
if (
dt_content
== expected_content) {
Completed in 257 milliseconds