HomeSort by relevance Sort by last modified time
    Searched defs:reply (Results 101 - 125 of 352) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/wpa_supplicant_8/src/radius/
radius_das.c 41 struct radius_msg *reply; local
124 reply = radius_msg_new(error ? RADIUS_CODE_DISCONNECT_NAK :
126 if (reply == NULL)
130 if (!radius_msg_add_attr_int32(reply, RADIUS_ATTR_ERROR_CAUSE,
132 radius_msg_free(reply);
137 return reply;
156 struct radius_msg *msg, *reply = NULL; local
221 reply = radius_das_disconnect(das, msg, abuf, from_port);
225 reply = radius_msg_new(RADIUS_CODE_COA_NAK,
227 if (reply == NULL
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_handlers_wps.c 36 DBusMessage **reply)
46 *reply = wpas_dbus_error_invalid_args(message,
57 *reply = wpas_dbus_error_invalid_args(message, val);
67 DBusMessage **reply)
77 *reply = wpas_dbus_error_invalid_args(message,
89 *reply = wpas_dbus_error_invalid_args(message, val);
99 DBusMessage **reply)
110 *reply = wpas_dbus_error_invalid_args(
119 *reply = wpas_dbus_error_invalid_args(message,
130 DBusMessage **reply)
226 DBusMessage *reply = NULL; local
    [all...]
dbus_new_introspect.c 251 DBusMessage *reply; local
270 reply = dbus_message_new_method_return(message);
271 if (reply) {
273 dbus_message_append_args(reply, DBUS_TYPE_STRING, &intro_str,
278 return reply;
  /frameworks/av/camera/
ICameraService.cpp 51 static bool readExceptionCode(Parcel& reply) {
52 int32_t exceptionCode = reply.readExceptionCode();
98 Parcel data, reply; local
100 remote()->transact(BnCameraService::GET_NUMBER_OF_CAMERAS, data, &reply);
102 if (readExceptionCode(reply)) return 0;
103 return reply.readInt32();
109 Parcel data, reply; local
112 remote()->transact(BnCameraService::GET_CAMERA_INFO, data, &reply);
114 if (readExceptionCode(reply)) return -EPROTO;
115 status_t result = reply.readInt32()
126 Parcel data, reply; local
152 Parcel data, reply; local
174 Parcel data, reply; local
199 Parcel data, reply; local
217 Parcel data, reply; local
228 Parcel data, reply; local
    [all...]
  /frameworks/av/media/libmedia/
IAudioTrack.cpp 57 Parcel data, reply; local
60 status_t status = remote()->transact(GET_CBLK, data, &reply);
62 cblk = interface_cast<IMemory>(reply.readStrongBinder());
69 Parcel data, reply; local
71 status_t status = remote()->transact(START, data, &reply);
73 status = reply.readInt32();
82 Parcel data, reply; local
84 remote()->transact(STOP, data, &reply);
89 Parcel data, reply; local
91 remote()->transact(FLUSH, data, &reply);
96 Parcel data, reply; local
103 Parcel data, reply; local
116 Parcel data, reply; local
132 Parcel data, reply; local
146 Parcel data, reply; local
162 Parcel data, reply; local
173 Parcel data, reply; local
188 Parcel data, reply; local
    [all...]
ICrypto.cpp 44 Parcel data, reply; local
46 remote()->transact(INIT_CHECK, data, &reply);
48 return reply.readInt32();
52 Parcel data, reply; local
55 remote()->transact(IS_CRYPTO_SUPPORTED, data, &reply);
57 return reply.readInt32() != 0;
62 Parcel data, reply; local
71 remote()->transact(CREATE_PLUGIN, data, &reply);
73 return reply.readInt32();
77 Parcel data, reply; local
86 Parcel data, reply; local
103 Parcel data, reply; local
    [all...]
IHDCP.cpp 46 Parcel data, reply; local
54 remote()->transact(OBSERVER_NOTIFY, data, &reply, IBinder::FLAG_ONEWAY);
66 Parcel data, reply; local
69 remote()->transact(HDCP_SET_OBSERVER, data, &reply);
70 return reply.readInt32();
74 Parcel data, reply; local
78 remote()->transact(HDCP_INIT_ASYNC, data, &reply);
79 return reply.readInt32();
83 Parcel data, reply; local
85 remote()->transact(HDCP_SHUTDOWN_ASYNC, data, &reply);
90 Parcel data, reply; local
99 Parcel data, reply; local
124 Parcel data, reply; local
149 Parcel data, reply; local
    [all...]
IMediaMetadataRetriever.cpp 81 Parcel data, reply; local
83 remote()->transact(DISCONNECT, data, &reply);
89 Parcel data, reply; local
104 remote()->transact(SET_DATA_SOURCE_URL, data, &reply);
105 return reply.readInt32();
110 Parcel data, reply; local
115 remote()->transact(SET_DATA_SOURCE_FD, data, &reply);
116 return reply.readInt32();
122 Parcel data, reply; local
129 remote()->transact(GET_FRAME_AT_TIME, data, &reply);
139 Parcel data, reply; local
154 Parcel data, reply; local
    [all...]
IStreamSource.cpp 56 Parcel data, reply; local
59 remote()->transact(SET_LISTENER, data, &reply);
63 Parcel data, reply; local
69 remote()->transact(SET_BUFFERS, data, &reply);
73 Parcel data, reply; local
77 ON_BUFFER_AVAILABLE, data, &reply, IBinder::FLAG_ONEWAY);
81 Parcel data, reply; local
83 remote()->transact(FLAGS, data, &reply);
85 return reply.readInt32();
92 uint32_t code, const Parcel &data, Parcel *reply, uint32_t flags)
146 Parcel data, reply; local
156 Parcel data, reply; local
    [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
HTTPLiveSource.cpp 124 status_t NuPlayer::HTTPLiveSource::getTrackInfo(Parcel *reply) const {
125 return mLiveSession->getTrackInfo(reply);
250 sp<AMessage> reply; local
251 CHECK(msg->findMessage("reply", &reply));
257 notify->setMessage("reply", reply);
  /frameworks/base/core/java/android/os/storage/
IMountServiceListener.java 61 public boolean onTransact(int code, Parcel data, Parcel reply, int flags)
65 reply.writeString(DESCRIPTOR);
73 reply.writeNoException();
85 reply.writeNoException();
89 return super.onTransact(code, data, reply, flags);
IMountShutdownObserver.java 60 public boolean onTransact(int code, Parcel data, Parcel reply, int flags)
64 reply.writeString(DESCRIPTOR);
72 reply.writeNoException();
76 return super.onTransact(code, data, reply, flags);
IObbActionListener.java 61 public boolean onTransact(int code, Parcel data, Parcel reply, int flags)
65 reply.writeString(DESCRIPTOR);
77 reply.writeNoException();
81 return super.onTransact(code, data, reply, flags);
IMountService.java     [all...]
  /frameworks/native/cmds/service/
service.cpp 47 Parcel data, reply; local
48 status_t err = service->transact(IBinder::INTERFACE_TRANSACTION, data, &reply);
50 return reply.readString16();
133 Parcel data, reply; local
248 service->transact(code, data, &reply);
249 aout << "Result: " << reply << endl;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
atmsvc.h 26 int reply; /* for okay and close: */ member in struct:atmsvc_msg
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
atmsvc.h 26 int reply; /* for okay and close: */ member in struct:atmsvc_msg
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
atmsvc.h 26 int reply; /* for okay and close: */ member in struct:atmsvc_msg
  /frameworks/base/core/java/android/os/
CommonClock.java 325 protected boolean onTransact(int code, Parcel data, Parcel reply, int flags)
338 return super.onTransact(code, data, reply, flags);
352 android.os.Parcel reply = android.os.Parcel.obtain(); local
358 mRemote.transact(METHOD_REGISTER_LISTENER, data, reply, 0);
359 success = (0 == reply.readInt());
365 reply.recycle();
384 android.os.Parcel reply = android.os.Parcel.obtain(); local
389 mRemote.transact(METHOD_UNREGISTER_LISTENER, data, reply, 0);
393 reply.recycle();
CommonTimeConfig.java 361 android.os.Parcel reply = android.os.Parcel.obtain(); local
365 mRemote.transact(METHOD_FORCE_NETWORKLESS_MASTER_MODE, data, reply, 0);
367 return reply.readInt();
373 reply.recycle();
  /packages/apps/Calendar/src/com/android/calendar/
AsyncQueryServiceHelper.java 342 Message reply = args.handler.obtainMessage(args.token); local
343 reply.obj = args;
344 reply.arg1 = args.op;
348 + reply.what);
351 reply.sendToTarget();
  /libcore/luni/src/main/java/java/net/
PlainSocketImpl.java 343 Socks4Message reply = socksReadReply(); local
344 if (reply.getCommandOrResult() != Socks4Message.RETURN_SUCCESS) {
345 throw new IOException(reply.getErrorString(reply.getCommandOrResult()));
353 Socks4Message reply = socksReadReply(); local
354 if (reply.getCommandOrResult() != Socks4Message.RETURN_SUCCESS) {
355 throw new IOException(reply.getErrorString(reply.getCommandOrResult()));
402 Socks4Message reply = socksReadReply(); local
404 if (reply.getCommandOrResult() != Socks4Message.RETURN_SUCCESS)
440 Socks4Message reply = new Socks4Message(); local
    [all...]
  /art/jdwpspy/
Net.cpp 477 bool reply; local
484 reply = true;
487 reply = false;
495 if (!reply) {
507 if (!reply) {
514 printf("%s REPLY dataLen=%-5u id=0x%08x flags=0x%02x err=%d (%s) [%02d:%02d]\n",
  /dalvik/vm/
Ddm.cpp 33 * Returns "true" if we have a reply. The reply buffer is newly allocated,
36 * TODO: we currently assume that the request and reply include a single
121 ALOGV("DDM reply: type=0x%08x data=%p offset=%d length=%d",
127 ALOGW("WARNING: chunk off=%d len=%d exceeds reply array len %d",
132 u1* reply; local
133 reply = (u1*) malloc(length + kChunkHdrLen);
134 if (reply == NULL) {
138 set4BE(reply + 0, type);
139 set4BE(reply + 4, length)
    [all...]
  /external/chromium/chrome/browser/automation/
testing_automation_provider_chromeos.cc 92 AutomationJSONReply* reply = static_cast<AutomationJSONReply*>(user_data); local
95 reply->SendError("Unable to get release track.");
96 delete reply;
114 reply->SendSuccess(return_value.get());
115 delete reply;
120 AutomationJSONReply* reply = static_cast<AutomationJSONReply*>(user_data); local
122 reply->SendSuccess(NULL);
124 reply->SendError(error_msg);
125 delete reply;
132 AutomationJSONReply reply(this, reply_message)
488 AutomationJSONReply* reply = new AutomationJSONReply(this, reply_message); local
499 AutomationJSONReply* reply = new AutomationJSONReply(this, reply_message); local
    [all...]

Completed in 1161 milliseconds

1 2 3 45 6 7 8 91011>>