HomeSort by relevance Sort by last modified time
    Searched full:binder (Results 226 - 250 of 718) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/services/java/com/android/server/usb/
UsbService.java 26 import android.os.Binder;
172 + Binder.getCallingPid()
173 + ", uid=" + Binder.getCallingUid());
  /frameworks/base/telephony/java/com/android/internal/telephony/
PhoneSubInfo.java 23 import android.os.Binder;
196 + Binder.getCallingPid()
197 + ", uid=" + Binder.getCallingUid());
  /frameworks/native/libs/binder/
PermissionCache.cpp 21 #include <binder/IPCThreadState.h>
22 #include <binder/IServiceManager.h>
23 #include <binder/PermissionCache.h>
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
ServiceProxy.java 59 public abstract void onConnected(IBinder binder);
71 public void onServiceConnected(ComponentName name, IBinder binder) {
72 onConnected(binder);
  /packages/apps/Phone/src/com/android/phone/
NetworkQueryService.java 23 import android.os.Binder;
66 public class LocalBinder extends Binder {
176 // end up requiring support for a remote binder, we will need to
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
ShortcutsProvider.java 28 import android.os.Binder;
131 if (DBG) Log.d(TAG, "Adding (PID: " + Binder.getCallingPid() + "): " + shortcut);
148 int callingUid = Binder.getCallingUid();
  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
Adapters.java 102 * your own <a href="#xml-cursor-adapter-bind-data-types">binder</a> or
122 * custom binder classes or special
215 * binder is declared:</p>
268 * <p>A binder is provided with a cursor transformation which may or may not be used
272 * <p>The binder is associated with a Context but can be re-used with multiple cursors.
281 * <p>The context associated with this binder.</p>
286 * <p>The transformation associated with this binder. This transformation is never
295 * <p>Creates a new Cursor binder.</p>
297 * @param context The context associated with this binder.
298 * @param transformation The transformation associated with this binder. Thi
933 CursorBinder binder = binders.get(from[i]); local
    [all...]
  /frameworks/base/services/java/com/android/server/
LocationManagerService.java 50 import android.os.Binder;
432 IBinder binder = listener.asBinder(); local
433 Receiver receiver = mReceivers.get(binder);
437 long identity = Binder.clearCallingIdentity();
439 Binder.restoreCallingIdentity(identity);
1114 IBinder binder = listener.asBinder(); local
    [all...]
WallpaperManagerService.java 39 import android.os.Binder;
124 long origId = Binder.clearCallingIdentity();
127 Binder.restoreCallingIdentity(origId);
211 final Binder mToken = new Binder();
496 final long ident = Binder.clearCallingIdentity();
509 Binder.restoreCallingIdentity(ident);
571 int callingUid = Binder.getCallingUid();
618 final long ident = Binder.clearCallingIdentity();
626 Binder.restoreCallingIdentity(ident)
    [all...]
InputMethodManagerService.java 61 import android.os.Binder;
    [all...]
  /frameworks/base/core/java/android/app/
ContextImpl.java 73 import android.os.Binder;
    [all...]
  /frameworks/base/docs/html/guide/components/
aidl.jd 41 href="{@docRoot}guide/components/bound-services.html#Binder">implementing a
42 Binder</a> or, if you want to perform IPC, but do <em>not</em> need to handle multithreading,
60 interface by <a href="{@docRoot}guide/components/bound-services.html#Binder">implementing a
61 Binder</a>).</li>
71 android.os.Binder} thread pool as a normal remote call. If {@code oneway} is used with a local call,
96 {@link android.os.Binder} and implements methods from your AIDL interface. You must extend the
193 <p>If you use Eclipse, the incremental build generates the binder class almost immediately. If you
194 do not use Eclipse, then the Ant tool generates the binder class next time you build your
215 android.os.Binder} interface (for example, {@code YourInterface.Stub}) and implement the methods
233 <p>Now the {@code mBinder} is an instance of the {@code Stub} class (a {@link android.os.Binder}),
    [all...]
  /frameworks/base/services/java/com/android/server/connectivity/
