Searched refs:binder (Results 76 - 100 of 297) sorted by relevance

1234567891011>>

/frameworks/av/camera/
H A DICameraService.cpp21 #include <binder/Parcel.h>
22 #include <binder/IPCThreadState.h>
23 #include <binder/IServiceManager.h>
H A DCamera.cpp22 #include <binder/IPCThreadState.h>
23 #include <binder/IServiceManager.h>
24 #include <binder/IMemory.h>
35 // client singleton for camera service binder interface
40 // establish binder interface to camera service
46 sp<IBinder> binder; local
48 binder = sm->getService(String16("media.camera"));
49 if (binder != 0)
57 binder->linkToDeath(mDeathNotifier);
58 mCameraService = interface_cast<ICameraService>(binder);
[all...]
H A DICameraRecordingProxy.cpp21 #include <binder/IMemory.h>
22 #include <binder/Parcel.h>
/frameworks/base/core/java/android/os/
H A DRemoteCallbackList.java112 IBinder binder = callback.asBinder();
115 binder.linkToDeath(cb, 0);
116 mCallbacks.put(binder, cb);
H A DServiceManagerNative.java124 IBinder binder = reply.readStrongBinder();
127 return binder;
136 IBinder binder = reply.readStrongBinder();
139 return binder;
/frameworks/native/include/binder/
H A DIPCThreadState.h21 #include <binder/Parcel.h>
22 #include <binder/ProcessState.h>
70 static void expungeHandle(int32_t handle, IBinder* binder);
/frameworks/native/libs/binder/
H A DPermissionCache.cpp21 #include <binder/IPCThreadState.h>
22 #include <binder/IServiceManager.h>
23 #include <binder/PermissionCache.h>
H A DParcel.cpp20 #include <binder/Parcel.h>
22 #include <binder/IPCThreadState.h>
23 #include <binder/Binder.h>
24 #include <binder/BpBinder.h>
26 #include <binder/ProcessState.h>
35 #include <private/binder/binder_module.h>
77 if (obj.binder) {
83 if (obj.binder)
84 static_cast<RefBase::weakref_type*>(obj.binder)->incWeak(who);
114 if (obj.binder) {
145 finish_flatten_binder( const sp<IBinder>& binder, const flat_binder_object& flat, Parcel* out) argument
151 flatten_binder(const sp<ProcessState>& proc, const sp<IBinder>& binder, Parcel* out) argument
182 flatten_binder(const sp<ProcessState>& proc, const wp<IBinder>& binder, Parcel* out) argument
[all...]
H A DBinder.cpp17 #include <binder/Binder.h>
21 #include <binder/BpBinder.h>
22 #include <binder/IInterface.h>
23 #include <binder/Parcel.h>
217 // This is used to transfer ownership of the remote binder from
/frameworks/av/include/media/
H A DICrypto.h17 #include <binder/IInterface.h>
H A DIMediaPlayerService.h24 #include <binder/IInterface.h>
25 #include <binder/Parcel.h>
/frameworks/av/services/audioflinger/
H A DISchedulingPolicyService.cpp20 #include <binder/Parcel.h>
/frameworks/base/libs/storage/
H A DIMountServiceListener.cpp18 #include <binder/Parcel.h>
H A DIObbActionListener.cpp18 #include <binder/Parcel.h>
/frameworks/native/include/gui/
H A DIGraphicBufferAlloc.h23 #include <binder/IInterface.h>
H A DISensorEventConnection.h26 #include <binder/IInterface.h>
H A DISurface.h26 #include <binder/IInterface.h>
H A DSensorManager.h23 #include <binder/IBinder.h>
/frameworks/native/libs/gui/
H A DISurface.cpp23 #include <binder/Parcel.h>
H A DIDisplayEventConnection.cpp24 #include <binder/Parcel.h>
25 #include <binder/IInterface.h>
H A DISensorServer.cpp25 #include <binder/Parcel.h>
26 #include <binder/IInterface.h>
/frameworks/base/services/java/com/android/server/am/
H A DTransferPipe.java98 static void goDump(IBinder binder, FileDescriptor out, argument
100 goDump(binder, out, args, DEFAULT_TIMEOUT);
103 static void goDump(IBinder binder, FileDescriptor out, argument
105 if (binder instanceof Binder) {
108 binder.dump(out, args);
116 binder.dumpAsync(tp.getWriteFd().getFileDescriptor(), args);
/frameworks/base/core/java/android/widget/
H A DSimpleCursorAdapter.java136 final ViewBinder binder = mViewBinder;
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
H A DSimpleCursorTreeAdapter.java65 * View binder, if supplied
192 * @return a ViewBinder or null if the binder does not exist
201 * Sets the binder used to bind data to views.
203 * @param viewBinder the binder used to bind data to views, can be null to
204 * remove the existing binder
213 final ViewBinder binder = mViewBinder;
219 if (binder != null) {
220 bound = binder.setViewValue(v, cursor, from[i]);
/frameworks/support/v4/java/android/support/v4/widget/
H A DSimpleCursorAdapter.java121 final ViewBinder binder = mViewBinder;
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

Completed in 327 milliseconds

1234567891011>>