Searched defs:transact (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/java/android/os/
H A DIBinder.java30 * <p>The key IBinder API is {@link #transact transact()} matched by
34 * is synchronous, such that a call to {@link #transact transact()} does not
41 * <p>The data sent through transact() is a {@link Parcel}, a generic buffer
55 * process A to process B, the calling thread in A blocks in transact() as
65 * handling that transaction calls transact() on an IBinder that is implemented
74 * <li> The {@link #transact transact()} method will throw a
147 * Flag to {@link #transact}
217 public boolean transact(int code, Parcel data, Parcel reply, int flags) method in interface:IBinder
[all...]
H A DBinder.java254 * <p>If you want to call this, call transact().
353 * the remote side, transact calls into the binder to do the IPC.
355 public final boolean transact(int code, Parcel data, Parcel reply, method in class:Binder
397 // theoretically, we should call transact, which will call onTransact,
442 public native boolean transact(int code, Parcel data, Parcel reply, method in class:BinderProxy
454 transact(DUMP_TRANSACTION, data, reply, 0);
468 transact(DUMP_TRANSACTION, data, reply, FLAG_ONEWAY);
/frameworks/native/libs/binder/
H A DBinder.cpp97 status_t BBinder::transact( function in class:android::BBinder
H A DBpBinder.cpp111 status_t err = const_cast<BpBinder*>(this)->transact(
139 status_t err = transact(PING_TRANSACTION, send, &reply);
155 status_t err = transact(DUMP_TRANSACTION, send, &reply);
159 status_t BpBinder::transact( function in class:android::BpBinder
164 status_t status = IPCThreadState::self()->transact(
H A DIPCThreadState.cpp60 #define IF_LOG_TRANSACTIONS() IF_ALOG(LOG_VERBOSE, "transact")
546 status_t IPCThreadState::transact(int32_t handle, function in class:android::IPCThreadState
1074 const status_t error = b->transact(tr.code, buffer, &reply, tr.flags);
1078 const status_t error = the_context_object->transact(tr.code, buffer, &reply, tr.flags);
/frameworks/native/services/surfaceflinger/
H A DSurfaceFlinger.cpp2787 virtual status_t transact(uint32_t code, function in class:android::GraphicProducerWrapper
2811 impl->asBinder()->transact(code, data[0], reply);

Completed in 603 milliseconds