/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter/ |
nfnetlink_log.h | 68 __u8 command; /* nfulnl_msg_config_cmds */ member in struct:nfulnl_msg_config_cmd
|
nfnetlink_queue.h | 65 __u8 command; /* nfqnl_msg_config_cmds */ member in struct:nfqnl_msg_config_cmd
|
/prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/linux/netfilter/ |
nfnetlink_log.h | 85 __u8 command; member in struct:nfulnl_msg_config_cmd
|
/prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/linux/netfilter/ |
nfnetlink_log.h | 85 __u8 command; member in struct:nfulnl_msg_config_cmd
|
/prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/linux/netfilter/ |
nfnetlink_log.h | 85 __u8 command; member in struct:nfulnl_msg_config_cmd
|
/prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/linux/netfilter/ |
nfnetlink_log.h | 85 __u8 command; member in struct:nfulnl_msg_config_cmd
|
/prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/linux/netfilter/ |
nfnetlink_log.h | 85 __u8 command; member in struct:nfulnl_msg_config_cmd
|
/prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/linux/netfilter/ |
nfnetlink_log.h | 85 __u8 command; member in struct:nfulnl_msg_config_cmd
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_build_ext.py | 7 from distutils.command.build_ext import build_ext 34 from distutils.command import build_ext 262 # when the command is run 389 import distutils.core, distutils.extension, distutils.command.build_ext namespace 416 distutils.command.build_ext.Extension = saved_ext
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_build_ext.py | 7 from distutils.command.build_ext import build_ext 34 from distutils.command import build_ext 262 # when the command is run 389 import distutils.core, distutils.extension, distutils.command.build_ext namespace 416 distutils.command.build_ext.Extension = saved_ext
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/ |
DexDumpAction.java | 165 // --- Exec command line and save result to dst file 167 String[] command = new String[2]; local 168 command[0] = dexDumpFile.getAbsolutePath(); 169 command[1] = classesDexFile.getAbsolutePath(); 172 final Process process = Runtime.getRuntime().exec(command); 202 // The command worked. In this case we don't remove the
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/ |
AdtStartup.java | 198 String[] command = new String[] { local 204 process = Runtime.getRuntime().exec(command);
|
/sdk/files/ |
android.el | 17 (defcustom android-jdb-command-name "jdb" 72 (let ((jdb-command 74 android-jdb-command-name 77 (if (not (string= jdb-command (car android-jdb-history))) 78 (push jdb-command android-jdb-history)) 79 (jdb jdb-command)))
|
/system/bt/btcore/src/ |
counter.c | 90 { "help", "<command> - show help text for <command>", help}, 91 { "quit", "<command> - Quit and exit", quit}, 373 const command_t *command = find_command((const char *)client->buffer); local 374 if (!command) { 375 output(socket, "unable to find command %s\n", client->buffer); 377 int rc = command->handler(socket); 397 output(socket, "help command unimplemented\n"); 406 output(socket, "set command unimplemented\n");
|
/system/bt/hci/src/ |
low_power_manager.c | 98 static void post_command(low_power_command_t command) { 99 if (command > LPM_WAKE_DEASSERT) { 100 LOG_ERROR("%s unknown low power command %d", __func__, command); 104 thread_post(thread, event_functions[command], NULL); 148 uint8_t command = enable ? BT_VND_LPM_ENABLE : BT_VND_LPM_DISABLE; local 150 vendor->send_async_command(VENDOR_SET_LPM_MODE, &command);
|
/system/core/adb/ |
services.cpp | 127 // in the command file. 135 const char* const command_file = "/cache/recovery/command"; 172 // Don't return early. Give the reboot command time to take effect 185 const char* command = reinterpret_cast<const char*>(arg); local 187 if (handle_forward_request(command, kTransportAny, NULL, fd) < 0) { 188 SendFail(fd, "not a reverse forwarding command");
|
/system/core/init/ |
init.h | 28 struct command struct 60 struct command *current;
|
/system/core/logcat/tests/ |
logcat_test.cpp | 491 char command[sizeof(buf) + sizeof(comm)]; local 492 sprintf(command, comm, buf); 495 EXPECT_FALSE((ret = system(command))); 497 sprintf(command, "ls -s %s 2>/dev/null", buf); 500 EXPECT_TRUE(NULL != (fp = popen(command, "r"))); 525 sprintf(command, "rm -rf %s", buf); 526 EXPECT_FALSE(system(command)); 536 char command[sizeof(tmp_out_dir) + sizeof(logcat_cmd)]; local 537 sprintf(command, logcat_cmd, tmp_out_dir); 540 EXPECT_FALSE((ret = system(command))); [all...] |
/system/extras/perfprofd/quipper/ |
perf_parser.h | 50 // Command associated with this sample. 53 // Accessor for command string. 54 const string command() const { function in struct:quipper::ParsedEvent 60 void set_command(const string* command) { 61 command_ = command; 202 // A set to store the actual command strings.
|
/system/extras/tests/binder/benchmarks/ |
binderAddInts.cpp | 27 * This benchmark supports the following command-line options: 79 enum command { enum in class:AddIntsService 112 // Parse command line arguments 115 char *chptr; // character pointer for command-line parsing
|
/frameworks/base/cmds/content/src/com/android/commands/content/ |
Content.java | 42 * This class is a command line utility for manipulating content. A client 160 public Command parseCommand() { 396 private static abstract class Command { 400 public Command(Uri uri, int userId) { 449 private static class InsertCommand extends Command { 463 private static class DeleteCommand extends Command { 477 private static class CallCommand extends Command { 514 private static class ReadCommand extends Command { 621 Command command = parser.parseCommand() local [all...] |
/bionic/libc/kernel/uapi/linux/netfilter/ |
nfnetlink_queue.h | 92 __u8 command; member in struct:nfqnl_msg_config_cmd
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/ |
BleScannerService.java | 106 int command = intent.getIntExtra(EXTRA_COMMAND, -1); local 107 switch (command) {
|
/cts/hostsidetests/devicepolicy/src/com/android/cts/devicepolicy/ |
BaseDevicePolicyTest.java | 107 String command = "am start-user " + userId; local 108 CLog.logAndDisplay(LogLevel.INFO, "Starting command " + command); 109 String commandOutput = getDevice().executeShellCommand(command); 110 CLog.logAndDisplay(LogLevel.INFO, "Output for command " + command + ": " + commandOutput); 117 String command = "pm get-max-users"; local 118 String commandOutput = getDevice().executeShellCommand(command); 119 CLog.i("Output for command " + command + ": " + commandOutput) 130 String command = "pm list users"; local 240 String command = "am instrument --user " + userId + " " + params + " -w -r " local 265 String command = "pm list features"; local 289 String command ="pm create-user TestUser_"+ System.currentTimeMillis(); local 302 String command = local 337 String command = "dpm set-profile-owner --user " + userId + " '" + componentName + "'"; local 352 String command = "dpm set-active-admin '" + componentName + "'"; local 360 String command = "dpm set-device-owner '" + componentName + "'"; local 368 String command = "settings --user " + userId + " get " + namespace + " " + name; local 376 String command = "settings --user " + userId + " put " + namespace + " " + name local [all...] |
ManagedProfileTest.java | 170 String command = "am start -W --user " + mUserId + " " + MANAGED_PROFILE_PKG local 172 CLog.logAndDisplay(LogLevel.INFO, "Output for command " + command + ": " 173 + getDevice().executeShellCommand(command)); 314 assertTrue("Command was expected to succeed " + addRestrictionCommandOutput, 563 String command = "add-restriction"; local 566 changeUserRestrictionForUser(restriction, command, mUserId); 567 assertTrue("Command was expected to succeed " + addRestrictionCommandOutput, 589 assertTrue("Command was expected to succeed " + commandOutput, 601 assertTrue("Command was expected to succeed " + commandOutput 619 String command = "am start -W --user " + userId local 656 String command = "pm set-app-link --user " + userId + " " + packageName + " " + status; local 662 String command = "am startservice --user 0 " local [all...] |