Home
last modified time | relevance | path

Searched refs:kernel_path (Results 1 – 13 of 13) sorted by relevance

/external/igt-gpu-tools/scripts/
Dlist-workarounds110 kernel_path = None variable
112 if not len(args) and options.kernel_path == None and options.mesa_path == None:
117 kernel_path = args[0] variable
118 elif options.kernel_path != None:
119 kernel_path = options.kernel_path variable
121 if kernel_path != None:
123 kconfig = os.path.join(kernel_path, 'Kconfig')
126 % kernel_path)
130 print_workarounds(kernel_path, i915_dir, "kernel")
/external/crosvm/integration_tests/tests/
Dfixture.rs60 fn kernel_path() -> PathBuf { in kernel_path() function
196 let kernel_path = kernel_path(); in initialize_once() localVariable
198 if !kernel_path.exists() { in initialize_once()
200 download_file(&kernel_prebuilt_url(), &kernel_path).unwrap(); in initialize_once()
203 assert!(kernel_path.exists(), "{:?} does not exist", kernel_path); in initialize_once()
258 .arg(kernel_path()); in configure_kernel()
/external/ComputeLibrary/src/core/CL/
DCLCompileContext.cpp152 … const std::string &kernel_path, const StringSet &build_options_set, bool is_binary) const in create_kernel() argument
154 const std::string build_options = generate_build_options(build_options_set, kernel_path); in create_kernel()
224 …t::generate_build_options(const StringSet &build_options_set, const std::string &kernel_path) const in generate_build_options()
265 std::string build_options = stringify_set(build_options_set, kernel_path) + concat_str; in generate_build_options()
275 std::string CLCompileContext::stringify_set(const StringSet &s, const std::string &kernel_path) con… in stringify_set()
279 concat_set += "-I" + kernel_path + " "; in stringify_set()
281 ARM_COMPUTE_UNUSED(kernel_path); in stringify_set()
DCLKernelLibrary.cpp1016 void CLKernelLibrary::init(std::string kernel_path, cl::Context context, cl::Device device) in init() argument
1019 _kernel_path = kernel_path; in init()
1022 void CLKernelLibrary::set_kernel_path(const std::string &kernel_path) in set_kernel_path() argument
1024 _kernel_path = std::move(kernel_path); in set_kernel_path()
DCLHelpers.cpp407 const std::string kernel_path = CLKernelLibrary::get().get_kernel_path(); in create_kernel() local
408 …Kernel>(ctx.create_kernel(kernel_name, program_name, kernel_src.first, kernel_path, build_opts, ke… in create_kernel()
/external/ComputeLibrary/tests/validation/CL/UNIT/
DCompileContext.cpp54 const std::string kernel_path = CLKernelLibrary::get().get_kernel_path(); in TEST_SUITE() local
59 …compile_context.create_kernel(kernel_name, program_name, kernel_src.first, kernel_path, build_opts… in TEST_SUITE()
65 …compile_context.create_kernel(kernel_name, program_name, kernel_src.first, kernel_path, build_opts… in TEST_SUITE()
/external/autotest/client/cros/faft/utils/
Dkernel_handler.py87 def dump_kernel(self, section, kernel_path): argument
94 cmd = 'dd if=%s of=%s bs=%dM count=1' % (dev, kernel_path,
98 def write_kernel(self, section, kernel_path): argument
105 dd_cmd = 'dd if=%s of=%s bs=%dM count=1' % (kernel_path, dev,
Drootfs_handler.py36 kernel_path = self.os_if.join_part(self.root_dev,
42 'dd if=%s of=%s' % (kernel_path, self.kernel_dump_file))
/external/ComputeLibrary/arm_compute/core/CL/
DCLCompileContext.h252 … const std::string &kernel_path, const StringSet &build_options_set, bool is_binary) const;
315 …tring generate_build_options(const StringSet &build_options, const std::string &kernel_path) const;
324 std::string stringify_set(const StringSet &s, const std::string &kernel_path) const;
DCLKernelLibrary.h60 void init(std::string kernel_path, cl::Context context, cl::Device device);
65 void set_kernel_path(const std::string &kernel_path);
/external/autotest/client/cros/faft/
Drpc_functions.py702 def dump(self, section, kernel_path): argument
708 self._kernel_handler.dump_kernel(section, kernel_path)
710 def write(self, section, kernel_path): argument
716 self._kernel_handler.write_kernel(section, kernel_path)
/external/crosvm/src/linux/
Dmod.rs830 Some(Executable::Kernel(ref kernel_path)) => VmImage::Kernel( in setup_vm_components()
831 open_file(kernel_path, OpenOptions::new().read(true)).with_context(|| { in setup_vm_components()
832 format!("failed to open kernel image {}", kernel_path.display()) in setup_vm_components()
/external/crosvm/src/
Dmain.rs1057 let kernel_path = PathBuf::from(value.unwrap()); in set_argument() localVariable
1058 if !kernel_path.exists() { in set_argument()
1064 cfg.executable_path = Some(Executable::Kernel(kernel_path)); in set_argument()