OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HasSwitch
(Results
1 - 25
of
27
) sorted by null
1
2
/external/libchrome/base/
command_line_unittest.cc
53
EXPECT_FALSE(cl.
HasSwitch
("cruller"));
54
EXPECT_FALSE(cl.
HasSwitch
("flim"));
55
EXPECT_FALSE(cl.
HasSwitch
("program"));
56
EXPECT_FALSE(cl.
HasSwitch
("dog"));
57
EXPECT_FALSE(cl.
HasSwitch
("cat"));
58
EXPECT_FALSE(cl.
HasSwitch
("output-rotation"));
59
EXPECT_FALSE(cl.
HasSwitch
("not-a-switch"));
60
EXPECT_FALSE(cl.
HasSwitch
("--"));
65
EXPECT_TRUE(cl.
HasSwitch
("foo"));
67
EXPECT_TRUE(cl.
HasSwitch
("bar"))
[
all
...]
sys_info.cc
25
if (command_line->
HasSwitch
(switches::kEnableLowEndDeviceMode))
27
if (command_line->
HasSwitch
(switches::kDisableLowEndDeviceMode))
command_line.h
163
bool
HasSwitch
(const StringPiece& switch_string) const;
164
bool
HasSwitch
(const char switch_constant[]) const;
command_line.cc
289
bool CommandLine::
HasSwitch
(const base::StringPiece& switch_string) const {
295
bool CommandLine::
HasSwitch
(const char switch_constant[]) const {
296
return
HasSwitch
(base::StringPiece(switch_constant));
372
if (source.
HasSwitch
(switches[i]))
logging.cc
369
if (command_line->
HasSwitch
(switches::kV) ||
370
command_line->
HasSwitch
(switches::kVModule)) {
/system/tpm/trunks/
trunks_client.cc
167
if (cl->
HasSwitch
("help")) {
176
if (cl->
HasSwitch
("status")) {
179
if (cl->
HasSwitch
("startup")) {
182
if (cl->
HasSwitch
("clear")) {
185
if (cl->
HasSwitch
("init_tpm")) {
188
if (cl->
HasSwitch
("allocate_pcr")) {
192
if (cl->
HasSwitch
("own")) {
195
if (cl->
HasSwitch
("regression_test")) {
246
if (cl->
HasSwitch
("owner_password")) {
257
if (cl->
HasSwitch
("stress_test"))
[
all
...]
trunksd.cc
76
if (cl->
HasSwitch
("log_to_stderr")) {
95
if (cl->
HasSwitch
("ftdi")) {
98
} else if (cl->
HasSwitch
("simulator")) {
/system/tpm/tpm_manager/client/
main.cc
212
if (command_line->
HasSwitch
("help") || command_line->
HasSwitch
("h") ||
224
if (!command_line->
HasSwitch
(kDependencySwitch)) {
231
if (!command_line->
HasSwitch
(kIndexSwitch) ||
232
!command_line->
HasSwitch
(kSizeSwitch)) {
241
command_line->
HasSwitch
(kBindToPCR0Switch));
243
if (!command_line->
HasSwitch
(kIndexSwitch)) {
250
if (!command_line->
HasSwitch
(kIndexSwitch) ||
251
!command_line->
HasSwitch
(kFileSwitch)) {
259
command_line->
HasSwitch
(kUseOwnerSwitch))
[
all
...]
/system/bt/service/
main.cc
52
if (command_line->
HasSwitch
(bluetooth::switches::kHelpLong) ||
53
command_line->
HasSwitch
(bluetooth::switches::kHelpShort)) {
/system/tpm/tpm_manager/server/
main.cc
55
if (cl->
HasSwitch
(kLogToStderrSwitch)) {
81
cl->
HasSwitch
(kWaitForOwnershipTriggerSwitch), &local_data_store,
/system/tpm/attestation/client/
main.cc
128
if (command_line->
HasSwitch
("help") || command_line->
HasSwitch
("h") ||
162
if (!command_line->
HasSwitch
("input")) {
174
if (!command_line->
HasSwitch
("input") ||
175
!command_line->
HasSwitch
("output")) {
187
if (!command_line->
HasSwitch
("input") ||
188
!command_line->
HasSwitch
("output")) {
201
if (!command_line->
HasSwitch
("input")) {
214
if (!command_line->
HasSwitch
("input")) {
227
if (!command_line->
HasSwitch
("input") |
[
all
...]
/external/libmojo/base/android/
command_line_android.cc
40
static jboolean
HasSwitch
(JNIEnv* env,
44
return CommandLine::ForCurrentProcess()->
HasSwitch
(switch_string);
/external/libchrome/base/test/
multiprocess_test.cc
24
if (!command_line.
HasSwitch
(switches::kTestChildProcess))
test_timeouts.cc
45
if (base::CommandLine::ForCurrentProcess()->
HasSwitch
(switch_name)) {
multiprocess_test_android.cc
50
if (!command_line.
HasSwitch
(switches::kTestChildProcess)) {
/external/libmojo/mojo/edk/embedder/
platform_channel_pair_posix.cc
131
LOG_IF(WARNING, command_line->
HasSwitch
(kMojoPlatformChannelHandleSwitch))
platform_channel_pair_win.cc
99
LOG_IF(WARNING, command_line->
HasSwitch
(kMojoPlatformChannelHandleSwitch))
/system/bt/service/example/heart_rate/
server_main.cc
141
base::CommandLine::ForCurrentProcess()->
HasSwitch
("advertise");
/system/tpm/attestation/server/
main.cc
104
if (cl->
HasSwitch
("log_to_stderr")) {
/external/libbrillo/brillo/
flag_helper.cc
199
if (command_line_->
HasSwitch
("help")) {
/external/libmojo/mojo/edk/test/
multiprocess_test_helper.cc
119
CHECK(!command_line.
HasSwitch
(switch_string));
/system/security/keystore/
keystore_cli_v2.cpp
452
if (cmd.
HasSwitch
("seclevel")) {
586
command_line->
HasSwitch
("test_for_0_3"));
/external/libchrome/base/metrics/
field_trial.cc
783
if (cmd_line.
HasSwitch
(field_trial_handle_switch)) {
795
if (cmd_line.
HasSwitch
(field_trial_handle_switch)) {
801
if (cmd_line.
HasSwitch
(switches::kForceFieldTrials)) {
[
all
...]
/system/update_engine/
update_engine_client.cc
356
base::CommandLine::ForCurrentProcess()->
HasSwitch
("cohort_hint");
/system/bt/service/client/
main.cc
[
all
...]
Completed in 599 milliseconds
1
2