HomeSort by relevance Sort by last modified time
    Searched refs:allowedCommands (Results 1 - 7 of 7) sorted by null

  /frameworks/support/media/src/main/java/androidx/media/
MediaSessionLegacyStub.java 214 SessionCommandGroup2 allowedCommands;
216 allowedCommands = mAllowedCommandGroupMap.get(controller);
218 return allowedCommands != null && allowedCommands.hasCommand(command);
222 SessionCommandGroup2 allowedCommands;
224 allowedCommands = mAllowedCommandGroupMap.get(controller);
226 return allowedCommands != null && allowedCommands.hasCommand(commandCode);
322 SessionCommandGroup2 allowedCommands = mSession.getCallback().onConnect(
327 boolean accept = allowedCommands != null || controllerInfo.isTrusted()
    [all...]
MediaSession2Stub.java 428 SessionCommandGroup2 allowedCommands;
430 allowedCommands = mAllowedCommandGroupMap.get(controller);
432 return allowedCommands != null && allowedCommands.hasCommand(command);
436 SessionCommandGroup2 allowedCommands;
438 allowedCommands = mAllowedCommandGroupMap.get(controller);
440 return allowedCommands != null && allowedCommands.hasCommand(commandCode);
536 SessionCommandGroup2 allowedCommands = mSession.getCallback().onConnect(
541 boolean accept = allowedCommands != null || controllerInfo.isTrusted()
    [all...]
MediaController2ImplBase.java 787 final SessionCommandGroup2 allowedCommands = SessionCommandGroup2.fromBundle(
805 + ", allowedCommands=" + allowedCommands);
819 mAllowedCommands = allowedCommands;
837 mCallback.onConnected(mInstance, allowedCommands);
    [all...]
MediaController2.java 751 * @param allowedCommands commands that's allowed by the session.
754 @NonNull SessionCommandGroup2 allowedCommands) { }
    [all...]
  /frameworks/av/packages/MediaComponents/src/com/android/media/
MediaSession2Stub.java 151 SessionCommandGroup2 allowedCommands = mAllowedCommandGroupMap.get(controllerInfo);
152 if (allowedCommands == null) {
157 if (!allowedCommands.hasCommand(commandCode)) {
174 SessionCommandGroup2 allowedCommands = mAllowedCommandGroupMap.get(controllerInfo);
175 if (allowedCommands == null) {
180 if (!allowedCommands.hasCommand(command)) {
214 SessionCommandGroup2 allowedCommands = mAllowedCommandGroupMap.get(controller);
215 if (allowedCommands == null) {
219 if (!allowedCommands.hasCommand(commandCode)) {
364 SessionCommandGroup2 allowedCommands = session.getCallback().onConnect
    [all...]
MediaController2Impl.java     [all...]
  /frameworks/base/media/java/android/media/
MediaController2.java 81 * @param allowedCommands commands that's allowed by the session.
84 @NonNull SessionCommandGroup2 allowedCommands) { }

Completed in 133 milliseconds