Home
last modified time | relevance | path

Searched refs:paths (Results 76 - 100 of 748) sorted by relevance

12345678910>>...30

/kernel/linux/linux-5.10/include/trace/events/
H A Dasoc.h192 TP_PROTO(int paths, int stream),
194 TP_ARGS(paths, stream),
197 __field( int, paths )
202 __entry->paths = paths;
206 TP_printk("%s: found %d paths",
207 __entry->stream ? "capture" : "playback", __entry->paths)
/kernel/linux/linux-6.6/include/trace/events/
H A Dasoc.h193 TP_PROTO(int paths, int stream),
195 TP_ARGS(paths, stream),
198 __field( int, paths )
203 __entry->paths = paths;
207 TP_printk("%s: found %d paths",
208 __entry->stream ? "capture" : "playback", __entry->paths)
/third_party/gn/src/gn/
H A Dfunction_rebase_path.cc136 to convert paths to be relative to what your tool is expecting.
138 The common case is to use this to convert paths relative to the current
145 paths, and it needs to support making paths relative to the source root, so
146 it can't also generate source-absolute paths without more special-cases.
152 can be relative paths ("foo/bar.txt"), system absolute paths
153 ("/foo/bar.txt"), or source absolute paths ("//foo/bar.txt").
156 The directory to convert the paths to be relative to. This can be an
161 paths wil
[all...]
/third_party/protobuf/python/google/protobuf/internal/
H A Dwell_known_types_test.py396 mask.paths.append('foo')
398 mask.paths.append('bar')
404 self.assertEqual(['foo'], mask.paths)
406 self.assertEqual(['foo', 'bar'], mask.paths)
410 mask.paths.append('foo_bar')
412 mask.paths.append('bar_quz')
417 self.assertEqual([], mask.paths)
419 self.assertEqual(['foo_bar'], mask.paths)
421 self.assertEqual(['foo_bar', 'bar_quz'], mask.paths)
427 self.assertEqual(75, len(mask.paths))
[all...]
/foundation/graphic/graphic_2d/rosen/test/2d_graphics/fuzztest/draw/hmsymbol_fuzzer/
H A Dhm_symbol_fuzzer.cpp41 std::vector<Path> paths { path1, path2 }; in HmSymbolFuzzTest()
42 hmSymbol.PathOutlineDecompose(path, paths); in HmSymbolFuzzTest()
52 hmSymbol.MultilayerPath(multMap, paths, multPaths); in HmSymbolFuzzTest()
/third_party/ltp/lib/newlib_tests/shell/
H A Dtst_check_driver.sh22 local paths="$*"
25 if [ -z "$paths" ]; then
30 for drv in $paths; do
/third_party/selinux/libselinux/utils/
H A Dselabel_get_digests_all_partial_matches.c37 char *paths[2] = { NULL, NULL }; in main() local
72 paths[0] = argv[optind]; in main()
86 fts = fts_open(paths, fts_flags, NULL); in main()
89 paths[0], strerror(errno)); in main()
/third_party/vk-gl-cts/scripts/build/
H A Dcommon.py115 def which (binName, paths = None):
116 if paths == None:
117 paths = os.environ['PATH'].split(os.pathsep)
120 for path in paths:
/third_party/vk-gl-cts/scripts/ctsbuild/
H A Dcommon.py115 def which (binName, paths = None):
116 if paths == None:
117 paths = os.environ['PATH'].split(os.pathsep)
120 for path in paths:
/kernel/linux/linux-5.10/scripts/
H A Dleaking_addresses.pl58 # Skip these absolute paths.
521 my ($total, $dmesg, $paths, $files) = parse_raw_file($file);
534 squash_by($paths, 'path');
561 my %paths; # Unique paths containing leaks.
572 cache_path(\%paths, $line);
576 return $total, \@dmesg, \%paths, \%files;
618 my ($paths, $line) = @_;
624 add_to_cache($paths, $path, substr($line, $index));
/kernel/linux/linux-6.6/scripts/
H A Dleaking_addresses.pl58 # Skip these absolute paths.
522 my ($total, $dmesg, $paths, $files) = parse_raw_file($file);
535 squash_by($paths, 'path');
562 my %paths; # Unique paths containing leaks.
573 cache_path(\%paths, $line);
577 return $total, \@dmesg, \%paths, \%files;
619 my ($paths, $line) = @_;
625 add_to_cache($paths, $path, substr($line, $index));
/third_party/unity/test/
H A Drakefile_helper.rb42 include_dirs = $cfg[:paths][:includes] || []
43 include_dirs += $cfg[:paths][:source] || []
44 include_dirs += $cfg[:paths][:test] || []
45 include_dirs += $cfg[:paths][:support] || []
60 def find_source_file(header, paths)
61 paths.each do |dir|
106 [ $extra_paths, 'src', File.join('tests'), File.join('testdata'), $cfg[:paths][:support] ].flatten.uniq.compact.each do |f|
/third_party/python/Lib/
H A Dntpath.py99 # Absolute: UNC, device, and paths with a drive and root.
106 # Join two (or more) paths.
107 def join(path, *paths):
118 if not paths:
121 for p in map(os.fspath, paths):
147 genericpath._check_arg_types('join', path, *paths)
310 # Expand paths beginning with '~' or '~user'.
367 # Expand paths containing shell variable substitutions.
715 # For UNC paths, the prefix will actually be \\?\UNC\
787 # Return the longest common sub-path of the sequence of paths give
[all...]
/third_party/protobuf/src/google/protobuf/util/
H A Dfield_mask_util.cc46 return Join(mask.paths(), ","); in ToString()
51 std::vector<std::string> paths = Split(str, ","); in FromString() local
52 for (int i = 0; i < paths.size(); ++i) { in FromString()
53 if (paths[i].empty()) continue; in FromString()
54 out->add_paths(paths[i]); in FromString()
109 const std::string& path = mask.paths(i); in ToJsonString()
124 std::vector<std::string> paths = Split(str, ","); in FromJsonString() local
125 for (int i = 0; i < paths.size(); ++i) { in FromJsonString()
126 if (paths[i].empty()) continue; in FromJsonString()
128 if (!CamelCaseToSnakeCase(paths[ in FromJsonString()
[all...]
/foundation/bundlemanager/bundle_framework/interfaces/kits/js/zip/src/
H A Dzip_writer.cpp156 bool ZipWriter::WriteEntries(const std::vector<std::pair<FilePath, FilePath>> &paths, const OPTIONS &options) in WriteEntries() argument
158 return AddEntries(paths, options) && Close(options); in WriteEntries()
161 bool ZipWriter::AddEntries(const std::vector<std::pair<FilePath, FilePath>> &paths, const OPTIONS &options) in AddEntries() argument
166 pendingEntries_.insert(pendingEntries_.end(), paths.begin(), paths.end()); in AddEntries()
/third_party/skia/third_party/externals/zlib/google/
H A Dzip_writer.cc129 bool ZipWriter::WriteEntries(const std::vector<base::FilePath>& paths) { in WriteEntries() argument
130 return AddEntries(paths) && Close(); in WriteEntries()
133 bool ZipWriter::AddEntries(const std::vector<base::FilePath>& paths) { in AddEntries() argument
135 pending_entries_.insert(pending_entries_.end(), paths.begin(), paths.end()); in AddEntries()
160 // The FileAccessor requires absolute paths. in FlushEntriesIfNeeded()
166 // We don't know which paths are files and which ones are directories, and in FlushEntriesIfNeeded()
/test/testfwk/xdevice/plugins/ohos/src/ohos/testkit/
H A Dkit_lite.py65 self.paths = ""
74 self.paths = get_config_value('paths', config)
99 os.path.join("tools", burn_tool_name), self.paths)
100 patch_file = get_file_absolute_path(self.burn_file, self.paths)
143 self.paths = ""
154 self.paths = get_config_value('paths', config)
291 file_path = get_file_absolute_path(source, self.paths)
600 self.paths
[all...]
/foundation/multimedia/audio_framework/services/audio_service/server/src/config/
H A Daudio_param_parser.cpp51 if (cfgFiles->paths[i] && *(cfgFiles->paths[i]) != '\0') { in LoadConfiguration()
52 AUDIO_INFO_LOG("extra parameter config file path: %{public}s", cfgFiles->paths[i]); in LoadConfiguration()
53 doc = xmlReadFile(cfgFiles->paths[i], nullptr, 0); in LoadConfiguration()
/foundation/resourceschedule/resource_schedule_service/ressched_executor/plugins/socperf_executor_plugin/framework/src/
H A Dsocperf_executor_wirte_node.cpp63 i < (int32_t)govResNode->paths.size(); i++) { in InitResourceNodeInfo()
64 WriteNode(govResNode->id, govResNode->paths[i], govResNode->levelToStr[govResNode->def][i]); in InitResourceNodeInfo()
100 for (int32_t i = 0; i < (int32_t)govResNode->paths.size(); i++) { in UpdateCurrentValue()
101 WriteNode(resId, govResNode->paths[i], targetStrs[i]); in UpdateCurrentValue()
/kernel/linux/linux-5.10/tools/testing/selftests/exec/
H A Dnon-regular.c56 const char * const paths[] = { in setup_link() local
62 for (i = 0; i < ARRAY_SIZE(paths); i++) { in setup_link()
63 if (access(paths[i], X_OK) == 0) { in setup_link()
64 ASSERT_EQ(symlink(paths[i], self->pathname), 0); in setup_link()
/kernel/linux/linux-5.10/scripts/clang-tools/
H A Dgen_compile_commands.py34 paths: The list of files/directories to handle to find .cmd files.
60 parser.add_argument('paths', type=str, nargs='*', help=paths_help)
68 args.paths if len(args.paths) > 0 else [args.directory])
194 log_level, directory, output, ar, paths = parse_arguments()
203 for path in paths:
/kernel/linux/linux-6.6/tools/testing/selftests/exec/
H A Dnon-regular.c56 const char * const paths[] = { in setup_link() local
62 for (i = 0; i < ARRAY_SIZE(paths); i++) { in setup_link()
63 if (access(paths[i], X_OK) == 0) { in setup_link()
64 ASSERT_EQ(symlink(paths[i], self->pathname), 0); in setup_link()
/kernel/linux/linux-6.6/scripts/clang-tools/
H A Dgen_compile_commands.py36 paths: The list of files/directories to handle to find .cmd files.
62 parser.add_argument('paths', type=str, nargs='*', help=paths_help)
70 args.paths if len(args.paths) > 0 else [args.directory])
188 log_level, directory, output, ar, paths = parse_arguments()
197 for path in paths:
/third_party/littlefs/scripts/
H A Dchangeprefix.py85 def main(from_prefix, to_prefix, paths=[], *,
93 if not paths:
98 paths = subprocess.check_output(cmd, encoding='utf8').split()
100 print('no paths?', file=sys.stderr)
103 for from_path in paths:
147 'paths',
/third_party/mesa3d/src/hgl/
H A DGLRendererRoster.cpp113 const directory_which paths[] = { in AddDefaultPaths() local
121 i < sizeof(paths) / sizeof(paths[0]); i++) { in AddDefaultPaths()
123 status_t status = find_directory(paths[i], &path, true); in AddDefaultPaths()

Completed in 16 milliseconds

12345678910>>...30