HomeSort by relevance Sort by last modified time
    Searched defs:reply (Results 176 - 200 of 720) sorted by null

1 2 3 4 5 6 78 91011>>

  /frameworks/av/media/libmedia/
IMediaHTTPConnection.cpp 47 Parcel data, reply; local
68 remote()->transact(CONNECT, data, &reply);
70 int32_t exceptionCode = reply.readExceptionCode();
76 sp<IBinder> binder = reply.readStrongBinder();
83 Parcel data, reply; local
87 remote()->transact(DISCONNECT, data, &reply);
91 Parcel data, reply; local
98 status_t err = remote()->transact(READ_AT, data, &reply);
104 int32_t exceptionCode = reply.readExceptionCode();
110 int32_t lenOrErrorCode = reply.readInt32()
142 Parcel data, reply; local
160 Parcel data, reply; local
180 Parcel data, reply; local
    [all...]
IMediaPlayerService.cpp 57 Parcel data, reply; local
59 remote()->transact(CREATE_METADATA_RETRIEVER, data, &reply);
60 return interface_cast<IMediaMetadataRetriever>(reply.readStrongBinder());
65 Parcel data, reply; local
70 remote()->transact(CREATE, data, &reply);
71 return interface_cast<IMediaPlayer>(reply.readStrongBinder());
76 Parcel data, reply; local
79 remote()->transact(CREATE_MEDIA_RECORDER, data, &reply);
80 return interface_cast<IMediaRecorder>(reply.readStrongBinder());
84 Parcel data, reply; local
99 Parcel data, reply; local
109 Parcel data, reply; local
    [all...]
IResourceManagerService.cpp 67 Parcel data, reply; local
70 remote()->transact(CONFIG, data, &reply);
78 Parcel data, reply; local
85 remote()->transact(ADD_RESOURCE, data, &reply);
89 Parcel data, reply; local
94 remote()->transact(REMOVE_RESOURCE, data, &reply);
98 Parcel data, reply; local
104 status_t status = remote()->transact(RECLAIM_RESOURCE, data, &reply);
106 ret = (bool)reply.readInt32();
118 uint32_t code, const Parcel &data, Parcel *reply, uint32_t flags
    [all...]
IStreamSource.cpp 48 Parcel data, reply; local
51 remote()->transact(SET_LISTENER, data, &reply);
55 Parcel data, reply; local
61 remote()->transact(SET_BUFFERS, data, &reply);
65 Parcel data, reply; local
69 ON_BUFFER_AVAILABLE, data, &reply, IBinder::FLAG_ONEWAY);
73 Parcel data, reply; local
75 remote()->transact(FLAGS, data, &reply);
77 return reply.readInt32();
84 uint32_t code, const Parcel &data, Parcel *reply, uint32_t flags)
142 Parcel data, reply; local
152 Parcel data, reply; local
    [all...]
  /frameworks/base/core/java/android/content/
ContentProviderNative.java 75 public boolean onTransact(int code, Parcel data, Parcel reply, int flags)
114 reply.writeNoException();
115 reply.writeInt(1);
116 d.writeToParcel(reply, Parcelable.PARCELABLE_WRITE_RETURN_VALUE);
127 reply.writeNoException();
128 reply.writeInt(0);
139 reply.writeNoException();
140 reply.writeString(type);
153 reply.writeNoException();
154 Uri.writeToParcel(reply, out)
397 Parcel reply = Parcel.obtain(); local
445 Parcel reply = Parcel.obtain(); local
466 Parcel reply = Parcel.obtain(); local
488 Parcel reply = Parcel.obtain(); local
512 Parcel reply = Parcel.obtain(); local
536 Parcel reply = Parcel.obtain(); local
560 Parcel reply = Parcel.obtain(); local
586 Parcel reply = Parcel.obtain(); local
614 Parcel reply = Parcel.obtain(); local
640 Parcel reply = Parcel.obtain(); local
664 Parcel reply = Parcel.obtain(); local
686 Parcel reply = Parcel.obtain(); local
712 Parcel reply = Parcel.obtain(); local
733 Parcel reply = Parcel.obtain(); local
754 Parcel reply = Parcel.obtain(); local
776 Parcel reply = Parcel.obtain(); local
    [all...]
