HomeSort by relevance Sort by last modified time
    Searched defs:command (Results 726 - 750 of 1639) sorted by null

<<21222324252627282930>>

  /system/core/fastboot/
fastboot.cpp 212 // at the command line with the -s option.
275 "usage: fastboot [ <option> ] <command>\n"
836 char command[256]; local
839 command[0] = 0;
841 strcat(command,*argv);
844 strcat(command," ");
847 fb_queue_command(command,"");
    [all...]
  /frameworks/base/services/core/java/com/android/server/hdmi/
HdmiCecLocalDeviceTv.java 482 HdmiLogger.debug("Device info %X not found; buffering the command", logicalAddress);
486 HdmiLogger.debug("Input not ready for device: %X; buffering the command", info.getId());
559 HdmiCecMessage command = HdmiCecMessageBuilder.buildSetMenuLanguageCommand( local
561 if (command != null) {
562 mService.sendCecCommand(command);
598 protected boolean handleReportPowerStatus(HdmiCecMessage command) {
599 int newStatus = command.getParams()[0] & 0xFF;
600 updateDevicePowerStatus(command.getSource(), newStatus);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-jsch.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.jarprocessor_1.0.200.v20100503a.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.p2.jarprocessor_1.0.300.v20130327-2119.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.jarprocessor_1.0.300.v20130327-2119.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/apache/commons/commons-exec/1.2/
commons-exec-1.2.jar 
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-exec/1.1/
commons-exec-1.1.jar 
  /art/dex2oat/
dex2oat.cc 85 std::vector<std::string> command; local
87 command.push_back(original_argv[i]);
89 return Join(command, ' ');
96 std::vector<std::string> command; local
138 command.push_back(original_argv[i]);
142 if (command.size() <= 1U) {
146 return Join(command, ' ');
168 UsageError("Command: %s", CommandLine().c_str());
309 UsageError(" stripped using standard command line tools such as strip or objcopy.");
542 // Parse the arguments from the command line. In case of an unrecognized option or impossibl
    [all...]
  /bionic/libc/kernel/uapi/linux/wimax/
i2400m.h 64 __le32 command; member in struct:i2400m_bootrom_header
  /cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/testtype/
DeqpTestRunnerTest.java 257 final String command = String.format( local
263 mockDevice.executeShellCommand(EasyMock.eq(command),
1726 String command = String.format( local
2326 String command = String.format( local
    [all...]
  /development/ndk/platforms/android-21/include/linux/wimax/
i2400m.h 64 __le32 command; member in struct:i2400m_bootrom_header
  /development/ndk/platforms/android-3/include/linux/
ata.h 238 u8 command; member in struct:ata_taskfile
  /device/moto/shamu/camera/QCamera2/HAL/test/
qcamera_test.cpp 3242 Interpreter::Command command = local
    [all...]
  /external/antlr/antlr-3.4/antlr-ant/main/antlr3-task/
antlr3.jar 
  /external/kernel-headers/original/uapi/linux/wimax/
i2400m.h 91 * COMMAND: implies a request from the host to the device requesting
93 * message (with the same type as the command), status and
94 * no (TLV) payload. Execution of a command might cause
98 * GET/SET: similar to COMMAND, but will not cause other
108 * COMMAND has been acknowledged with it's corresponding reply by the
157 /* Boot mode command masks and stuff */
172 * i2400m_bootrom_header - Header for a boot-mode command
174 * @cmd: the above command descriptor
181 __le32 command; /* Compose with enum i2400_brh */ member in struct:i2400m_bootrom_header
  /external/libavc/decoder/
ih264d_api.c 4558 UWORD32 command; local
    [all...]
  /external/pdfium/public/
fpdf_fwlevent.h 41 // Mouse message command
62 FPDF_UINT32 command; member in struct:FWL_EVENT_MOUSE
251 //key event command
262 FPDF_UINT32 command; member in struct:FWL_EVENT_KEY
  /external/v8/src/
d8.js 261 // Converts a text command to a JSON request.
273 // entered as a command. Converting that to a JSON request is trivial.
279 // Check for a simple carriage return to repeat the last command:
285 cmd_line = repeat_cmd_line; // use command to repeat.
289 if (!is_running) { // Only save the command if in debugger mode.
290 repeat_cmd_line = cmd_line; // save last command.
296 // Find the command.
315 // Switch on command.
467 // Return undefined to indicate command handled internally (no JSON).
475 // Return undefined to indicate command handled internally (no JSON)
    [all...]
  /frameworks/base/media/java/android/media/session/
MediaSession.java 587 private void postCommand(String command, Bundle args, ResultReceiver resultCb) {
588 Command cmd = new Command(command, args, resultCb);
703 * Called when a controller has sent a command to this session.
707 * @param command The command name.
708 * @param args Optional parameters for the command, may be null.
709 * @param cb A result receiver to which a result may be sent by the command, may be null.
711 public void onCommand(@NonNull String command, @Nullable Bundle args
1145 public final String command; field in class:MediaSession.Command
    [all...]
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
RemotePrintDocument.java 87 // If there is a next command after a layout is done, then another
88 // update was issued and the next command is another layout, so we
89 // do nothing. However, if there is no next command we may need to
207 // If there is a current command that is running we ask for a
214 // Schedule a layout command.
217 AsyncCommand command = new LayoutCommand(mLooper, mPrintDocumentAdapter, local
219 scheduleCommand(command);
235 // Schedule a write command.
236 AsyncCommand command = new WriteCommand(mContext, mLooper, mPrintDocumentAdapter, local
239 scheduleCommand(command);
    [all...]
  /frameworks/native/services/inputflinger/
InputDispatcher.h 567 // A command entry captures state and behavior for an action to be performed in the
574 // the dispatcher lock at will. Initially when the command starts running, the
575 // dispatcher lock is held. However, if the command needs to call into the policy to
584 typedef void (InputDispatcher::*Command)(CommandEntry* commandEntry);
588 CommandEntry(Command command);
591 Command command; member in struct:android::InputDispatcher::CommandEntry
593 // parameters for the command (usage varies by command)
    [all...]
  /hardware/intel/bootstub/
bootparam.h 69 __u32 command; member in struct:ist_info
  /hardware/libhardware/include/hardware/
audio_effect.h 116 // | | | command must specify a buffer descriptor
119 // | | | EFFECT_CMD_SET_CONFIG command to request input.
124 // | | | command must specify a buffer descriptor
127 // | | | EFFECT_CMD_SET_CONFIG command to request output
295 // buffer provider function installed by the EFFECT_CMD_SET_CONFIG command.
297 // command is received and until the EFFECT_CMD_DISABLE is received. When the engine
298 // receives the EFFECT_CMD_DISABLE command it should turn off the effect gracefully
310 // If NULL, use the configuration passed by EFFECT_CMD_SET_CONFIG command.
313 // If NULL, use the configuration passed by EFFECT_CMD_SET_CONFIG command.
327 // Function: command
356 int32_t (*command)(effect_handle_t self, member in struct:effect_interface_s
    [all...]
  /hardware/libhardware_legacy/audio/
AudioPolicyManagerBase.cpp 319 // force routing command to audio hardware when starting a call
328 // force routing command to audio hardware when exiting a call
337 // force routing command to audio hardware when switching between telephony and VoIP
350 // force routing command to audio hardware when ending call
1683 String8 command; local
    [all...]

Completed in 493 milliseconds

<<21222324252627282930>>