Lines Matching refs:reply

159      * request, this method will create a reply message to send to the server.
166 HeaderSet reply = new HeaderSet();
176 code = mListener.onAbort(request, reply);
187 * It will also send replies and receive requests until the final reply
188 * should be sent. When the final reply should be sent, this method will get
189 * the response code to use and send the reply. The
190 * <code>ServerOperation</code> object will always reply with a
191 * OBEX_HTTP_CONTINUE reply. It will only reply if further information is
222 if(V) Log.d(TAG,"Exception occured - sending OBEX_HTTP_INTERNAL_ERROR reply",e);
233 * It will also send replies and receive requests until the final reply
234 * should be sent. When the final reply should be sent, this method will get
235 * the response code to use and send the reply. The
236 * <code>ServerOperation</code> object will always reply with a
237 * OBEX_HTTP_CONTINUE reply. It will only reply if further information is
251 if(V) Log.d(TAG,"Exception occured - sending OBEX_HTTP_INTERNAL_ERROR reply",e);
292 * request, this method will create a reply message to send to the server
306 HeaderSet reply = new HeaderSet();
349 reply.mAuthResp = new byte[request.mAuthResp.length];
350 System.arraycopy(request.mAuthResp, 0, reply.mAuthResp, 0,
351 reply.mAuthResp.length);
365 code = mListener.onSetPath(request, reply, backup, create);
367 if(V) Log.d(TAG,"Exception occured - sending OBEX_HTTP_INTERNAL_ERROR reply",e);
374 if (reply.nonce != null) {
376 System.arraycopy(reply.nonce, 0, mChallengeDigest, 0, 16);
383 reply.mConnectionID = null;
385 reply.mConnectionID = ObexHelper.convertToByteArray(id);
388 head = ObexHelper.createHeader(reply, false);
420 * request, this method will create a reply message to send to the server.
430 HeaderSet reply = new HeaderSet();
474 mListener.onDisconnect(request, reply);
476 if(V) Log.d(TAG,"Exception occured - sending OBEX_HTTP_INTERNAL_ERROR reply",e);
483 reply.mConnectionID = null;
485 reply.mConnectionID = ObexHelper.convertToByteArray(id);
488 head = ObexHelper.createHeader(reply, false);
525 * request, this method will create a reply message to send to the server
539 HeaderSet reply = new HeaderSet();
607 reply.mAuthResp = new byte[request.mAuthResp.length];
608 System.arraycopy(request.mAuthResp, 0, reply.mAuthResp, 0,
609 reply.mAuthResp.length);
615 code = mListener.onConnect(request, reply);
618 if (reply.nonce != null) {
620 System.arraycopy(reply.nonce, 0, mChallengeDigest, 0, 16);
626 reply.mConnectionID = null;
628 reply.mConnectionID = ObexHelper.convertToByteArray(id);
631 head = ObexHelper.createHeader(reply, false);
640 if(V) Log.d(TAG,"Exception occured - sending OBEX_HTTP_INTERNAL_ERROR reply",e);