/aosp_15_r20/tools/asuite/atest/integration_tests/ |
H A D | snapshot.py | 83 exclude_paths: Optional[list[str]] = None, 94 exclude_paths: A list of relative paths to exclude from the snapshot. 103 name, root_path, include_paths, exclude_paths, env 112 exclude_paths: Optional[list[str]] = None, 119 exclude_paths: A list of paths to ignore during restore. 127 self._dir_snapshot.restore_snapshot(name, root_path, exclude_paths, env) 342 def _is_excluded(self, path: str, exclude_paths: list[pathlib.Path]) -> bool: 344 return exclude_paths and any( 345 path.startswith(exclude_path) for exclude_path in exclude_paths 352 exclude_paths: list[pathlib.Path], [all …]
|
H A D | snapshot_unittest.py | 156 'a_snapshot_name', workspace, ['*'], exclude_paths=['dir1'] 183 exclude_paths=['dir1/file1'],
|
H A D | split_build_test_script.py | 302 exclude_paths=step_out.get_snapshot_exclude_paths(), 313 exclude_paths=self._snapshot_restore_exclude_paths,
|
/aosp_15_r20/tools/asuite/aidegen/lib/ |
H A D | project_config.py | 86 self.exclude_paths = args.exclude_paths 97 self.exclude_paths = _transform_exclusive_paths( 98 self.atest_module_info, self.exclude_paths) 170 def _transform_exclusive_paths(atest_module_info, exclude_paths): argument 174 exclude_paths: A list of strings of exclusive paths. 179 if not exclude_paths: 182 for path in exclude_paths:
|
H A D | project_config_unittest.py | 74 self.assertEqual(config.exclude_paths, None) 85 self.assertEqual(config.exclude_paths, None)
|
/aosp_15_r20/external/pigweed/pw_env_setup/py/pw_env_setup/entry_points/ |
H A D | arm_gdb.py | 29 exclude_paths = sys.path 33 exclude_paths.append(os.path.join(venv_path, 'Scripts')) 40 if str(Path(path_entry).resolve()) not in exclude_paths
|
/aosp_15_r20/external/libnl/tools/ |
H A D | clang-format.sh | 370 EXCLUDE_PATHS=() 374 EXCLUDE_PATHS+=("${BASH_REMATCH[1]}") 378 EXCLUDE_PATHS=("${EXCLUDE_PATHS_TOPLEVEL[@]}") 499 done < <(CHECK_UPSTREAM="$CHECK_UPSTREAM" g_ls_files "${1}/*.[hc]" "${EXCLUDE_PATHS[@]}") 514 done < <(CHECK_UPSTREAM="$CHECK_UPSTREAM" g_ls_files '*.[ch]' "${EXCLUDE_PATHS[@]}")
|
/aosp_15_r20/build/bazel/rules/cc/ |
H A D | memtag_heap_transitions.bzl | 35 exclude_paths = settings[transition_constants.memtag_heap_exclude_paths_key] 36 if path_in_list(path, exclude_paths):
|
/aosp_15_r20/external/mesa3d/src/vulkan/registry/ |
H A D | update-aliases.py | 16 EXCLUDE_PATHS = [ variable 161 for excluded_path in EXCLUDE_PATHS:
|
/aosp_15_r20/external/coreboot/util/release/ |
H A D | build-release | 98 exclude_paths="3rdparty/blobs 3rdparty/fsp 3rdparty/intel-microcode 3rdparty/amd_blobs 3rdparty/qc_… 102 for i in ${exclude_paths}; do
|
/aosp_15_r20/tools/asuite/aidegen/project/ |
H A D | project_splitter_unittest.py | 263 config.exclude_paths = [] 270 config.exclude_paths = ['a']
|
H A D | project_splitter.py | 351 excludes = project_config.ProjectConfig.get_instance().exclude_paths
|
/aosp_15_r20/development/scripts/ |
H A D | update_crate_tests.py | 92 EXCLUDE_PATHS = [ variable 183 for path in EXCLUDE_PATHS:
|
/aosp_15_r20/system/core/init/libprefetch/prefetch/src/tracer/ |
H A D | mem.rs | 40 tracer::{TraceSubsystem, EXCLUDE_PATHS}, 238 for excluded in EXCLUDE_PATHS { in parse_line() 400 for path in EXCLUDE_PATHS { in update_configs()
|
H A D | mod.rs | 56 pub(crate) static EXCLUDE_PATHS: &[&str] = variable
|
/aosp_15_r20/tools/asuite/aidegen/ |
H A D | aidegen_main_unittest.py | 86 self.assertEqual(args.exclude_paths, None) 89 self.assertEqual(args.exclude_paths, [excludes])
|
H A D | aidegen_main.py | 176 dest='exclude_paths',
|
/aosp_15_r20/external/python/rsa/ |
D | .codeclimate.yml | 16 exclude_paths:
|
/aosp_15_r20/external/pigweed/pw_presubmit/py/pw_presubmit/ |
H A D | format_code.py | 69 exclude_paths, 849 set(exclude_paths(exclude, git_repo.list_files(base, paths)))
|
H A D | presubmit.py | 579 tools.exclude_paths( 588 modified_files += tools.exclude_paths(
|
H A D | tools.py | 129 def exclude_paths( function
|
H A D | keep_sorted.py | 458 set(tools.exclude_paths(exclude, git_repo.list_files(base, paths)))
|
/aosp_15_r20/external/squashfs-tools/squashfs-tools/ |
H A D | mksquashfs.c | 201 struct exclude_info *exclude_paths = NULL; variable 4282 if((exclude_paths[i].st_dev == buf->st_dev) && in old_excluded() 4283 (exclude_paths[i].st_ino == buf->st_ino)) in old_excluded() 4291 exclude_paths = realloc(exclude_paths, (exclude + EXCLUDE_SIZE) \ 4293 if(exclude_paths == NULL) \ 4296 exclude_paths[exclude].st_dev = buf.st_dev; \ 4297 exclude_paths[exclude++].st_ino = buf.st_ino;
|
/aosp_15_r20/tools/repohooks/tools/ |
H A D | cpplint.py | 6853 exclude_paths = [os.path.abspath(f) for f in _excludes] 6856 if not any(e for e in exclude_paths
|