Searched refs:mCmd (Results 1 – 7 of 7) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/ |
D | NotificationPlayer.java | 71 public Command mCmd; field in NotificationPlayer.CreationAndCompletionThread 74 mCmd = cmd; in CreationAndCompletionThread() 82 (AudioManager) mCmd.context.getSystemService(Context.AUDIO_SERVICE); in run() 85 if (mCmd.attributes == null) { in run() 86 mCmd.attributes = new AudioAttributes.Builder() in run() 91 player.setAudioAttributes(mCmd.attributes); in run() 92 player.setDataSource(mCmd.context, mCmd.uri); in run() 93 player.setLooping(mCmd.looping); in run() 97 if ((mCmd.uri != null) && (mCmd.uri.getEncodedPath() != null) in run() 98 && (mCmd.uri.getEncodedPath().length() > 0)) { in run() [all …]
|
/frameworks/base/services/core/java/com/android/server/ |
D | NativeDaemonConnectorException.java | 26 private String mCmd; field in NativeDaemonConnectorException 39 mCmd = cmd; in NativeDaemonConnectorException() 48 return mCmd; in getCmd()
|
D | NativeDaemonConnector.java | 381 return execute(cmd.mCmd, cmd.mArguments.toArray()); in execute() 420 return executeForList(cmd.mCmd, cmd.mArguments.toArray()); in executeForList() 562 private String mCmd; field in NativeDaemonConnector.Command 566 mCmd = cmd; in Command()
|
/frameworks/base/core/java/android/os/ |
D | ShellCommand.java | 46 private String mCmd; field in ShellCommand 67 mCmd = null; in init() 90 mCmd = cmd; in exec() 93 if (DEBUG) Slog.d(TAG, "Starting command " + mCmd + " on " + mTarget); in exec() 96 res = onCommand(mCmd); in exec() 97 if (DEBUG) Slog.d(TAG, "Executed command " + mCmd + " on " + mTarget); in exec() 123 if (DEBUG) Slog.d(TAG, "Finished command " + mCmd + " on " + mTarget); in exec()
|
/frameworks/base/core/java/com/android/internal/util/ |
D | WakeupMessage.java | 47 protected final int mCmd, mArg1, mArg2; field in WakeupMessage 57 mCmd = cmd; in WakeupMessage() 110 Message msg = mHandler.obtainMessage(mCmd, mArg1, mArg2, mObj); in onAlarm()
|
/frameworks/base/tools/aapt/ |
D | Bundle.h | 50 : mCmd(kCommandUnknown), mVerbose(false), mAndroidList(false), in Bundle() 78 Command getCommand(void) const { return mCmd; } in getCommand() 79 void setCommand(Command cmd) { mCmd = cmd; } in setCommand() 284 Command mCmd;
|
/frameworks/base/tests/net/java/com/android/server/ |
D | ConnectivityServiceTest.java | 630 Message msg = mHandler.obtainMessage(mCmd, mArg1, mArg2, mObj); in schedule() 636 mHandler.removeMessages(mCmd, mObj); in cancel()
|