HomeSort by relevance Sort by last modified time
    Searched defs:onTransact (Results 51 - 75 of 114) sorted by null

1 23 4 5

  /frameworks/base/core/java/android/os/
ServiceManagerNative.java 52 public boolean onTransact(int code, Parcel data, Parcel reply, int flags)
Binder.java 256 protected boolean onTransact(int code, Parcel data, Parcel reply,
352 * Default implementation rewinds the parcels and calls onTransact. On
361 boolean r = onTransact(code, data, reply, flags);
392 // Entry point from android_util_Binder.cpp's onTransact
397 // theoretically, we should call transact, which will call onTransact,
404 res = onTransact(code, data, reply, flags);
CommonClock.java 325 protected boolean onTransact(int code, Parcel data, Parcel reply, int flags)
338 return super.onTransact(code, data, reply, flags);
  /frameworks/base/core/java/android/os/storage/
IMountServiceListener.java 61 public boolean onTransact(int code, Parcel data, Parcel reply, int flags)
89 return super.onTransact(code, data, reply, flags);
IMountShutdownObserver.java 60 public boolean onTransact(int code, Parcel data, Parcel reply, int flags)
76 return super.onTransact(code, data, reply, flags);
IObbActionListener.java 61 public boolean onTransact(int code, Parcel data, Parcel reply, int flags)
81 return super.onTransact(code, data, reply, flags);
  /frameworks/base/services/java/com/android/server/am/
ProcessStatsService.java 101 public boolean onTransact(int code, Parcel data, Parcel reply, int flags)
104 return super.onTransact(code, data, reply, flags);
    [all...]
  /frameworks/native/libs/binder/
Binder.cpp 108 err = onTransact(code, data, reply, flags);
186 status_t BBinder::onTransact(
  /frameworks/native/services/surfaceflinger/
Client.cpp 88 status_t Client::onTransact(
105 return BnSurfaceComposerClient::onTransact(code, data, reply, flags);
  /frameworks/av/camera/
ICamera.cpp 277 status_t BnCamera::onTransact(
419 return BBinder::onTransact(code, data, reply, flags);
IProCameraUser.cpp 199 status_t BnProCameraUser::onTransact(
318 return BBinder::onTransact(code, data, reply, flags);
  /frameworks/av/camera/camera2/
ICameraDeviceUser.cpp 220 status_t BnCameraDeviceUser::onTransact(
346 return BBinder::onTransact(code, data, reply, flags);
  /frameworks/av/media/common_time/
ICommonClock.cpp 237 status_t BnCommonClock::onTransact(uint32_t code,
392 return BBinder::onTransact(code, data, reply, flags);
419 status_t BnCommonClockListener::onTransact(
430 return BBinder::onTransact(code, data, reply, flags);
ICommonTimeConfig.cpp 324 status_t BnCommonTimeConfig::onTransact(uint32_t code,
505 return BBinder::onTransact(code, data, reply, flags);
  /frameworks/av/media/libmedia/
IMediaPlayerService.cpp 210 status_t BnMediaPlayerService::onTransact(
338 return BBinder::onTransact(code, data, reply, flags);
IMediaPlayer.cpp 347 status_t BnMediaPlayer::onTransact(
541 return BBinder::onTransact(code, data, reply, flags);
IMediaRecorder.cpp 300 status_t BnMediaRecorder::onTransact(
474 return BBinder::onTransact(code, data, reply, flags);
  /frameworks/native/libs/gui/
IGraphicBufferConsumer.cpp 371 status_t BnGraphicBufferConsumer::onTransact(
482 return BBinder::onTransact(code, data, reply, flags);
IGraphicBufferProducer.cpp 174 status_t BnGraphicBufferProducer::onTransact(
263 return BBinder::onTransact(code, data, reply, flags);
ISurfaceComposer.cpp 236 status_t BnSurfaceComposer::onTransact(
350 return BBinder::onTransact(code, data, reply, flags);
  /system/extras/tests/binder/benchmarks/
binderAddInts.cpp 83 virtual status_t onTransact(uint32_t code,
312 status_t AddIntsService::onTransact(uint32_t code, const Parcel &data,
323 cerr << "server onTransact on CPU " << cpu << " expected CPU "
338 cerr << "server onTransact unknown code, code: " << code << endl;
  /cts/tests/tests/app/src/android/app/cts/
ServiceTest.java 323 protected boolean onTransact(int code, Parcel data, Parcel reply,
377 return super.onTransact(code, data, reply, flags);
  /frameworks/base/core/java/android/security/
IKeystoreService.java 534 public boolean onTransact(int code, Parcel data, Parcel reply, int flags)
549 return super.onTransact(code, data, reply, flags);
  /frameworks/base/services/java/com/android/server/
ClipboardService.java 120 public boolean onTransact(int code, Parcel data, Parcel reply, int flags)
123 return super.onTransact(code, data, reply, flags);
  /frameworks/base/tools/aidl/
generate_java_binder.cpp 64 // onTransact
69 Method* onTransact = new Method;
70 onTransact->modifiers = PUBLIC | OVERRIDE;
71 onTransact->returnType = BOOLEAN_TYPE;
72 onTransact->name = "onTransact";
73 onTransact->parameters.push_back(this->transact_code);
74 onTransact->parameters.push_back(this->transact_data);
75 onTransact->parameters.push_back(this->transact_reply);
76 onTransact->parameters.push_back(this->transact_flags)
    [all...]

Completed in 848 milliseconds

1 23 4 5