/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/launch/ |
GdbServerTask.java | 68 String command = String.format("run-as %s lib/gdbserver +%s --attach %d", local 71 mDevice.executeShellCommand(command, mOutputReceiver, 0);
|
/system/netd/client/ |
NetdClient.cpp | 67 FwmarkCommand command = {FwmarkCommand::ON_ACCEPT, 0, 0}; local 68 if (int error = FwmarkClient().send(&command, acceptedSocket)) { 77 FwmarkCommand command = {FwmarkCommand::ON_CONNECT, 0, 0}; local 78 if (int error = FwmarkClient().send(&command, sockfd)) { 187 FwmarkCommand command = {FwmarkCommand::SELECT_NETWORK, netId, 0}; local 188 return FwmarkClient().send(&command, socketFd); 203 FwmarkCommand command = {FwmarkCommand::PROTECT_FROM_VPN, 0, 0}; local 204 return FwmarkClient().send(&command, socketFd); 211 FwmarkCommand command = {FwmarkCommand::SELECT_FOR_USER, 0, uid}; local 212 return FwmarkClient().send(&command, socketFd) 216 FwmarkCommand command = {FwmarkCommand::QUERY_USER_ACCESS, netId, uid}; local [all...] |
/frameworks/base/core/java/android/os/ |
RecoverySystem.java | 73 private static File COMMAND_FILE = new File(RECOVERY_DIR, "command"); 331 * @throws IOException if writing the recovery command file 366 * @throws IOException if writing the recovery command file 397 * @throws IOException if writing the recovery command file 468 FileWriter command = new FileWriter(COMMAND_FILE); local 472 command.write(arg); 473 command.write("\n"); 477 command.close(); 480 // Having written the command file, go ahead and reboot 521 * Internally, recovery treats each line of the command file as a separat [all...] |
/art/tools/dexfuzz/src/dexfuzz/executors/ |
Device.java | 99 pb.command("adb", "devices"); 146 * Get the command prefix for this device if we want to use adb shell. 170 public ExecutionResult executeCommand(String command, boolean captureOutput) { 172 return executeCommand(command, captureOutput, null, null); 175 public ExecutionResult executeCommand(String command, boolean captureOutput, 180 Log.info("Executing: " + command); 183 ProcessBuilder processBuilder = new ProcessBuilder(command.split(" ")); 226 private String getExecutionPrefixWithAdb(String command) { 228 return String.format("adb -s %s %s ", deviceName, command); 230 return String.format("adb %s ", command); 250 String command = "rm -f " + getCacheLocation(architecture) local [all...] |
/bionic/libc/kernel/uapi/drm/ |
qxl_drm.h | 61 uint64_t __user command; member in struct:drm_qxl_command
|
/bionic/libc/kernel/uapi/linux/netfilter/ |
nfnetlink_log.h | 85 __u8 command; member in struct:nfulnl_msg_config_cmd
|
/cts/hostsidetests/devicepolicy/src/com/android/cts/devicepolicy/ |
DeviceAndProfileOwnerTest.java | 190 String command = "am start -a android.intent.action.MAIN -c android.intent.category.HOME"; local 191 CLog.logAndDisplay(LogLevel.INFO, "Output for command " + command + ": " 192 + getDevice().executeShellCommand(command)); 252 String command = "rm " + TEST_APP_LOCATION + apk.getName(); local 253 getDevice().executeShellCommand(command); 271 private void changeUserRestrictionForUser(String key, String command, int userId) 275 + " --es extra-command " + command 280 "Output for command " + adbCommand + ": " + commandOutput) [all...] |
/dalvik/dx/src/com/android/dx/command/dump/ |
BaseDumper.java | 17 package com.android.dx.command.dump;
|
/dalvik/dx/tests/098-dex-jsr-ret-throw/ |
ViewDebug$ViewServer.class | |
/development/host/windows/usb/adb_winapi_test/ |
adb_winapi_test.cpp | 47 unsigned int command; /* command identifier constant */ member in struct:message 52 unsigned int magic; /* command ^ 0xffffffff */ 364 msg_send.command = A_CNXN;
369 msg_send.magic = msg_send.command ^ 0xffffffff; 392 char* cmd_ansi = reinterpret_cast<char*>(&msg_rcv.command);
393 printf("\n command = %08X (%c%c%c%c)", msg_rcv.command,
|
/development/ndk/platforms/android-21/include/linux/netfilter/ |
nfnetlink_log.h | 85 __u8 command; member in struct:nfulnl_msg_config_cmd
|
/development/samples/USB/AdbTest/src/com/android/adb/ |
AdbDevice.java | 143 // send a connect command 166 int command = message.getCommand(); local 167 switch (command) { 197 // start out with a command read
|
/external/apache-harmony/support/src/test/java/tests/support/ |
Support_Exec.java | 59 * Exec command returns the exitCode, and stdOut and stdErr as strings 61 public static Object[] run(String command, List<String> args, String[] envp, 64 Object[] arr = exec(command, args, envp, displayOutput); 164 StringBuilder command; local 210 private static Object[] exec(String command, List<String> args, 215 args.add(0, command); 219 // construct command line string and print it to stdout
|
/external/e2fsprogs/ext2ed/ |
main.c | 14 2. The parser, which asks the command line from the user. 15 3. The dispatcher, which analyzes the command line and calls the appropriate handler function. 16 4. A command pattern matcher which is used along with the readline completion feature. 60 int AllowChanges=0; /* When set, the enablewrite command will fail */ 68 char last_command_line [80]; /* A simple one command cache, in addition to the readline history */ 134 * Read a character from the command window 189 * This function asks the user for a command and calls the dispatcher 191 * function readline to read the command, hence all the usual readline 192 * keys are available. The new command is saved both in the 193 * readline's history and in our tiny one-command cache, so that onl 362 char command [80]; local [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/ |
UnpackUpdateJars.java | 90 String command = "unzip -qo " + src.getPath() + " -d " + dest.getPath(); local 91 System.out.println("[exec] "+command); 94 proc = rt.exec(command);
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/ |
AutoEscaper.java | 52 * escaping, and apply the appropriate escaping command to those nodes. The parser is fed literal 55 * command. 113 // If template contains a content-type command, the escaping context 183 // Interestingly, getOtherwise() is not null even when the if command 185 // Noop command. 264 * Handles a <?cs content-type: "content type" ?> command. 266 * This command is used when the auto escaping context of a template cannot be determined from its 268 * content-type: ?> command is not required for all javascript and css templates. If the 272 * <link rel > command, the explicit <?cs content-type: ?> command would be required 320 AAutoescapeCommand command = local [all...] |
/external/kernel-headers/original/uapi/drm/ |
qxl_drm.h | 74 uint32_t dst_handle; /* 0 if to command buffer */ 80 uint64_t __user command; /* void* */ member in struct:drm_qxl_command
|
/external/kernel-headers/original/uapi/linux/netfilter/ |
nfnetlink_log.h | 68 __u8 command; /* nfulnl_msg_config_cmds */ member in struct:nfulnl_msg_config_cmd
|
/external/libdrm/include/drm/ |
qxl_drm.h | 74 uint32_t dst_handle; /* 0 if to command buffer */ 80 uint64_t command; /* void* */ member in struct:drm_qxl_command
|
/external/libedit/examples/ |
fileman.c | 55 } COMMAND; 57 COMMAND commands[] = { 75 COMMAND *find_command (); 142 /* Execute a command line. */ 147 COMMAND *command; local 150 /* Isolate the command word. */ 162 command = find_command (word); 164 if (!command) 166 fprintf (stderr, "%s: No such command for FileMan.\n", word) [all...] |
/external/libnl/include/linux/netfilter/ |
nfnetlink_log.h | 69 u_int8_t command; /* nfulnl_msg_config_cmds */ member in struct:nfulnl_msg_config_cmd
|
nfnetlink_queue.h | 68 u_int8_t command; /* nfqnl_msg_config_cmds */ member in struct:nfqnl_msg_config_cmd
|
/external/lldb/examples/functions/ |
main.cpp | 204 char command[1024]; local 206 snprintf (command, sizeof(command), "add-dsym --uuid %s", module.GetUUIDString()); 207 debugger.GetCommandInterpreter().HandleCommand (command, command_result);
|
/external/mesa3d/src/gallium/winsys/svga/drm/ |
vmw_context.c | 72 } command; member in struct:vmw_svga_winsys_context 100 * ran out of command space, but because a substantial ammount of GMR was 154 if (vswc->command.used || pfence != NULL) 158 vswc->command.buffer, 159 vswc->command.used, 165 vswc->command.used = 0; 166 vswc->command.reserved = 0; 215 assert(nr_bytes <= vswc->command.size); 216 if(nr_bytes > vswc->command.size) 220 vswc->command.used + nr_bytes > vswc->command.size | [all...] |
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/command/ |
CommandNames.java | 16 package org.mockftpserver.core.command;
19 * FTP command name constants.
|