HomeSort by relevance Sort by last modified time
    Searched refs:OPTIONS (Results 1 - 25 of 157) sorted by null

1 2 3 4 5 6 7

  /build/make/tools/releasetools/
img_from_target_files 46 OPTIONS = common.OPTIONS
51 Load information from input_file to OPTIONS.
57 info = OPTIONS.info_dict = common.LoadInfoDict(input_file)
59 OPTIONS.put_super = info.get("super_image_in_update_package") == "true"
60 OPTIONS.dynamic_partition_list = info.get("dynamic_partition_list",
62 OPTIONS.super_device_list = info.get("super_block_devices",
64 OPTIONS.retrofit_dap = info.get("dynamic_partition_retrofit") == "true"
65 OPTIONS.build_super = info.get("build_super_partition") == "true"
66 OPTIONS.sparse_userimages = bool(info.get("extfs_sparse_flag")
    [all...]
img_from_target_files.py 46 OPTIONS = common.OPTIONS
51 Load information from input_file to OPTIONS.
57 info = OPTIONS.info_dict = common.LoadInfoDict(input_file)
59 OPTIONS.put_super = info.get("super_image_in_update_package") == "true"
60 OPTIONS.dynamic_partition_list = info.get("dynamic_partition_list",
62 OPTIONS.super_device_list = info.get("super_block_devices",
64 OPTIONS.retrofit_dap = info.get("dynamic_partition_retrofit") == "true"
65 OPTIONS.build_super = info.get("build_super_partition") == "true"
66 OPTIONS.sparse_userimages = bool(info.get("extfs_sparse_flag")
    [all...]
add_img_to_target_files 70 OPTIONS = common.OPTIONS
71 OPTIONS.add_missing = False
72 OPTIONS.rebuild_recovery = False
73 OPTIONS.replace_updated_files_list = []
74 OPTIONS.replace_verity_public_key = False
75 OPTIONS.replace_verity_private_key = False
76 OPTIONS.is_signing = False
124 image_size = OPTIONS.info_dict.get(size_key)
140 img = OutputFile(output_zip, OPTIONS.input_tmp, "IMAGES", "system.img"
    [all...]
add_img_to_target_files.py 70 OPTIONS = common.OPTIONS
71 OPTIONS.add_missing = False
72 OPTIONS.rebuild_recovery = False
73 OPTIONS.replace_updated_files_list = []
74 OPTIONS.replace_verity_public_key = False
75 OPTIONS.replace_verity_private_key = False
76 OPTIONS.is_signing = False
124 image_size = OPTIONS.info_dict.get(size_key)
140 img = OutputFile(output_zip, OPTIONS.input_tmp, "IMAGES", "system.img"
    [all...]
ota_from_target_files 21 Usage: ota_from_target_files [options] input_target_files output_ota_package
23 Common options that apply to both of non-A/B and A/B OTAs
81 Non-A/B OTA specific options
140 A/B OTA specific options
204 OPTIONS = common.OPTIONS
205 OPTIONS.package_key = None
206 OPTIONS.incremental_source = None
207 OPTIONS.verify = False
208 OPTIONS.patch_threshold = 0.9
    [all...]
ota_from_target_files.py 21 Usage: ota_from_target_files [options] input_target_files output_ota_package
23 Common options that apply to both of non-A/B and A/B OTAs
81 Non-A/B OTA specific options
140 A/B OTA specific options
204 OPTIONS = common.OPTIONS
205 OPTIONS.package_key = None
206 OPTIONS.incremental_source = None
207 OPTIONS.verify = False
208 OPTIONS.patch_threshold = 0.9
    [all...]
sign_target_files_apks 62 -d and -k options are added to the set of mappings in the order
138 OPTIONS = common.OPTIONS
140 OPTIONS.extra_apks = {}
141 OPTIONS.extra_apex_payload_keys = {}
142 OPTIONS.skip_apks_with_path_prefix = set()
143 OPTIONS.key_map = {}
144 OPTIONS.rebuild_recovery = False
145 OPTIONS.replace_ota_keys = False
146 OPTIONS.replace_verity_public_key = Fals
    [all...]
sign_target_files_apks.py 62 -d and -k options are added to the set of mappings in the order
138 OPTIONS = common.OPTIONS
140 OPTIONS.extra_apks = {}
141 OPTIONS.extra_apex_payload_keys = {}
142 OPTIONS.skip_apks_with_path_prefix = set()
143 OPTIONS.key_map = {}
144 OPTIONS.rebuild_recovery = False
145 OPTIONS.replace_ota_keys = False
146 OPTIONS.replace_verity_public_key = Fals
    [all...]
merge_target_files.py 67 OPTIONS = common.OPTIONS
68 OPTIONS.verbose = True
69 OPTIONS.system_target_files = None
70 OPTIONS.system_item_list = None
71 OPTIONS.system_misc_info_keys = None
72 OPTIONS.other_target_files = None
73 OPTIONS.other_item_list = None
74 OPTIONS.output_target_files = None
75 OPTIONS.rebuild_recovery = Fals
    [all...]
test_add_img_to_target_files.py 29 OPTIONS = common.OPTIONS
35 OPTIONS.input_tmp = common.MakeTempDir()
51 """Creates images under OPTIONS.input_tmp/prefix."""
52 path = os.path.join(OPTIONS.input_tmp, prefix)
61 images_path = os.path.join(OPTIONS.input_tmp, 'IMAGES')
74 radio_path = os.path.join(OPTIONS.input_tmp, 'RADIO')
137 OPTIONS.info_dict = {
150 meta_path = os.path.join(OPTIONS.input_tmp, 'META')
172 care_map_file = os.path.join(OPTIONS.input_tmp, 'META', 'care_map.pb'
    [all...]
make_recovery_patch 31 OPTIONS = common.OPTIONS
40 OPTIONS.info_dict = common.LoadInfoDict(input_dir)
  /external/autotest/client/site_tests/firmware_TouchMTB/
main.py 32 from firmware_constants import MODE, OPTIONS
56 def __init__(self, options):
57 self.options = options
71 is_touchscreen=options[OPTIONS.TOUCHSCREEN],
94 mode = options[OPTIONS.MODE]
95 if options[OPTIONS.RESUME]
521 options = _parse_options() variable
    [all...]
firmware_summary.py 60 from firmware_constants import OPTIONS
67 """The options of displaying metrics."""
68 # Defining the options of displaying metrics
371 print 'Usage: $ python %s [options]\n' % prog
372 print 'options:'
373 print ' -D, --%s' % OPTIONS.DEBUG
375 print ' -d, --%s <directory>' % OPTIONS.DIR
377 print ' -h, --%s' % OPTIONS.HELP
379 print ' -i, --%s' % OPTIONS.INDIVIDUAL
381 print ' -m, --%s <verbose_level>' % OPTIONS.METRIC
457 options = _parse_options() variable
    [all...]
firmware_constants.py 174 """Constants about command line options."""
176 OPTIONS = _Options()
177 OPTIONS.DEBUG = 'debug'
178 OPTIONS.DEVICE = 'system_device'
179 OPTIONS.DIR = 'directory'
180 OPTIONS.FNGENERATOR = 'function_generator'
181 OPTIONS.HELP = 'help'
182 OPTIONS.INDIVIDUAL = 'individual'
183 OPTIONS.ITERATIONS = 'iterations'
184 OPTIONS.METRICS = 'show_metrics
    [all...]
  /external/bzip2/
bzdiff 8 # gram on compressed files. All options specified are passed
22 OPTIONS=
27 -*) OPTIONS="$OPTIONS $ARG";;
47 bzip2 -cd "$FILE.bz2" | $comp $OPTIONS - "$FILE"
57 bzip2 -cdfq "$1" | $comp $OPTIONS - $tmp
61 *) bzip2 -cdfq "$1" | $comp $OPTIONS - "$2"
66 bzip2 -cdfq "$2" | $comp $OPTIONS "$1" -
68 *) $comp $OPTIONS "$1" "$2"
  /external/autotest/contrib/
run-board-inventory 7 $SCRIPT_DIR/run-inventory $OPTIONS "${MODEL_NOTIFY[@]}"
run-loop-detection 7 $SCRIPT_DIR/run-inventory $OPTIONS "${UNTESTABLE_DETECT[@]}"
run-model-inventory 7 $SCRIPT_DIR/run-inventory $OPTIONS "${MODEL_NOTIFY[@]}"
run-pool-inventory 7 $SCRIPT_DIR/run-inventory $OPTIONS "${POOL_NOTIFY[@]}"
  /external/Reactive-Extensions/RxCpp/Ix/CPP/unittest/
makefile 15 OPTIONS=/Od
17 OPTIONS=/Ox
19 OPTIONS=$(OPTIONS) /Zi /I$(BOOST) /DBOOST_RESULT_OF_USE_DECLTYPE
31 $(CPP) $(OPTIONS) /EHsc /Zi /Fe"$@" /Fo$O/ testbench.cpp
  /external/u-boot/scripts/
coccicheck 42 # heuristics done in this file as Coccinelle accepts the last options when
43 # options conflict.
72 OPTIONS="$COCCIINCLUDE $1"
76 OPTIONS="--dir $srctree $COCCIINCLUDE"
78 OPTIONS="--dir $KBUILD_EXTMOD $COCCIINCLUDE"
83 OPTIONS="--patch $srctree $OPTIONS"
93 OPTIONS="$OPTIONS --jobs $NPROC --chunksize 1"
174 OPTIONS="$OPTIONS $SPFLAGS
    [all...]
  /external/autotest/client/site_tests/example_UnitTest/src/
Makefile 8 OPTIONS = -fprofile-arcs -ftest-coverage -fno-inline -O0
15 $(CXX) $(CXXFLAGS) $(OPTIONS) $(LDFLAGS) $(PACKAGES) $(OBJECTS) $(LIBS) \
21 $(CXX) $(CXXFLAGS) $(PACKAGES) $(OPTIONS) $(INCLUDES) -c $< -o $@
22 $(CXX) -MM $(CXXFLAGS) $(PACKAGES) $(OPTIONS) $(INCLUDES) $< > $*.d
  /external/python/cpython3/PC/layout/support/
options.py 17 OPTIONS = {
41 "options": [
56 "options": ["stable", "pip", "distutils", "dev", "props"],
60 "options": [
77 "options": ["stable", "zip-lib", "flat-dlls", "underpth", "precompile"],
84 for opt, info in OPTIONS.items():
92 help = "When specified, includes default options for {}".format(info["help"])
115 for opt in info["options"]:
119 for opt in OPTIONS:
120 if OPTIONS[opt].get("not-in-all")
    [all...]
  /external/libcxxabi/test/
testit 16 if [ -z "$OPTIONS" ]
18 OPTIONS="-std=c++0x -stdlib=libc++"
43 if $CC $OPTIONS $HEADER_INCLUDE $SOURCE_LIB $FILE $LIBS -o ./$TEST_EXE > /dev/null 2>&1
57 if $CC $OPTIONS $HEADER_INCLUDE $SOURCE_LIB $FILE $LIBS -o ./$TEST_EXE
113 echo "with $OPTIONS $HEADER_INCLUDE $SOURCE_LIB"
  /external/ltp/testcases/kernel/fs/fs_bind/bin/
check_prop 22 while getopts "n" args $OPTIONS

Completed in 715 milliseconds

1 2 3 4 5 6 7