AsyncQueryHandler.java 111 Message reply = args.handler.obtainMessage(token); local
112 reply.obj = args;
113 reply.arg1 = msg.arg1;
117 + ", reply.what=" + reply.what);
120 reply.sendToTarget();
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
MediaPlayerInvokeTest.java 64 Parcel reply = Parcel.obtain(); local
68 mPlayer.invoke(request, reply);
69 assertEquals(val, reply.readInt());
  /frameworks/native/libs/binder/
IAppOpsService.cpp 40 Parcel data, reply; local
45 remote()->transact(CHECK_OPERATION_TRANSACTION, data, &reply);
47 if (reply.readExceptionCode() != 0) return MODE_ERRORED;
48 return reply.readInt32();
52 Parcel data, reply; local
57 remote()->transact(NOTE_OPERATION_TRANSACTION, data, &reply);
59 if (reply.readExceptionCode() != 0) return MODE_ERRORED;
60 return reply.readInt32();
65 Parcel data, reply; local
72 remote()->transact(START_OPERATION_TRANSACTION, data, &reply);
80 Parcel data, reply; local
91 Parcel data, reply; local
100 Parcel data, reply; local
107 Parcel data, reply; local
118 Parcel data, reply; local
    [all...]
IBatteryStats.cpp 38 Parcel data, reply; local
42 remote()->transact(NOTE_START_SENSOR_TRANSACTION, data, &reply);
46 Parcel data, reply; local
50 remote()->transact(NOTE_STOP_SENSOR_TRANSACTION, data, &reply);
54 Parcel data, reply; local
57 remote()->transact(NOTE_START_VIDEO_TRANSACTION, data, &reply);
61 Parcel data, reply; local
64 remote()->transact(NOTE_STOP_VIDEO_TRANSACTION, data, &reply);
68 Parcel data, reply; local
71 remote()->transact(NOTE_START_AUDIO_TRANSACTION, data, &reply);
75 Parcel data, reply; local
82 Parcel data, reply; local
88 Parcel data, reply; local
94 Parcel data, reply; local
101 Parcel data, reply; local
108 Parcel data, reply; local
115 Parcel data, reply; local
122 Parcel data, reply; local
128 Parcel data, reply; local
    [all...]
IPermissionController.cpp 41 Parcel data, reply; local
46 remote()->transact(CHECK_PERMISSION_TRANSACTION, data, &reply);
48 if (reply.readExceptionCode() != 0) return 0;
49 return reply.readInt32() != 0;
54 Parcel data, reply; local
59 remote()->transact(NOTE_OP_TRANSACTION, data, &reply);
61 if (reply.readExceptionCode() != 0) return 2; // MODE_ERRORED
62 return reply.readInt32();
67 Parcel data, reply; local
70 remote()->transact(GET_PACKAGES_FOR_UID_TRANSACTION, data, &reply);
86 Parcel data, reply; local
97 Parcel data, reply; local
    [all...]
IServiceManager.cpp 180 Parcel data, reply; local
183 remote()->transact(CHECK_SERVICE_TRANSACTION, data, &reply);
184 return reply.readStrongBinder();
189 Parcel data, reply; local
195 status_t err = remote()->transact(ADD_SERVICE_TRANSACTION, data, &reply);
196 return err == NO_ERROR ? reply.readExceptionCode() : err;
204 Parcel data, reply; local
208 status_t err = remote()->transact(LIST_SERVICES_TRANSACTION, data, &reply);
211 res.add(reply.readString16());
  /frameworks/native/libs/sensor/
ISensorEventConnection.cpp 55 Parcel data, reply; local
57 remote()->transact(GET_SENSOR_CHANNEL, data, &reply);
58 return new BitTube(reply);
64 Parcel data, reply; local
71 remote()->transact(ENABLE_DISABLE, data, &reply);
72 return reply.readInt32();
77 Parcel data, reply; local
81 remote()->transact(SET_EVENT_RATE, data, &reply);
82 return reply.readInt32();
86 Parcel data, reply; local
93 Parcel data, reply; local
108 Parcel data, reply; local
    [all...]
  /hardware/qcom/display/msm8960/libqservice/
