Searched defs:transact (Results 1 - 9 of 9) sorted by path

/frameworks/base/core/java/android/os/
H A DBinder.java89 * Flag indicating whether we should be tracing transact calls.
335 * <p>If you want to call this, call transact().
490 * the remote side, transact calls into the binder to do the IPC.
492 public final boolean transact(int code, Parcel data, Parcel reply, method in class:Binder
558 // theoretically, we should call transact, which will call onTransact,
612 public boolean transact(int code, Parcel data, Parcel reply, int flags) throws RemoteException { method in class:BinderProxy
631 transact(DUMP_TRANSACTION, data, reply, 0);
645 transact(DUMP_TRANSACTION, data, reply, FLAG_ONEWAY);
662 transact(SHELL_COMMAND_TRANSACTION, data, reply, 0);
H A DIBinder.java29 * <p>The key IBinder API is {@link #transact transact()} matched by
33 * is synchronous, such that a call to {@link #transact transact()} does not
40 * <p>The data sent through transact() is a {@link Parcel}, a generic buffer
54 * process A to process B, the calling thread in A blocks in transact() as
64 * handling that transaction calls transact() on an IBinder that is implemented
73 * <li> The {@link #transact transact()} method will throw a
152 * Flag to {@link #transact}
243 public boolean transact(int code, Parcel data, Parcel reply, int flags) method in interface:IBinder
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DInstallerConnection.java65 public synchronized String transact(String cmd) { method in class:InstallerConnection
124 final String[] resRaw = transact(builder.toString()).split(" ");
/frameworks/native/libs/binder/
H A DBinder.cpp78 return target->transact(SHELL_COMMAND_TRANSACTION, send, &reply);
115 status_t BBinder::transact( function in class:android::BBinder
H A DBpBinder.cpp112 status_t err = const_cast<BpBinder*>(this)->transact(
140 status_t err = transact(PING_TRANSACTION, send, &reply);
156 status_t err = transact(DUMP_TRANSACTION, send, &reply);
160 status_t BpBinder::transact( function in class:android::BpBinder
165 status_t status = IPCThreadState::self()->transact(
H A DIPCThreadState.cpp54 #define IF_LOG_TRANSACTIONS() IF_ALOG(LOG_VERBOSE, "transact")
569 status_t IPCThreadState::transact(int32_t handle, function in class:android::IPCThreadState
1111 error = reinterpret_cast<BBinder*>(tr.cookie)->transact(tr.code, buffer,
1119 error = the_context_object->transact(tr.code, buffer, &reply, tr.flags);
/frameworks/native/services/surfaceflinger/
H A DSurfaceFlinger.cpp3142 virtual status_t transact(uint32_t code, function in class:android::GraphicProducerWrapper
3173 result = IInterface::asBinder(impl)->transact(code, data[0], reply);
H A DSurfaceFlinger_hwc1.cpp3156 virtual status_t transact(uint32_t code, function in class:android::GraphicProducerWrapper
3187 result = IInterface::asBinder(impl)->transact(code, data[0], reply);
/frameworks/opt/net/ims/src/java/com/android/ims/
H A DImsUt.java510 public void transact(Bundle ssInfo, Message result) { method in class:ImsUt
512 log("transact :: Ut=" + miUt + ", ssInfo=" + ssInfo);
517 int id = miUt.transact(ssInfo);

Completed in 253 milliseconds