/system/core/logd/ |
D | auditctl.cpp | 44 int opt; in main() local 46 while ((opt = getopt(argc, argv, "r:")) != -1) { in main() 47 switch (opt) { in main()
|
/system/core/storaged/ |
D | main.cpp | 77 int opt; in main() local 88 opt = getopt_long(argc, argv, ":pstu", long_options, &opt_idx); in main() 89 if (opt == -1) { in main() 93 switch (opt) { in main()
|
/system/tools/sysprop/ |
D | JavaMain.cpp | 46 int opt = getopt_long_only(argc, argv, "", long_options, nullptr); in ParseArgs() local 47 if (opt == -1) break; in ParseArgs() 49 switch (opt) { in ParseArgs()
|
D | CppMain.cpp | 56 int opt = getopt_long_only(argc, argv, "", long_options, nullptr); in ParseArgs() local 57 if (opt == -1) break; in ParseArgs() 59 switch (opt) { in ParseArgs()
|
/system/extras/boottime_tools/bootio/ |
D | bootio.cpp | 122 int opt = 0; in main() local 124 while ((opt = getopt_long(argc, argv, "hlpr:", longOptions, &optionIndex)) != -1) { in main() 125 switch (opt) { in main() 145 DCHECK_EQ(opt, '?'); in main()
|
/system/extras/slideshow/ |
D | slideshow.cpp | 89 int opt; in main() local 93 while ((opt = getopt(argc, argv, "t:")) != -1) { in main() 94 switch (opt) { in main()
|
/system/extras/tests/binder/benchmarks/ |
D | binderAddInts.cpp | 261 int opt; in main() local 262 while ((opt = getopt(argc, argv, "s:c:d:?")) != -1) { in main() 265 switch (opt) { in main() 271 cerr << "Invalid cpu specified for -" << (char) opt in main() 284 *((opt == 'c') ? &options.clientCPU : &options.serverCPU) = cpu; in main()
|
/system/core/trusty/storage/proxy/ |
D | proxy.c | 195 int opt; in parse_args() local 198 while ((opt = getopt_long(argc, argv, _sopts, _lopts, &oidx)) != -1) { in parse_args() 199 switch (opt) { in parse_args() 221 ALOGE("unrecognized option (%c):\n", opt); in parse_args()
|
/system/extras/tests/icachetest/ |
D | icache_main.cpp | 53 int opt; in handleCommandLineArgments() local 55 while ((opt = getopt_long(argc, argv, OPTSTR, OPTIONS, &option_index)) >= 0) { in handleCommandLineArgments() 57 switch (opt) { in handleCommandLineArgments()
|
/system/core/libmeminfo/tools/ |
D | procmem.cpp | 117 int opt; in main() local 131 while ((opt = getopt(argc, argv, "himpuWw")) != -1) { in main() 132 switch (opt) { in main()
|
D | wsstop.cpp | 186 int opt; in main() local 187 while ((opt = getopt_long(argc, argv, "d:n:h", longopts, nullptr)) != -1) { in main() 188 switch (opt) { in main()
|
/system/tools/hidl/test/hidl_test/ |
D | hidl_test_helper | 76 while getopts hc:x:y: opt; 78 case $opt in 111 echo "Error: unknown param \"$opt\""
|
/system/extras/puncture_fs/ |
D | puncture_fs.c | 203 int opt; in main() local 213 while ((opt = getopt(argc, argv, "s:h:t:")) != -1) { in main() 214 switch(opt) { in main()
|
/system/core/sdcard/ |
D | sdcard.cpp | 253 int opt; in main() local 254 while ((opt = getopt(argc, argv, "u:g:U:mwGio")) != -1) { in main() 255 switch (opt) { in main() 282 LOG(ERROR) << "Unknown option: '" << opt << "'"; in main()
|
/system/core/fs_mgr/ |
D | fs_mgr_remount.cpp | 144 for (int opt; (opt = ::getopt_long(argc, argv, "hRT:", longopts, nullptr)) != -1;) { in main() local 145 switch (opt) { in main() 157 LOG(ERROR) << "Bad Argument -" << char(opt); in main()
|
/system/core/libnetutils/ |
D | dhcpclient.c | 167 unsigned int opt; in decode_dhcp_msg() local 183 opt = *x++; in decode_dhcp_msg() 184 if (opt == OPT_PAD) { in decode_dhcp_msg() 188 if (opt == OPT_END) { in decode_dhcp_msg() 196 switch(opt) { in decode_dhcp_msg()
|
/system/connectivity/wificond/ |
D | runtests.sh | 30 MODULES-IN-frameworks-opt-net-wifi-libwifi_system
|
/system/sepolicy/tests/ |
D | sepolicy_tests.py | 51 def take_action(self, action, dest, opt, value, values, parser): argument 55 Option.take_action(self, action, dest, opt, value, values, parser)
|
/system/sepolicy/prebuilts/api/27.0/public/ |
D | ephemeral_app.te | 9 ### applications may also opt-in to ephemeral to take advantage of the
|
/system/sepolicy/prebuilts/api/28.0/public/ |
D | ephemeral_app.te | 9 ### applications may also opt-in to ephemeral to take advantage of the
|
/system/sepolicy/prebuilts/api/29.0/public/ |
D | ephemeral_app.te | 9 ### applications may also opt-in to ephemeral to take advantage of the
|
/system/sepolicy/prebuilts/api/26.0/public/ |
D | ephemeral_app.te | 9 ### applications may also opt-in to ephemeral to take advantage of the
|
/system/sepolicy/public/ |
D | ephemeral_app.te | 9 ### applications may also opt-in to ephemeral to take advantage of the
|
/system/extras/ext4_utils/include/ext4_utils/ |
D | ext4.h | 361 #define clear_opt(o, opt) o &= ~EXT4_MOUNT_##opt argument 362 #define set_opt(o, opt) o |= EXT4_MOUNT_##opt argument 363 #define test_opt(sb, opt) (EXT4_SB(sb)->s_mount_opt & EXT4_MOUNT_##opt) argument
|
/system/netd/libnetdutils/include/netdutils/ |
D | Syscalls.h | 130 Status setsockopt(Fd sock, int level, int optname, const SockoptT& opt) const { in setsockopt() argument 131 return setsockopt(sock, level, optname, &opt, sizeof(opt)); in setsockopt()
|