IQService.cpp 47 Parcel data, reply; local
50 remote()->transact(SECURING, data, &reply);
54 Parcel data, reply; local
57 remote()->transact(UNSECURING, data, &reply);
61 Parcel data, reply; local
64 remote()->transact(CONNECT, data, &reply);
68 Parcel data, reply; local
70 remote()->transact(SCREEN_REFRESH, data, &reply);
71 status_t result = reply.readInt32();
83 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags
    [all...]
  /system/core/libmemunreachable/tests/
Binder_test.cpp 44 virtual status_t onTransact(uint32_t /*code*/, const Parcel& data, Parcel* reply,
46 reply->writeStrongBinder(ref);
147 Parcel reply; local
150 status_t rv = service->transact(0, send, &reply);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
VmMirror.java 87 * Checks error code of given reply packet and throws
90 * @param reply
91 * reply packet to check
92 * @return ReplyPacket unchanged reply packet
94 public ReplyPacket checkReply(ReplyPacket reply) {
95 if (reply.getErrorCode() != JDWPConstants.Error.NONE)
96 throw new ReplyErrorCodeException(reply.getErrorCode());
97 return reply;
203 ReplyPacket reply = setBreakpoint(breakpointLocation, suspendPolicy); local
204 checkReply(reply);
1239 ReplyPacket reply = performCommand(commandPacket); local
1296 ReplyPacket reply = performCommand(packet); local
1828 ReplyPacket reply = checkReply(performCommand(command)); local
1844 ReplyPacket reply = getThreadFrames(threadID, 0, -1); local
1901 ReplyPacket reply = performCommand(command); local
1955 ReplyPacket reply = checkReply(performCommand(command)); local
1978 ReplyPacket reply = checkReply(performCommand(command)); local
1994 ReplyPacket reply = checkReply(performCommand(command)); local
2011 ReplyPacket reply = checkReply(performCommand(command)); local
2034 ReplyPacket reply = performCommand(command); local
2068 ReplyPacket reply = checkReply(performCommand(command)); local
2102 ReplyPacket reply = checkReply(performCommand(command)); local
2141 ReplyPacket reply = checkReply(performCommand(command)); local
2174 ReplyPacket reply = checkReply(performCommand(command)); local
2190 ReplyPacket reply = checkReply(performCommand(command)); local
2206 ReplyPacket reply = checkReply(performCommand(command)); local
2246 ReplyPacket reply = checkReply(performCommand(command)); local
2262 ReplyPacket reply = checkReply(performCommand(command)); local
2300 ReplyPacket reply = getLineTable(classID, methodID); local
2338 ReplyPacket reply = getLineTable(classID, methodID); local
2516 ReplyPacket reply = checkReply(performCommand(command)); local
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Method/
JDWPMethodVariableTableTestCase.java 36 // All methods that must be checked against VariableTable[WithGeneric] reply.
310 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
311 checkReplyPacket(reply, commandName + " command");
313 int argCnt = reply.getNextValueAsInt();
315 int slots = reply.getNextValueAsInt();
329 long codeIndex = reply.getNextValueAsLong();
331 String name = reply.getNextValueAsString();
333 String signature = reply.getNextValueAsString();
337 reply.getNextValueAsString();
340 int length = reply.getNextValueAsInt()
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
InvokeMethodTest.java 71 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
72 checkReplyPacket(reply, "EventRequest::Set command");
74 int requestID = reply.getNextValueAsInt();
76 assertTrue(reply.isAllDataRead());
114 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
115 checkReplyPacket(reply, "EventRequest::Clear command");
116 assertAllDataRead(reply);
136 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
137 checkReplyPacket(reply, "ClassType::NewInstance command");
139 TaggedObject newObject = reply.getNextValueAsTaggedObject()
213 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
329 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
    [all...]
  /frameworks/base/core/java/android/os/
CommonTimeUtils.java 51 android.os.Parcel reply = android.os.Parcel.obtain(); local
57 mRemote.transact(method_code, data, reply, 0);
59 res = reply.readInt();
60 ret_val = (0 == res) ? reply.readInt() : error_ret_val;
63 reply.recycle();
72 android.os.Parcel reply = android.os.Parcel.obtain(); local
77 mRemote.transact(method_code, data, reply, 0);
79 return reply.readInt();
85 reply.recycle();
93 android.os.Parcel reply = android.os.Parcel.obtain() local
114 android.os.Parcel reply = android.os.Parcel.obtain(); local
135 android.os.Parcel reply = android.os.Parcel.obtain(); local
156 android.os.Parcel reply = android.os.Parcel.obtain(); local
177 android.os.Parcel reply = android.os.Parcel.obtain(); local
234 android.os.Parcel reply = android.os.Parcel.obtain(); local
    [all...]
  /frameworks/base/tools/preload2/src/com/android/preload/classdataretrieval/jdwp/
JDWPClassDataRetriever.java 86 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
87 if (reply.getErrorCode() != JDWPConstants.Error.NONE) {
96 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
98 if (reply.getErrorCode() != JDWPConstants.Error.NONE) {
102 int classCount = reply.getNextValueAsInt();
109 byte refTypeTag = reply.getNextValueAsByte();
110 long typeID = reply.getNextValueAsReferenceTypeID();
111 String signature = reply.getNextValueAsString();
112 /* int status = */ reply.getNextValueAsInt();
155 /* ReplyPacket reply = */ debuggeeWrapper.vmMirror.performCommand(packet)
165 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
186 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
ContactsAsyncHelper.java 115 // send the reply to the enclosing class.
116 Message reply = ContactsAsyncHelper.this.obtainMessage(msg.what); local
117 reply.arg1 = msg.arg1;
118 reply.obj = msg.obj;
119 reply.sendToTarget();
  /packages/apps/Settings/src/com/android/settings/development/qstile/
DevelopmentTiles.java 177 Parcel reply = null; local
181 reply = Parcel.obtain();
185 data, reply, 0 /* flags */);
186 layerTraceEnabled = reply.readBoolean();
193 reply.recycle();
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
JDWPTestCase.java 195 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(command); local
196 checkReplyPacket(reply, "ObjectReference::ReferenceType command");
198 reply.getNextValueAsByte();
199 long objectRefTypeID = reply.getNextValueAsReferenceTypeID();
238 * @return reply packet
274 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(command); local
275 checkReplyPacket(reply, "ReferenceType::Signature command");
276 String signature = reply.getNextValueAsString();
293 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
294 checkReplyPacket(reply, "VirtualMachine::ClassesBySignature command")
322 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
348 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
365 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
383 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
872 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
909 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
    [all...]
  /bionic/libc/kernel/uapi/linux/
atmsvc.h 47 int reply; member in struct:atmsvc_msg
  /cts/hostsidetests/devicepolicy/app/SimpleApp/src/com/android/cts/launcherapps/simpleapp/
SimpleActivityChainExit.java 76 Intent reply = new Intent(); local
77 reply.setAction(ACTIVITY_CHAIN_EXIT_ACTION);
78 sendBroadcast(reply);
  /external/adhd/cras/src/server/
cras_bt_manager.c 199 DBusMessage *reply; local
202 reply = dbus_pending_call_steal_reply(pending_call);
205 if (dbus_message_get_type(reply) == DBUS_MESSAGE_TYPE_ERROR) {
207 dbus_message_get_error_name(reply));
208 dbus_message_unref(reply);
212 if (!dbus_message_has_signature(reply, "a{oa{sa{sv}}}")) {
213 syslog(LOG_WARNING, "Bad GetManagedObjects reply received");
214 dbus_message_unref(reply);
218 dbus_message_iter_init(reply, &message_iter);
261 dbus_message_unref(reply);
    [all...]

Completed in 926 milliseconds

1 2 3 4 5 6 78 91011>>