OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:images_path
(Results
1 - 5
of
5
) sorted by null
/build/make/tools/releasetools/
img_from_target_files
90
images_path
= os.path.join(input_tmp, "IMAGES")
92
assert os.path.exists(
images_path
)
93
for image in sorted(os.listdir(
images_path
)):
106
common.ZipWrite(output_zip, os.path.join(
images_path
, image), image)
128
images_path
= os.path.join(input_tmp, "OTA")
131
image_path = os.path.join(
images_path
, image)
img_from_target_files.py
90
images_path
= os.path.join(input_tmp, "IMAGES")
92
assert os.path.exists(
images_path
)
93
for image in sorted(os.listdir(
images_path
)):
106
common.ZipWrite(output_zip, os.path.join(
images_path
, image), image)
128
images_path
= os.path.join(input_tmp, "OTA")
131
image_path = os.path.join(
images_path
, image)
test_add_img_to_target_files.py
61
images_path
= os.path.join(OPTIONS.input_tmp, 'IMAGES')
62
if not os.path.exists(
images_path
):
63
os.mkdir(
images_path
)
64
return images,
images_path
87
images,
images_path
= self._create_images(['foo', 'bar'], 'RADIO')
92
os.path.exists(os.path.join(
images_path
, image + '.img')))
95
images,
images_path
= self._create_images(['foo', 'bar'], 'RADIO')
101
os.path.exists(os.path.join(
images_path
, image + '.img')))
116
images,
images_path
= self._create_images(['foo', 'bar'], 'RADIO')
119
images,
images_path
= self._create_images(['foo', 'bar'], 'IMAGES'
[
all
...]
add_img_to_target_files
553
images_path
= "IMAGES/" + img_name
555
available = (
images_path
in output_zip.namelist() or
558
images_path
= os.path.join(OPTIONS.input_tmp, "IMAGES", img_name)
560
available = os.path.exists(
images_path
) or os.path.exists(radio_path)
[
all
...]
add_img_to_target_files.py
553
images_path
= "IMAGES/" + img_name
555
available = (
images_path
in output_zip.namelist() or
558
images_path
= os.path.join(OPTIONS.input_tmp, "IMAGES", img_name)
560
available = os.path.exists(
images_path
) or os.path.exists(radio_path)
[
all
...]
Completed in 299 milliseconds