Searched defs:command (Results 1 - 25 of 97) sorted by relevance

1234

/frameworks/av/services/audioflinger/
H A DFastCaptureState.cpp31 const char *FastCaptureState::commandToString(Command command) argument
33 const char *str = FastThreadState::commandToString(command);
37 switch (command) {
H A DFastThreadState.cpp33 const char *FastThreadState::commandToString(FastThreadState::Command command) argument
35 switch (command) {
H A DFastMixerState.cpp43 const char *FastMixerState::commandToString(Command command) argument
45 const char *str = FastThreadState::commandToString(command);
49 switch (command) {
H A DFastCapture.cpp75 bool FastCapture::isSubClassCommand(FastThreadState::Command command) argument
77 switch ((FastCaptureState::Command) command) {
159 const FastCaptureState::Command command = mCommand; local
162 if ((command & FastCaptureState::READ) /*&& isWarm*/) {
184 if (command & FastCaptureState::WRITE) {
/frameworks/base/services/core/java/com/android/server/
H A DNativeDaemonTimeoutException.java24 public NativeDaemonTimeoutException(String command, NativeDaemonEvent event) { argument
25 super(command, event);
/frameworks/base/core/java/android/nfc/
H A DApduList.java19 public void add(byte[] command) { argument
20 commands.add(command);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/camera/
H A DCameraFunctionalTest.java109 private void runOnLooper(final Runnable command) throws InterruptedException { argument
115 command.run();
122 fail("Failed to run the command on the looper.");
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
H A DCameraStressTest.java116 private void runOnLooper(final Runnable command) throws InterruptedException { argument
122 command.run();
129 fail("Failed to run the command on the looper.");
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DProviderExecutor.java89 public void execute(Runnable command) {
90 Preconditions.checkNotNull(command);
91 mQueue.add(command);
96 public void execute(Runnable command) { argument
98 Preconditions.checkNotNull(command);
99 mQueue.add(command);
106 final Runnable command = mQueue.take();
107 command.run();
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DDemoMode.java25 void dispatchDemoCommand(String command, Bundle args); argument
29 public static final String EXTRA_COMMAND = "command";
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DDemoStatusIcons.java52 public void dispatchDemoCommand(String command, Bundle args) { argument
53 if (!mDemoMode && command.equals(COMMAND_ENTER)) {
57 } else if (mDemoMode && command.equals(COMMAND_EXIT)) {
61 } else if (mDemoMode && command.equals(COMMAND_STATUS)) {
/frameworks/wilhelm/src/itf/
H A DIAndroidEffect.cpp86 SLInterfaceID effectImplementationId, SLuint32 command, SLuint32 commandSize,
92 result = android_genericFx_sendCommand(thiz, effectImplementationId, command, commandSize,
85 IAndroidEffect_SendCommand(SLAndroidEffectItf self, SLInterfaceID effectImplementationId, SLuint32 command, SLuint32 commandSize, void* pCommand, SLuint32 *replySize, void *pReply) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DClock.java221 public void dispatchDemoCommand(String command, Bundle args) { argument
222 if (!mDemoMode && command.equals(COMMAND_ENTER)) {
224 } else if (mDemoMode && command.equals(COMMAND_EXIT)) {
227 } else if (mDemoMode && command.equals(COMMAND_CLOCK)) {
/frameworks/base/services/core/java/com/android/server/location/
H A DLocationProviderInterface.java47 public boolean sendExtraCommand(String command, Bundle extras); argument
H A DPassiveProvider.java111 public boolean sendExtraCommand(String command, Bundle extras) { argument
/frameworks/base/tools/aapt2/
H A DFlag.cpp60 void usageAndDie(const StringPiece& command) { argument
61 std::cerr << command << " [options]"; local
70 std::string command = flag.name; local
72 command += " arg ";
74 std::cerr << " " << std::setw(30) << std::left << command
80 void parse(int argc, char** argv, const StringPiece& command) { argument
101 usageAndDie(command);
106 usageAndDie(command);
115 usageAndDie(command);
122 usageAndDie(command);
[all...]
/frameworks/av/media/libmedia/
H A DIEffect.cpp62 status_t command(uint32_t cmdCode, function in class:android::BpEffect
68 ALOGV("command");
166 status_t status = command(cmdCode, cmdSize, cmd, &replySz, resp);
H A DToneGenerator.cpp1128 // Update tone gen state machine and select wave gen command
1553 // command: special action requested (see enum gen_command).
1560 unsigned int count, unsigned int command) {
1566 if (command == WAVEGEN_START) {
1576 if (command == WAVEGEN_STOP) {
1559 getSamples(short *outBuffer, unsigned int count, unsigned int command) argument
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DUiAutomatorBridge.java102 public AccessibilityEvent executeCommandAndWaitForAccessibilityEvent(Runnable command, argument
104 return mUiAutomation.executeAndWaitForEvent(command,
/frameworks/base/core/java/com/android/internal/midi/
H A DMidiConstants.java101 // Returns true if this command can be used for running status
102 public static boolean allowRunningStatus(byte command) { argument
104 return (command >= STATUS_NOTE_OFF && command < STATUS_SYSTEM_EXCLUSIVE);
107 // Returns true if this command cancels running status
108 public static boolean cancelsRunningStatus(byte command) { argument
110 return (command >= STATUS_SYSTEM_EXCLUSIVE && command <= STATUS_END_SYSEX);
/frameworks/base/core/java/com/android/internal/os/
H A DZygote.java156 * Executes "/system/bin/sh -c &lt;command&gt;" using the exec() system call.
160 * @param command The shell command to execute.
162 public static void execShell(String command) { argument
163 String[] args = { "/system/bin/sh", "-c", command };
174 * prefixed with a space, and appended to the command.
176 * @param command A string builder for the shell command being constructed.
177 * @param args An array of argument strings to be quoted and appended to the command.
180 public static void appendQuotedShellArgs(StringBuilder command, Strin argument
[all...]
/frameworks/base/location/lib/java/com/android/location/provider/
H A DLocationProviderBase.java104 public boolean sendExtraCommand(String command, Bundle extras) { argument
105 return onSendExtraCommand(command, extras);
203 * @param command name of the command to send to the provider.
204 * @param extras optional arguments for the command (or null).
205 * The provider may optionally fill the extras Bundle with results from the command.
207 * @return true if the command succeeds.
209 public boolean onSendExtraCommand(String command, Bundle extras) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DVolumeDialogComponent.java103 public void dispatchDemoCommand(String command, Bundle args) { argument
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_slice_header.c477 u32 command; local
505 tmp = h264bsdDecodeExpGolombUnsigned(pStrmData, &command);
508 if (command > 3)
514 pRefPicListReordering->command[i].reorderingOfPicNumsIdc = command;
516 if ((command == 0) || (command == 1))
526 pRefPicListReordering->command[i].absDiffPicNum = value + 1;
528 else if (command == 2)
533 pRefPicListReordering->command[
[all...]
H A Dh264bsd_slice_header.h77 refPicListReorderingOperation_t command[MAX_NUM_REF_PICS+1]; member in struct:__anon663
95 * end memory_management_control_operation command */

Completed in 970 milliseconds

1234