Home
last modified time | relevance | path

Searched refs:OBEX_HTTP_CONTINUE (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/obex/javax/obex/
DClientOperation.java176 if ((mOperationDone) && (mReplyHeader.responseCode != ResponseCodes.OBEX_HTTP_CONTINUE)) { in abort()
181 if ((!mOperationDone) && (mReplyHeader.responseCode == ResponseCodes.OBEX_HTTP_CONTINUE)) { in abort()
211 || (mReplyHeader.responseCode == ResponseCodes.OBEX_HTTP_CONTINUE)) { in getResponseCode()
493 if (mReplyHeader.responseCode != ResponseCodes.OBEX_HTTP_CONTINUE) { in sendRequest()
636 mReplyHeader.responseCode = ResponseCodes.OBEX_HTTP_CONTINUE; in startProcessing()
638 ResponseCodes.OBEX_HTTP_CONTINUE)) { in startProcessing()
644 if (mReplyHeader.responseCode == ResponseCodes.OBEX_HTTP_CONTINUE) { in startProcessing()
648 if (mReplyHeader.responseCode != ResponseCodes.OBEX_HTTP_CONTINUE) { in startProcessing()
666 mReplyHeader.responseCode = ResponseCodes.OBEX_HTTP_CONTINUE; in startProcessing()
667 while ((more) && (mReplyHeader.responseCode == ResponseCodes.OBEX_HTTP_CONTINUE)) { in startProcessing()
[all …]
DServerOperation.java205 sendReply(ResponseCodes.OBEX_HTTP_CONTINUE); in ServerOperation()
219 sendReply(ResponseCodes.OBEX_HTTP_CONTINUE); in ServerOperation()
227 sendReply(ResponseCodes.OBEX_HTTP_CONTINUE); in ServerOperation()
346 sendReply(ResponseCodes.OBEX_HTTP_CONTINUE); in continueOperation()
350 sendReply(ResponseCodes.OBEX_HTTP_CONTINUE); in continueOperation()
360 sendReply(ResponseCodes.OBEX_HTTP_CONTINUE); in continueOperation()
455 if(!mGetOperation && type == ResponseCodes.OBEX_HTTP_CONTINUE && in sendReply()
529 if (type == ResponseCodes.OBEX_HTTP_CONTINUE) { in sendReply()
DResponseCodes.java60 public static final int OBEX_HTTP_CONTINUE = 0x90; field in ResponseCodes
DServerSession.java212 op.sendReply(ResponseCodes.OBEX_HTTP_CONTINUE); in handlePutRequest()