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()
212 || (mReplyHeader.responseCode == ResponseCodes.OBEX_HTTP_CONTINUE)) { in getResponseCode()
493 if (mReplyHeader.responseCode != ResponseCodes.OBEX_HTTP_CONTINUE) { in sendRequest()
635 mReplyHeader.responseCode = ResponseCodes.OBEX_HTTP_CONTINUE; in startProcessing()
636 while ((more) && (mReplyHeader.responseCode == ResponseCodes.OBEX_HTTP_CONTINUE)) { in startProcessing()
642 if (mReplyHeader.responseCode == ResponseCodes.OBEX_HTTP_CONTINUE) { in startProcessing()
646 if (mReplyHeader.responseCode != ResponseCodes.OBEX_HTTP_CONTINUE) { in startProcessing()
655 mReplyHeader.responseCode = ResponseCodes.OBEX_HTTP_CONTINUE; in startProcessing()
656 while ((more) && (mReplyHeader.responseCode == ResponseCodes.OBEX_HTTP_CONTINUE)) { in startProcessing()
[all …]
DServerOperation.java200 sendReply(ResponseCodes.OBEX_HTTP_CONTINUE); in ServerOperation()
209 sendReply(ResponseCodes.OBEX_HTTP_CONTINUE); in ServerOperation()
217 sendReply(ResponseCodes.OBEX_HTTP_CONTINUE); in ServerOperation()
336 sendReply(ResponseCodes.OBEX_HTTP_CONTINUE); in continueOperation()
340 sendReply(ResponseCodes.OBEX_HTTP_CONTINUE); in continueOperation()
350 sendReply(ResponseCodes.OBEX_HTTP_CONTINUE); in continueOperation()
445 if(!mGetOperation && type == ResponseCodes.OBEX_HTTP_CONTINUE && in sendReply()
519 if (type == ResponseCodes.OBEX_HTTP_CONTINUE) { in sendReply()
DResponseCodes.java60 public static final int OBEX_HTTP_CONTINUE = 0x90; field in ResponseCodes
DServerSession.java213 op.sendReply(ResponseCodes.OBEX_HTTP_CONTINUE); in handlePutRequest()