Home
last modified time | relevance | path

Searched refs:subprocess_run (Results 1 – 10 of 10) sorted by relevance

/external/vboot_reference/tests/
Dsubprocess_tests.c30 TEST_EQ(subprocess_run(argv, &subprocess_null, &output, NULL), 0, in test_subprocess_output_to_buffer()
53 TEST_EQ(subprocess_run(argv, &subprocess_null, &output, NULL), 0, in test_subprocess_output_to_buffer_null_terminated()
94 TEST_EQ(subprocess_run(argv, &input, &output, &error), 0, in test_subprocess_input_buffer()
134 TEST_EQ(subprocess_run(argv, &input, &output, &error), 0, in test_subprocess_input_null_terminated()
157 TEST_EQ(subprocess_run(argv, &subprocess_null, &output, NULL), 0, in test_subprocess_small_output_buffer()
169 TEST_NEQ(subprocess_run(argv, NULL, NULL, NULL), 0, in test_subprocess_return_code_failure()
215 TEST_EQ(subprocess_run(argv, &input, &output, NULL), 0, in test_subprocess_input_from_cb()
269 TEST_EQ(subprocess_run(argv, &input, &target_via_buffer, NULL), 0, in test_subprocess_output_to_cb()
271 TEST_EQ(subprocess_run(argv, &input, &target_via_cb, NULL), 0, in test_subprocess_output_to_cb()
Dvb2_host_flashrom_tests.c49 int subprocess_run(const char *const argv[], in subprocess_run() function
/external/toolchain-utils/afdo_tools/
Dupdate_kernel_afdo_test.py53 def test_branch_autodetection(self, subprocess_run): argument
54 subprocess_run.return_value = subprocess.CompletedProcess(
172 def test_kernel_profile_fetcher_works(self, subprocess_run): argument
173 subprocess_run.return_value = subprocess.CompletedProcess(
198 def test_kernel_profile_fetcher_handles_no_profiles(self, subprocess_run): argument
199 subprocess_run.return_value = subprocess.CompletedProcess(
210 def test_kernel_profile_fetcher_caches_urls(self, subprocess_run): argument
211 subprocess_run.return_value = subprocess.CompletedProcess(
231 subprocess_run.assert_called_once()
/external/vboot_reference/host/lib/
Dcbfstool.c71 status = subprocess_run(argv, &subprocess_null, &output, in cbfstool_file_exists()
99 status = subprocess_run(argv, &subprocess_null, &subprocess_null, in cbfstool_extract()
128 status = subprocess_run(argv, &subprocess_null, &output, in cbfstool_truncate()
226 status = subprocess_run(argv, &subprocess_null, &output, in cbfstool_get_metadata_hash()
296 status = subprocess_run(argv, &subprocess_null, &output, in get_config_value()
Dflashrom.c87 int status = subprocess_run(argv, &subprocess_null, &subprocess_null, in run_flashrom()
Dsubprocess.c294 int subprocess_run(const char *const argv[], in subprocess_run() function
Dcrossystem.c470 value = subprocess_run(argv, &subprocess_null, &subprocess_null, in VbGetSystemPropertyInt()
693 return subprocess_run(argv, &subprocess_null, &subprocess_null, in VbSetSystemPropertyIntInternal()
/external/vboot_reference/cgpt/
Dcgpt_nor.c226 if (subprocess_run(argv, &subprocess_null, &subprocess_null, NULL) != 0) { in ReadNorFlash()
246 if (subprocess_run(argv, &subprocess_null, &subprocess_null, NULL) != 0) { in FlashromWriteRegion()
/external/vboot_reference/host/lib/include/
Dsubprocess.h120 int subprocess_run(const char *const argv[],
/external/coreboot/util/cbfstool/
Dflashrom.c65 int status = subprocess_run(argv, &subprocess_null, &subprocess_null, in run_flashrom()