/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/p2p/ |
H A D | SupplicantP2pIfaceCallbackImpl.java | 46 private final String mInterface; field in SupplicantP2pIfaceCallbackImpl 53 mInterface = iface; in SupplicantP2pIfaceCallbackImpl() 141 mMonitor.broadcastP2pDeviceFound(mInterface, device); in onDeviceFound() 161 logd("Device lost on " + mInterface + ": " + device); in onDeviceLost() 162 mMonitor.broadcastP2pDeviceLost(mInterface, device); in onDeviceLost() 170 logd("Search stopped on " + mInterface); in onFindStopped() 171 mMonitor.broadcastP2pFindStopped(mInterface); in onFindStopped() 238 logd("Group formation successful on " + mInterface); in onGroupFormationSuccess() 308 mMonitor.broadcastP2pGroupStarted(mInterface, group); in onGroupStarted() 495 logd("STA authorized on " + mInterface); in onStaAuthorized() [all …]
|
H A D | SupplicantP2pIfaceCallbackV1_4Impl.java | 37 private final String mInterface; field in SupplicantP2pIfaceCallbackV1_4Impl 45 mInterface = iface; in SupplicantP2pIfaceCallbackV1_4Impl() 49 mCallbackV10 = mP2pIfaceHal.new SupplicantP2pIfaceCallback(mInterface); in SupplicantP2pIfaceCallbackV1_4Impl() 322 logd("R2 Device discovered on " + mInterface + ": " in onR2DeviceFound() 324 mMonitor.broadcastP2pDeviceFound(mInterface, device); in onR2DeviceFound()
|
/aosp12/frameworks/base/services/core/java/com/android/server/statusbar/ |
H A D | StatusBarShellCommand.java | 38 private final StatusBarManagerService mInterface; field in StatusBarShellCommand 42 mInterface = service; in StatusBarShellCommand() 114 mInterface.collapsePanels(); in runCollapse() 119 mInterface.expandSettingsPanel(null); in runExpandSettings() 124 mInterface.expandNotificationsPanel(); in runExpandNotifications() 145 mInterface.disable(DISABLE_NONE, sToken, pkg); in runDisableForSetup() 195 mInterface.disable(flagPair.first, sToken, pkg); in runSendDisableFlag() 196 mInterface.disable2(flagPair.second, sToken, pkg); in runSendDisableFlag() 209 mInterface.startTracing(); in runTracing() 212 mInterface.stopTracing(); in runTracing() [all …]
|
/aosp12/packages/modules/Connectivity/Tethering/common/TetheringLib/src/android/net/ |
H A D | TetheringInterface.java | 35 private final String mInterface; field in TetheringInterface 40 mInterface = iface; in TetheringInterface() 55 return mInterface; in getInterface() 61 dest.writeString(mInterface); in writeToParcel() 66 return Objects.hash(mType, mInterface); in hashCode() 73 return mType == other.mType && mInterface.equals(other.mInterface); in equals() 100 + ", mInterface=" + mInterface + "}"; in toString()
|
/aosp12/frameworks/base/services/core/java/com/android/server/pm/ |
H A D | OtaDexoptShellCommand.java | 27 final IOtaDexopt mInterface; field in OtaDexoptShellCommand 30 mInterface = service; in OtaDexoptShellCommand() 64 mInterface.prepare(); in runOtaPrepare() 70 mInterface.cleanup(); in runOtaCleanup() 76 if (mInterface.isDone()) { in runOtaDone() 85 mInterface.dexoptNextPackage(); in runOtaStep() 90 getOutPrintWriter().println(mInterface.nextDexoptCommand()); in runOtaNext() 95 final float progress = mInterface.getProgress(); in runOtaProgress()
|
H A D | PackageManagerShellCommand.java | 146 final IPackageManager mInterface; field in PackageManagerShellCommand 162 mInterface = service; in PackageManagerShellCommand() 418 mInterface.getPackageInstaller() in runBypassStagedInstallerCheck() 432 mInterface.getPackageInstaller() in runBypassAllowedApexUpdateCheck() 1594 if (!mInterface.setInstallLocation(loc)) { in runSetInstallLocation() 1602 int loc = mInterface.getInstallLocation(); in runGetInstallLocation() 1628 int status = mInterface.getMoveStatus(moveId); in runMovePackage() 1631 status = mInterface.getMoveStatus(moveId); in runMovePackage() 1651 int status = mInterface.getMoveStatus(moveId); in runMovePrimaryStorage() 1852 mInterface.forceDexOpt(getNextArgRequired()); in runForceDexOpt() [all …]
|
/aosp12/frameworks/base/services/core/java/com/android/server/net/ |
H A D | NetworkPolicyManagerShellCommand.java | 36 private final NetworkPolicyManagerService mInterface; field in NetworkPolicyManagerShellCommand 40 mInterface = service; in NetworkPolicyManagerShellCommand() 214 mInterface.setDebugUid(uid); in runStartWatching() 219 mInterface.setDebugUid(Process.INVALID_UID); in runStopWatching() 224 final int[] uids = mInterface.getUidsWithPolicy(policy); in listUidPolicies() 256 final int[] uids = mInterface.getAppIdleWhitelist(); in listAppIdleWhitelist() 279 mInterface.setRestrictBackground(enabled > 0); in setRestrictBackground() 295 mInterface.setUidPolicy(uid, policy); in setUidPolicy() 304 int actualPolicy = mInterface.getUidPolicy(uid); in resetUidPolicy() 310 mInterface.setUidPolicy(uid, POLICY_NONE); in resetUidPolicy() [all …]
|
/aosp12/packages/modules/Connectivity/framework/src/android/net/ |
H A D | RouteInfo.java | 86 private final String mInterface; field in RouteInfo 215 mInterface = iface; // Strings are immutable. in RouteInfo() 387 return mInterface; in getInterface() 525 if (mInterface != null) val += " " + mInterface; in toString() 547 Objects.equals(mInterface, target.getInterface()) && in equals() 564 @Nullable private final String mInterface; field in RouteInfo.RouteKey 570 mInterface = iface; in RouteKey() 585 && Objects.equals(p.mInterface, mInterface); in equals() 602 return new RouteKey(mDestination, mGateway, mInterface); in getRouteKey() 611 + (mInterface == null ? 0 :mInterface.hashCode() * 67) in hashCode() [all …]
|
/aosp12/frameworks/base/services/core/java/com/android/server/timezonedetector/ |
H A D | TimeZoneDetectorShellCommand.java | 48 private final TimeZoneDetectorService mInterface; field in TimeZoneDetectorShellCommand 51 mInterface = timeZoneDetectorService; in TimeZoneDetectorShellCommand() 88 boolean enabled = mInterface.getCapabilitiesAndConfig(userId) in runIsAutoDetectionEnabled() 97 boolean enabled = mInterface.isTelephonyTimeZoneDetectionSupported(); in runIsTelephonyDetectionSupported() 104 boolean enabled = mInterface.isGeoTimeZoneDetectionSupported(); in runIsGeoDetectionSupported() 112 boolean enabled = mInterface.getCapabilitiesAndConfig(userId) in runIsGeoDetectionEnabled() 125 return mInterface.updateConfiguration(userId, configuration) ? 0 : 1; in runSetAutoDetectionEnabled() 134 return mInterface.updateConfiguration(userId, configuration) ? 0 : 1; in runSetGeoDetectionEnabled() 140 mInterface::suggestGeolocationTimeZone); in runSuggestGeolocationTimeZone() 146 mInterface::suggestManualTimeZone); in runSuggestManualTimeZone() [all …]
|
/aosp12/frameworks/base/core/java/android/window/ |
H A D | TaskFragmentOrganizer.java | 76 getController().registerOrganizer(mInterface); in registerOrganizer() 88 getController().unregisterOrganizer(mInterface); in unregisterOrganizer() 103 getController().registerRemoteAnimations(mInterface, definition); in registerRemoteAnimations() 116 getController().unregisterRemoteAnimations(mInterface); in unregisterRemoteAnimations() 156 t.setTaskFragmentOrganizer(mInterface); in applyTransaction() 165 t.setTaskFragmentOrganizer(mInterface); in applySyncTransaction() 169 private final ITaskFragmentOrganizer mInterface = new ITaskFragmentOrganizer.Stub() { field in TaskFragmentOrganizer 205 private final TaskFragmentOrganizerToken mToken = new TaskFragmentOrganizerToken(mInterface);
|
/aosp12/frameworks/base/services/core/java/com/android/server/wm/ |
H A D | WindowManagerShellCommand.java | 57 private final IWindowManager mInterface; field in WindowManagerShellCommand 63 mInterface = service; in WindowManagerShellCommand() 155 mInterface.getInitialDisplaySize(displayId, initialSize); in printInitialDisplaySize() 156 mInterface.getBaseDisplaySize(displayId, baseSize); in printInitialDisplaySize() 198 mInterface.setForcedDisplaySize(displayId, w, h); in runDisplaySize() 200 mInterface.clearForcedDisplaySize(displayId); in runDisplaySize() 276 mInterface.setForcedDisplayDensityForUser(displayId, density, in runDisplayDensity() 279 mInterface.clearForcedDisplayDensityForUser(displayId, in runDisplayDensity() 346 density = mInterface.getBaseDisplayDensity(displayId); in parseDimension() 444 mInterface.setFixedToUserRotation(displayId, fixedToUserRotation); in runFixedToUserRotation() [all …]
|
/aosp12/frameworks/base/core/java/android/app/smartspace/ |
H A D | SmartspaceSession.java | 79 private final android.app.smartspace.ISmartspaceManager mInterface; field in SmartspaceSession 100 mInterface = android.app.smartspace.ISmartspaceManager.Stub.asInterface(b); in SmartspaceSession() 104 mInterface.createSmartspaceSession(smartspaceConfig, mSessionId, mToken); in SmartspaceSession() 123 mInterface.notifySmartspaceEvent(mSessionId, event); in notifySmartspaceEvent() 138 mInterface.requestSmartspaceUpdate(mSessionId); in requestSmartspaceUpdate() 167 mInterface.registerSmartspaceUpdates(mSessionId, callbackWrapper); in addOnTargetsAvailableListener() 168 mInterface.requestSmartspaceUpdate(mSessionId); in addOnTargetsAvailableListener() 194 mInterface.unregisterSmartspaceUpdates(mSessionId, callbackWrapper); in removeOnTargetsAvailableListener() 211 mInterface.destroySmartspaceSession(mSessionId); in destroy()
|
/aosp12/frameworks/opt/telephony/tests/telephonytests/src/android/telephony/ |
H A D | BinderCacheManagerTest.java | 46 @Mock IInterface mInterface; field in BinderCacheManagerTest 54 when(mInterface.asBinder()).thenReturn(mIBinder); in setUp() 55 mBinderCache = new BinderCacheManager<>(() -> mInterface); in setUp() 62 assertEquals(mInterface, mBinderCache.getBinder()); in testGetConnection() 72 assertEquals(mInterface, mBinderCache.listenOnBinder(l, l::countDown)); in testAddListenerAndDie() 88 assertEquals(mInterface, mBinderCache.listenOnBinder(l, l::countDown)); in testListenerNotCalledAfterRemoved() 89 assertEquals(mInterface, mBinderCache.removeRunnable(l)); in testListenerNotCalledAfterRemoved() 115 assertEquals(mInterface, mBinderCache.getBinder()); in populateCacheCaptureDeathRecipent()
|
/aosp12/frameworks/base/core/java/android/os/ |
H A D | SystemConfigManager.java | 46 private final ISystemConfig mInterface; field in SystemConfigManager 50 mInterface = ISystemConfig.Stub.asInterface( in SystemConfigManager() 62 List<String> apps = mInterface.getDisabledUntilUsedPreinstalledCarrierApps(); in getDisabledUntilUsedPreinstalledCarrierApps() 83 mInterface.getDisabledUntilUsedPreinstalledCarrierAssociatedApps(); in getDisabledUntilUsedPreinstalledCarrierAssociatedApps() 108 mInterface.getDisabledUntilUsedPreinstalledCarrierAssociatedAppEntries(); in getDisabledUntilUsedPreinstalledCarrierAssociatedAppEntries() 127 return mInterface.getSystemPermissionUids(permissionName); in getSystemPermissionUids()
|
/aosp12/packages/modules/Connectivity/core/java/android/net/ |
H A D | RouteInfo.java | 64 private final String mInterface; field in RouteInfo 130 mInterface = iface; in RouteInfo() 263 return mInterface; in getInterface() 349 if (mInterface != null) val += " " + mInterface; in toString() 366 Objects.equals(mInterface, target.getInterface()); in equals() 375 + (mInterface == null ? 0 :mInterface.hashCode() * 67) in hashCode() 407 dest.writeString(mInterface); in writeToParcel()
|
/aosp12/packages/services/Car/cpp/computepipe/router/include/ |
H A D | PipeHandle.h | 35 explicit PipeHandle(std::unique_ptr<T> intf) : mInterface(std::move(intf)) { in PipeHandle() 47 return mInterface; in getInterface() 52 explicit PipeHandle(std::shared_ptr<T> intf) : mInterface(intf){}; in PipeHandle() 54 std::shared_ptr<T> mInterface; variable
|
/aosp12/packages/services/Telephony/src/com/android/phone/ |
H A D | TelephonyShellCommand.java | 169 private final ITelephony mInterface; field in TelephonyShellCommand 262 mInterface = binder; in TelephonyShellCommand() 700 mInterface.enableDataConnectivity(); in handleDataTestModeCommand() 728 mInterface.startEmergencyCallbackMode(); in handleEmergencyCallbackModeCommand() 1305 mInterface.enableIms(slotId); in handleEnableIms() 1333 mInterface.disableIms(slotId); in handleDisableIms() 1352 mInterface.setCepEnabled(isCepEnabled); in handleCepChange() 2179 result = mInterface.getDeviceUceEnabled(); in handleUceGetDeviceEnabledCommand() 2199 mInterface.setDeviceUceEnabled(isEnabled); in handleUceSetDeviceEnabledCommand() 2662 if (mInterface != null) { in handleGetAllowedNetworkTypesCommand() [all …]
|
/aosp12/frameworks/base/services/core/java/com/android/server/om/ |
H A D | OverlayManagerShellCommand.java | 53 private final IOverlayManager mInterface; field in OverlayManagerShellCommand 57 mInterface = iom; in OverlayManagerShellCommand() 154 List<OverlayInfo> overlaysForTarget = mInterface.getOverlayInfosForTarget( in runList() 159 final OverlayInfo info = mInterface.getOverlayInfo(packageName, userId); in runList() 178 final Map<String, List<OverlayInfo>> allOverlays = mInterface.getAllOverlays(userId); in runList() 227 mInterface.commit(new OverlayManagerTransaction.Builder() in runEnableDisable() 304 mInterface.commit(new OverlayManagerTransaction.Builder() in runFabricate() 331 return mInterface.setEnabledExclusiveInCategory(overlay, userId) ? 0 : 1; in runEnableExclusive() 333 return mInterface.setEnabledExclusive(overlay, true, userId) ? 0 : 1; in runEnableExclusive() 357 return mInterface.setHighestPriority(packageName, userId) ? 0 : 1; in runSetPriority() [all …]
|
/aosp12/frameworks/base/core/java/android/app/search/ |
H A D | SearchSession.java | 78 private final android.app.search.ISearchUiManager mInterface; field in SearchSession 97 mInterface = android.app.search.ISearchUiManager.Stub.asInterface(b); in SearchSession() 103 mInterface.createSearchSession(searchContext, mSessionId, mToken); in SearchSession() 127 mInterface.notifyEvent(mSessionId, query, event); in notifyEvent() 151 mInterface.query(mSessionId, input, new CallbackWrapper(callbackExecutor, callback)); in query() 172 mInterface.destroySearchSession(mSessionId); in destroy()
|
/aosp12/frameworks/av/media/codec2/hidl/services/ |
H A D | vendor.cpp | 46 mInterface(mReflectorHelper) { in StoreImpl() 82 return mInterface.query(stackParams, heapParamIndices, C2_MAY_BLOCK, heapParams); in query_sm() 88 return mInterface.config(params, C2_MAY_BLOCK, failures); in config_sm() 97 return mInterface.querySupportedParams(params); in querySupportedParams_nb() 102 return mInterface.querySupportedValues(fields, C2_MAY_BLOCK); in querySupportedValues_sm() 162 Interface mInterface; member in StoreImpl
|
/aosp12/packages/modules/Wifi/framework/java/android/net/wifi/p2p/ |
H A D | WifiP2pGroup.java | 77 private String mInterface; field in WifiP2pGroup 125 mInterface = tokens[1]; in WifiP2pGroup() 271 mInterface = intf; in setInterface() 276 return mInterface; in getInterface() 308 sbuf.append("\n interface: ").append(mInterface); in toString() 327 mInterface = source.getInterface(); in WifiP2pGroup() 343 dest.writeString(mInterface); in writeToParcel()
|
/aosp12/frameworks/base/services/core/java/com/android/server/webkit/ |
H A D | WebViewUpdateServiceShellCommand.java | 25 final IWebViewUpdateService mInterface; field in WebViewUpdateServiceShellCommand 28 mInterface = service; in WebViewUpdateServiceShellCommand() 64 String newPackage = mInterface.changeProviderAndSetting(shellChosenPackage); in setWebViewImplementation() 78 mInterface.enableMultiProcess(enable); in enableMultiProcess()
|
/aosp12/packages/services/BuiltInPrintService/src/com/android/bips/p2p/ |
H A D | P2pPrinterConnection.java | 52 private NetworkInterface mInterface; field in P2pPrinterConnection 116 mInterface = NetworkInterface.getByName(networkInterface); in onConnectionOpen() 120 if (mInterface == null) { in onConnectionOpen() 127 if (DEBUG) Log.d(TAG, "Connected on network interface " + mInterface); in onConnectionOpen() 172 if (mInterface != null && P2pUtils.isOnInterface(mInterface, printerAddress)) { in onPrinterFound()
|
/aosp12/frameworks/base/services/core/java/com/android/server/content/ |
H A D | ContentShellCommand.java | 26 final IContentService mInterface; field in ContentShellCommand 29 mInterface = service; in ContentShellCommand() 53 mInterface.resetTodayStats(); in runResetTodayStats()
|
/aosp12/frameworks/base/services/core/java/com/android/server/am/ |
H A D | ActivityManagerShellCommand.java | 149 final IActivityManager mInterface; field in ActivityManagerShellCommand 184 mInterface = service; in ActivityManagerShellCommand() 799 mInterface.startBinderTracking(); 1033 mInterface.setAgentApp(pkg, agent); 1096 mInterface.requestFullBugReport(); 1201 final IActivityManager mInterface; 1234 mInterface = iam; 1535 final IActivityManager mInterface; 1546 mInterface = service; 1761 mInterface.restart(); [all …]
|