Lines Matching refs:reply

155      * request, this method will create a reply message to send to the server.
162 HeaderSet reply = new HeaderSet();
172 code = mListener.onAbort(request, reply);
183 * It will also send replies and receive requests until the final reply
184 * should be sent. When the final reply should be sent, this method will get
185 * the response code to use and send the reply. The
186 * <code>ServerOperation</code> object will always reply with a
187 * OBEX_HTTP_CONTINUE reply. It will only reply if further information is
228 * It will also send replies and receive requests until the final reply
229 * should be sent. When the final reply should be sent, this method will get
230 * the response code to use and send the reply. The
231 * <code>ServerOperation</code> object will always reply with a
232 * OBEX_HTTP_CONTINUE reply. It will only reply if further information is
286 * request, this method will create a reply message to send to the server
300 HeaderSet reply = new HeaderSet();
343 reply.mAuthResp = new byte[request.mAuthResp.length];
344 System.arraycopy(request.mAuthResp, 0, reply.mAuthResp, 0,
345 reply.mAuthResp.length);
359 code = mListener.onSetPath(request, reply, backup, create);
367 if (reply.nonce != null) {
369 System.arraycopy(reply.nonce, 0, mChallengeDigest, 0, 16);
376 reply.mConnectionID = null;
378 reply.mConnectionID = ObexHelper.convertToByteArray(id);
381 head = ObexHelper.createHeader(reply, false);
413 * request, this method will create a reply message to send to the server.
423 HeaderSet reply = new HeaderSet();
467 mListener.onDisconnect(request, reply);
475 reply.mConnectionID = null;
477 reply.mConnectionID = ObexHelper.convertToByteArray(id);
480 head = ObexHelper.createHeader(reply, false);
517 * request, this method will create a reply message to send to the server
531 HeaderSet reply = new HeaderSet();
584 reply.mAuthResp = new byte[request.mAuthResp.length];
585 System.arraycopy(request.mAuthResp, 0, reply.mAuthResp, 0,
586 reply.mAuthResp.length);
592 code = mListener.onConnect(request, reply);
595 if (reply.nonce != null) {
597 System.arraycopy(reply.nonce, 0, mChallengeDigest, 0, 16);
603 reply.mConnectionID = null;
605 reply.mConnectionID = ObexHelper.convertToByteArray(id);
608 head = ObexHelper.createHeader(reply, false);