HomeSort by relevance Sort by last modified time
    Searched refs:Binder (Results 151 - 175 of 236) sorted by null

1 2 3 4 5 67 8 910

  /packages/apps/KeyChain/src/com/android/keychain/
KeyChainService.java 28 import android.os.Binder;
92 final int uid = Binder.getCallingUid();
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DbModifierWithNotification.java 34 import android.os.Binder;
254 int caller = Binder.getCallingUid();
VoicemailContentProvider.java 29 import android.os.Binder;
363 int caller = Binder.getCallingUid();
  /frameworks/base/services/java/com/android/server/am/
UsageStatsService.java 23 import android.os.Binder;
781 if (Binder.getCallingPid() == Process.myPid()) {
785 Binder.getCallingPid(), Binder.getCallingUid(), null);
    [all...]
  /frameworks/opt/net/voip/src/java/com/android/server/sip/
SipService.java 35 import android.os.Binder;
141 localProfile.setCallingUid(Binder.getCallingUid());
156 localProfile.setCallingUid(Binder.getCallingUid());
179 return (profile.getCallingUid() == Binder.getCallingUid());
187 return (Binder.getCallingUid() == Process.PHONE_UID);
256 localProfile.setCallingUid(Binder.getCallingUid());
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
ParcelTest.java 28 import android.os.Binder;
439 Binder binder; local
440 Binder binder2 = new Binder();
444 binder = (Binder) p.readValue(mcl);
445 assertEquals(binder2, binder);
    [all...]
  /frameworks/base/core/java/android/app/
ContextImpl.java 74 import android.os.Binder;
    [all...]
LocalActivityManager.java 21 import android.os.Binder;
47 private static class LocalActivityRecord extends Binder {
  /frameworks/base/services/java/com/android/server/content/
ContentService.java 33 import android.os.Binder;
183 Binder.getCallingUid(), Binder.getCallingPid(), userHandle);
238 final int uid = Binder.getCallingUid();
259 IBinder binder = oc.mObserver.asBinder(); local
265 if (oe.observer.asBinder() == binder) {
313 int uId = Binder.getCallingUid();
    [all...]
  /frameworks/base/services/java/com/android/server/pm/
PackageManagerService.java 93 import android.os.Binder;
    [all...]
  /cts/tests/src/android/app/cts/
LaunchpadActivity.java 25 import android.os.Binder;
81 // Also used as the Binder interface descriptor string in these tests
558 private final Binder mCallTarget = new Binder() {
  /frameworks/base/core/tests/coretests/src/android/app/activity/
LaunchpadActivity.java 25 import android.os.Binder;
73 // Also used as the Binder interface descriptor string in these tests
488 private Binder mCallTarget = new Binder() {
  /frameworks/base/wifi/java/android/net/wifi/
WifiManager.java 23 import android.os.Binder;
546 * @param service the Binder interface
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
SmsUsageMonitor.java 25 import android.os.Binder;
582 int uid = Binder.getCallingUid();
599 int uid = Binder.getCallingUid();
  /packages/apps/Exchange/exchange2/src/com/android/exchange/provider/
ExchangeDirectoryProvider.java 39 import android.os.Binder;
287 long callingId = Binder.clearCallingIdentity();
303 Binder.restoreCallingIdentity(callingId);
  /frameworks/base/services/java/com/android/server/usb/
UsbSettingsManager.java 35 import android.os.Binder;
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
AdapterService.java 37 import android.os.Binder;
169 IBluetooth.Stub binder = mBinder; local
170 if (binder != null) {
172 binder.sendConnectionStateChange(device, profileId, newState,prevState);
384 mBinder = null; //Do not remove. Otherwise Binder leak!
470 * The Binder implementation must be declared to be a static class, with
476 * service...Please refer to android.os.Binder for further details on
512 if ((Binder.getCallingUid() != Process.SYSTEM_UID) &&
524 if ((Binder.getCallingUid() != Process.SYSTEM_UID) &&
536 if ((Binder.getCallingUid() != Process.SYSTEM_UID) &
    [all...]
  /frameworks/base/core/java/android/accounts/
AbstractAccountAuthenticator.java 21 import android.os.Binder;
339 final int uid = Binder.getCallingUid();
  /frameworks/base/core/java/android/view/accessibility/
AccessibilityInteractionClient.java 20 import android.os.Binder;
51 * to a given view hierarchy where a message is posted (from a binder
63 * specifically the binder thread performing the IPC to it, does not post a
514 final boolean isIpcCall = (Binder.getCallingPid() != Process.myPid());
  /frameworks/base/services/java/com/android/server/
Watchdog.java 20 import android.os.Binder;
505 Binder.setDumpDisabled("Service dumps disabled due to hung system process.");
  /frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
FrameworkPerfActivity.java 23 import android.os.Binder;
88 if (!(service instanceof Binder)) {
  /packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
VCardService.java 24 import android.os.Binder;
137 public class MyBinder extends Binder {
  /frameworks/base/media/java/android/media/
AudioService.java 50 import android.os.Binder;
343 // List of binder death handlers for setMode() client processes.
    [all...]
AudioManager.java 26 import android.os.Binder;
54 private final Binder mToken = new Binder();
    [all...]
  /frameworks/base/native/android/
storage_manager.cpp 22 #include <binder/Binder.h>
23 #include <binder/IServiceManager.h>

Completed in 2721 milliseconds

1 2 3 4 5 67 8 910