Vpn.java 35 import android.os.Binder;
115 long identity = Binder.clearCallingIdentity();
118 Binder.restoreCallingIdentity(identity);
152 if (Binder.getCallingUid() != app.uid) {
175 if (Binder.getCallingUid() != app.uid) {
245 long identity = Binder.clearCallingIdentity();
248 Binder.restoreCallingIdentity(identity);
274 long identity = Binder.clearCallingIdentity();
277 Binder.restoreCallingIdentity(identity);
296 if (Binder.getCallingUid() == Process.SYSTEM_UID)
    [all...]
  /frameworks/native/cmds/dumpstate/
dumpstate.c 229 /* Binder state is expensive to look at as it uses a lot of memory. */
230 dump_file("BINDER FAILED TRANSACTION LOG", "/sys/kernel/debug/binder/failed_transaction_log");
231 dump_file("BINDER TRANSACTION LOG", "/sys/kernel/debug/binder/transaction_log");
232 dump_file("BINDER TRANSACTIONS", "/sys/kernel/debug/binder/transactions");
233 dump_file("BINDER STATS", "/sys/kernel/debug/binder/stats");
234 dump_file("BINDER STATE", "/sys/kernel/debug/binder/state")
    [all...]
  /frameworks/base/cmds/servicemanager/
binder.c 11 #include "binder.h"
17 #define LOG_TAG "Binder"
104 bs->fd = open("/dev/binder", O_RDWR);
106 fprintf(stderr,"binder: cannot open device (%s)\n",
114 fprintf(stderr,"binder: cannot map device (%s)\n",
316 fprintf(stderr,"binder: txn buffer overflow\n");
342 fprintf(stderr,"binder: ioctl failed (%s)\n", strerror(errno));
  /frameworks/base/core/java/android/os/
PerformanceCollector.java 162 * transactions from the binder driver before collection started.
172 * transactions from the binder driver.
452 * Starts tracking memory usage, binder transactions, and real & cpu timing.
458 // Add initial binder counts
477 * Stops tracking memory usage, binder transactions, and real & cpu timing.
501 // Add final binder counts
577 * Returns a bundle with the counts for various binder counts for this
  /frameworks/base/core/java/android/widget/
SimpleAdapter.java 152 final ViewBinder binder = mViewBinder; local
167 if (binder != null) {
168 bound = binder.setViewValue(v, data, text);
206 * @return a ViewBinder or null if the binder does not exist
215 * Sets the binder used to bind data to views.
217 * @param viewBinder the binder used to bind data to views, can be null to
218 * remove the existing binder
SimpleCursorAdapter.java 136 final ViewBinder binder = mViewBinder; local
145 if (binder != null) {
146 bound = binder.setViewValue(v, cursor, from[i]);
171 * @return a ViewBinder or null if the binder does not exist
181 * Sets the binder used to bind data to views.
183 * @param viewBinder the binder used to bind data to views, can be null to
184 * remove the existing binder
  /frameworks/support/v4/java/android/support/v4/widget/
SimpleCursorAdapter.java 121 final ViewBinder binder = mViewBinder; local
130 if (binder != null) {
131 bound = binder.setViewValue(v, cursor, from[i]);
156 * @return a ViewBinder or null if the binder does not exist
166 * Sets the binder used to bind data to views.
168 * @param viewBinder the binder used to bind data to views, can be null to
169 * remove the existing binder
  /packages/apps/Nfc/src/com/android/nfc/
NfcService.java 57 import android.os.Binder;
232 if (!mNfceeAccessControl.check(Binder.getCallingUid(), pkg)) {
560 _nfcEeClose(-1, mOpenEe.binder);
1274 _nfcEeClose(getCallingPid(), binder); local
1341 public IBinder binder; field in class:NfcService.OpenSecureElement
    [all...]
  /frameworks/base/core/java/android/app/backup/
BackupAgent.java 24 import android.os.Binder;
474 // ----- IBackupService binder interface -----
484 long ident = Binder.clearCallingIdentity();
498 Binder.restoreCallingIdentity(ident);
512 long ident = Binder.clearCallingIdentity();
525 Binder.restoreCallingIdentity(ident);
538 long ident = Binder.clearCallingIdentity();
561 Binder.restoreCallingIdentity(ident);
574 long ident = Binder.clearCallingIdentity();
580 Binder.restoreCallingIdentity(ident)
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/
AccessibilityManagerServiceTest.java 47 * Timeout required for pending Binder calls or event processing to
192 // wait for the binder call to #setService to complete
222 // wait for the binder call to #setService to complete
252 // wait for the binder call to #setService to complete
284 // wait for the binder call to #setService to complete
341 // wait for the binder calls to #setService to complete
381 // wait for the binder calls to #setService to complete
422 // wait for the binder calls to #setService to complete
465 // wait for the binder calls to #setService to complete
503 // wait for the binder calls to #setService to complet
    [all...]
  /external/chromium-trace/src/tracing/
linux_perf_importer_test.html 39 var x = re.exec('Binder Thread #-647 [001] 260.464294: sched_switch: ' +
40 'prev_comm=Binder Thread # prev_pid=647 prev_prio=120 prev_state=D ==> ' +
59 'prev_state=R ==> next_comm=Binder Thread # next_pid=195 next_prio=120');
62 assertEquals('Binder Thread #', x[5]);
64 var x = re.exec('prev_comm=Binder Thread # prev_pid=1562 prev_prio=120 ' +
67 assertEquals('Binder Thread #', x[1]);
  /frameworks/av/media/libstagefright/
CameraSourceTimeLapse.cpp 20 #include <binder/IPCThreadState.h>
21 #include <binder/MemoryBase.h>
22 #include <binder/MemoryHeapBase.h>
OMXClient.cpp 21 #include <binder/IServiceManager.h>
321 sp<IBinder> binder = sm->getService(String16("media.player")); local
322 sp<IMediaPlayerService> service = interface_cast<IMediaPlayerService>(binder);

Completed in 7005 milliseconds

1 2 3 4 5 6 7 8 91011>>