Searched defs:transact (Results 1 - 5 of 5) 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
113 * Flag to {@link #transact}
172 public boolean transact(int code, Parcel data, Parcel reply, int flags) method in interface:IBinder
[all...]
H A DBinder.java188 * <p>If you want to call this, call transact().
240 * the remote side, transact calls into the binder to do the IPC.
242 public final boolean transact(int code, Parcel data, Parcel reply, method in class:Binder
282 // theoretically, we should call transact, which will call onTransact,
310 public native boolean transact(int code, Parcel data, Parcel reply, method in class:BinderProxy
321 transact(DUMP_TRANSACTION, data, null, 0);
/frameworks/base/libs/utils/
H A DBinder.cpp82 status_t BBinder::transact( function in class:android::BBinder
H A DBpBinder.cpp105 status_t err = const_cast<BpBinder*>(this)->transact(
122 status_t err = transact(PING_TRANSACTION, send, &reply);
138 status_t err = transact(DUMP_TRANSACTION, send, &reply);
142 status_t BpBinder::transact( function in class:android::BpBinder
147 status_t status = IPCThreadState::self()->transact(
H A DIPCThreadState.cpp56 #define IF_LOG_TRANSACTIONS() IF_LOG(LOG_VERBOSE, "transact")
453 status_t IPCThreadState::transact(int32_t handle, function in class:android::IPCThreadState
934 const status_t error = b->transact(tr.code, buffer, &reply, 0);
938 const status_t error = the_context_object->transact(tr.code, buffer, &reply, 0);

Completed in 73 milliseconds