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

  /system/core/init/
util.h 62 bool read_android_dt_file(const std::string& sub_path, std::string* dt_content);
63 bool is_android_dt_value_expected(const std::string& sub_path, const std::string& expected_content);
util.cpp 402 bool read_android_dt_file(const std::string& sub_path, std::string* dt_content) {
403 const std::string file_name = get_android_dt_dir() + sub_path;
413 bool is_android_dt_value_expected(const std::string& sub_path, const std::string& expected_content) {
415 if (read_android_dt_file(sub_path, &dt_content)) {
  /external/webrtc/webrtc/base/
fileutils_mock.h 98 std::string sub_path = path_iterator_->first; local
101 sub_path.find(Pathname::DefaultFolderDelimiter(), path_.size());
105 std::string sub_path = path_iterator_->first; local
108 // sub_path - subpath under top level path (ex. /var/lib/dir/dir/file )
111 size_t end = sub_path.find(Pathname::DefaultFolderDelimiter(), start);
114 return sub_path.substr(start, end - start);
116 return sub_path.substr(start);
  /external/autotest/client/site_tests/video_YouTubeMseEme/
video_YouTubeMseEme.py 53 def load_javascript(self, sub_path):
56 @param sub_path: The relative path from the current .py file.
59 full_path = os.path.join(os.path.dirname(__file__), sub_path)
  /system/media/audio_route/
audio_route.c 363 struct mixer_path *sub_path)
367 for (i = 0; i < sub_path->length; i++)
368 if (path_add_setting(ar, path, &sub_path->setting[i]) < 0)
481 struct mixer_path *sub_path = path_get_by_name(ar, attr_name); local
482 if (!sub_path) {
485 path_add_path(ar, state->path, sub_path);
  /external/libchrome/base/files/
file_path_watcher_unittest.cc 392 FilePath sub_path(temp_dir_.path());
395 sub_path = sub_path.AppendASCII(*d);
396 ASSERT_TRUE(base::CreateDirectory(sub_path));
    [all...]
  /external/squashfs-tools/squashfs-tools/
mksquashfs.c 898 static inline void write_block_map_entry(char *sub_path, unsigned long long start_block, unsigned long long total_size,
915 if (sub_path[0] != '/') fprintf(block_map_file, "/");
917 fprintf(block_map_file, "%s %lld\n", sub_path, round_start);
919 fprintf(block_map_file, "%s %lld-%lld\n", sub_path, round_start, round_end);
989 char *sub_path; local
1010 sub_path = subpathname(dir_ent);
1012 write_block_map_entry(sub_path, start_block, total_size, mount_point, block_map_file);
1021 char *sub_path; local
1050 sub_path = subpathname(dir_ent);
1052 write_block_map_entry(sub_path, start_block, total_size, mount_point, block_map_file)
    [all...]

Completed in 339 milliseconds