Home
last modified time | relevance | path

Searched refs:option (Results 1 – 25 of 166) sorted by relevance

1234567

/system/libufdt/utils/src/
Dmkdtimg_create.c41 static int parse_arg(char **option, char **value, char *arg) { in parse_arg() argument
44 *option = NULL; in parse_arg()
53 return parse_option(option, value, arg + 2); in parse_arg()
64 char *option, *value; in output_img_with_args() local
65 if (parse_arg(&option, &value, arg) != 0) { in output_img_with_args()
70 if (option == NULL) { in output_img_with_args()
80 set_entry_options(writer, option, value) : in output_img_with_args()
81 set_global_options(writer, option, value); in output_img_with_args()
83 fprintf(stderr, "Unknown option: %s\n", option); in output_img_with_args()
Dmkdtimg_cfg_create.c35 static struct option options[] = {
98 char *option, *value; in output_img_with_config() local
99 if (parse_option(&option, &value, trimmed) != 0) { in output_img_with_config()
105 set_entry_options(writer, option, value) : in output_img_with_config()
106 set_global_options(writer, option, value); in output_img_with_config()
108 fprintf(stderr, "Unknown option: %s\n", option); in output_img_with_config()
Dmkdtimg_core.c275 const char *option, const char *value) { in set_dt_options() argument
276 if (strcmp(option, "id") == 0) { in set_dt_options()
278 } else if (strcmp(option, "rev") == 0) { in set_dt_options()
280 } else if (strcmp(option, "custom0") == 0) { in set_dt_options()
282 } else if (strcmp(option, "custom1") == 0) { in set_dt_options()
284 } else if (strcmp(option, "custom2") == 0) { in set_dt_options()
286 } else if (strcmp(option, "custom3") == 0) { in set_dt_options()
296 const char *option, const char *value) { in set_global_options() argument
299 if (strcmp(option, "page_size") == 0) { in set_global_options()
301 } else if (strcmp(option, "version") == 0) { in set_global_options()
[all …]
Dmkdtimg_core.h32 int set_global_options(struct dt_image_writer *writer, const char *option, const char *value);
33 int set_entry_options(struct dt_image_writer *writer, const char *option, const char *value);
/system/bt/gd/packet/parser/
Dlanguage_l.ll16 %option debug
18 %option yylineno
19 %option noyywrap
20 %option nounput
21 %option noinput
22 %option reentrant
23 %option bison-bridge
24 %option bison-locations
/system/core/adb/fastdeploy/proto/
DApkEntry.proto5 option java_package = "com.android.fastdeploy";
6 option java_outer_classname = "ApkEntryProto";
7 option java_multiple_files = true;
/system/core/storaged/
Dstoraged.proto2 option optimize_for = LITE_RUNTIME;
4 option java_package = "com.android.storaged.proto";
5 option java_outer_classname = "Storaged";
/system/core/bootstat/
DREADME.md25 with the `-r` option and the name of the boot event.
34 To log the persisted boot events, call `bootstat` with the `-l` option.
38 bootstat logs all boot events recorded using the `-r` option to the EventLog
45 To print the set of persisted boot events, call `bootstat` with the `-p` option.
/system/tools/aidl/
Daidl_language_l.ll28 %option noyywrap
29 %option nounput
30 %option noinput
31 %option reentrant
32 %option bison-bridge
33 %option bison-locations
/system/extras/verity/
Dbuild_verity_tree_main.cpp57 constexpr struct option long_options[] = { in main()
100 std::string option = long_options[option_index].name; in main() local
101 if (option == "hash-algorithm") { in main()
/system/bt/internal_include/
Dbte.h105 uint8_t option; /* option for operation. depends on operation */ member
109 uint8_t op, uint8_t option);
/system/apex/proto/
Dapex_build_info.proto21 option java_package = "com.android.apex";
22 option java_outer_classname = "Protos";
43 // Whether the --no_hashtree option was set at build time.
/system/extras/simpleperf/
DETMDecoder.h34 bool ParseEtmDumpOption(const std::string& s, ETMDumpOption* option);
67 virtual void EnableDump(const ETMDumpOption& option) = 0;
Dreport_sample.proto14 option optimize_for = LITE_RUNTIME;
16 option java_package = "com.android.tools.profiler.proto";
17 option java_outer_classname = "SimpleperfReport";
43 // By using '-e' option, we can ask simpleperf to record samples for one or more
/system/sepolicy/tools/
Dinsertkeys.py123 for option in options:
127 if option != target_build_variant and \
128 option != ParseConfig.OPTION_WILDCARD_TAG:
129 logging.info("Skipping " + tag + " : " + option +
137 tag_path = os.path.expandvars(self.get(tag, option))
/system/core/adb/proto/
Dkey_type.proto19 option java_package = "com.android.server.adb.protos";
20 option java_outer_classname = "KeyTypeProto";
Dapp_processes.proto19 option java_package = "com.android.server.adb.protos";
20 option java_outer_classname = "AppProcessesProto";
Dpairing.proto19 option java_package = "com.android.server.adb.protos";
20 option java_outer_classname = "PairingProto";
Dadb_known_hosts.proto19 option java_package = "com.android.server.adb.protos";
20 option java_outer_classname = "AdbKnownHostsProto";
/system/bt/gd/l2cap/internal/
Dsender.cc106 …RetransmissionAndFlowControlConfigurationOption option = config.local_retransmission_and_flow_cont… in UpdateClassicConfiguration() local
107 option.tx_window_size_ = config.remote_retransmission_and_flow_control_.tx_window_size_; in UpdateClassicConfiguration()
108 data_controller_->SetRetransmissionAndFlowControlOptions(option); in UpdateClassicConfiguration()
/system/tools/hidl/
Dhidl-gen_l.ll72 %option yylineno
73 %option noyywrap
74 %option nounput
75 %option noinput
76 %option reentrant
77 %option bison-bridge
78 %option bison-locations
/system/bt/gd/l2cap/classic/internal/
Dsignalling_manager.cc295 for (auto& option : options) { in OnConfigurationRequest() local
296 switch (option->type_) { in OnConfigurationRequest()
298 auto* config = MtuConfigurationOption::Specialize(option.get()); in OnConfigurationRequest()
313 auto* config = RetransmissionAndFlowControlConfigurationOption::Specialize(option.get()); in OnConfigurationRequest()
333 if (option->is_hint_ != ConfigurationOptionIsHint::OPTION_IS_A_HINT) { in OnConfigurationRequest()
334 … LOG_WARN("Received some unsupported configuration option: %d", static_cast<int>(option->type_)); in OnConfigurationRequest()
430 for (auto& option : options) { in negotiate_configuration() local
431 switch (option->type_) { in negotiate_configuration()
448 auto* config = RetransmissionAndFlowControlConfigurationOption::Specialize(option.get()); in negotiate_configuration()
474 … LOG_WARN("Received some unsupported configuration option: %d", static_cast<int>(option->type_)); in negotiate_configuration()
[all …]
/system/bt/gd/proto/bluetooth/bluetoothKeystore/
Dkeystore.proto22 option java_package = "com.android.bluetooth";
23 option java_outer_classname = "BluetoothKeystoreProto";
/system/tools/hidl/scripts/
Drun-tests.sh80 while getopts "m:j:p" option ; do
81 case "${option}" in
/system/timezone/input_tools/android/telephonylookup_generator/src/main/proto/
Dtelephony_lookup_proto_file.proto19 option java_package = "com.android.libcore.timezone.telephonylookup.proto";
20 option java_multiple_files = false;

1234567