Searched refs:okay (Results 1 – 3 of 3) sorted by relevance
/system/core/adb/ |
D | commandline.cpp | 1877 bool okay = true; in adb_commandline() local 1878 if (okay && (src.empty() || src == "system")) { in adb_commandline() 1879 okay = do_sync_sync(system_src_path, "/system", list_only); in adb_commandline() 1881 if (okay && (src.empty() || src == "vendor") && directory_exists(vendor_src_path)) { in adb_commandline() 1882 okay = do_sync_sync(vendor_src_path, "/vendor", list_only); in adb_commandline() 1884 if (okay && (src.empty() || src == "oem") && directory_exists(oem_src_path)) { in adb_commandline() 1885 okay = do_sync_sync(oem_src_path, "/oem", list_only); in adb_commandline() 1887 if (okay && (src.empty() || src == "data")) { in adb_commandline() 1888 okay = do_sync_sync(data_src_path, "/data", list_only); in adb_commandline() 1890 return okay ? 0 : 1; in adb_commandline()
|
D | protocol.txt | 236 "flash_kernel,2515049,........\n" "okay\n"
|
/system/core/init/ |
D | util.cpp | 196 bool okay = android::base::ReadFdToString(fd, content); in read_file() local 198 return okay; in read_file()
|