Searched refs:OBEX_HTTP_OK (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/obex/javax/obex/
H A DResponseCodes.java65 * The value of <code>OBEX_HTTP_OK</code> is 0xA0 (160).
67 public static final int OBEX_HTTP_OK = 0xA0; field in class:ResponseCodes
H A DServerRequestHandler.java112 * <code>onConnect()</code> will always return an <code>OBEX_HTTP_OK</code>
128 return ResponseCodes.OBEX_HTTP_OK;
H A DServerOperation.java344 // For Get operation: if response code is OBEX_HTTP_OK, then this is the
346 if (mGetOperation && type == ResponseCodes.OBEX_HTTP_OK) {
389 if ((finalBitSet) && (type == ResponseCodes.OBEX_HTTP_OK) && (orginalBodyLength <= 0)) {
425 mParent.sendResponse(ResponseCodes.OBEX_HTTP_OK, null);
H A DServerSession.java160 int code = ResponseCodes.OBEX_HTTP_OK;
203 if (response != ResponseCodes.OBEX_HTTP_OK && !op.isAborted) {
418 int code = ResponseCodes.OBEX_HTTP_OK;
683 if ((code >= ResponseCodes.OBEX_HTTP_OK) && (code <= ResponseCodes.OBEX_HTTP_PARTIAL)) {
H A DClientSession.java121 * Byte 0: Response Code (If successful then OBEX_HTTP_OK)
128 if (returnHeaderSet.responseCode == ResponseCodes.OBEX_HTTP_OK) {
H A DClientOperation.java156 if (mReplyHeader.responseCode != ResponseCodes.OBEX_HTTP_OK) {

Completed in 88 milliseconds