HomeSort by relevance Sort by last modified time
    Searched refs:OBEX_HTTP_OK (Results 1 - 11 of 11) sorted by null

  /frameworks/base/obex/javax/obex/
ResponseCodes.java 65 * The value of <code>OBEX_HTTP_OK</code> is 0xA0 (160).
67 public static final int OBEX_HTTP_OK = 0xA0;
ServerRequestHandler.java 112 * <code>onConnect()</code> will always return an <code>OBEX_HTTP_OK</code>
128 return ResponseCodes.OBEX_HTTP_OK;
ServerOperation.java 342 // For Get operation: if response code is OBEX_HTTP_OK, then this is the
344 if (mGetOperation && type == ResponseCodes.OBEX_HTTP_OK) {
379 if ((finalBitSet) && (type == ResponseCodes.OBEX_HTTP_OK) && (orginalBodyLength <= 0)) {
414 mParent.sendResponse(ResponseCodes.OBEX_HTTP_OK, null);
ServerSession.java 160 int code = ResponseCodes.OBEX_HTTP_OK;
203 if (response != ResponseCodes.OBEX_HTTP_OK && !op.isAborted) {
414 int code = ResponseCodes.OBEX_HTTP_OK;
679 if ((code >= ResponseCodes.OBEX_HTTP_OK) && (code <= ResponseCodes.OBEX_HTTP_PARTIAL)) {
ClientOperation.java 149 if (mReplyHeader.responseCode != ResponseCodes.OBEX_HTTP_OK) {
ClientSession.java 121 * Byte 0: Response Code (If successful then OBEX_HTTP_OK)
128 if (returnHeaderSet.responseCode == ResponseCodes.OBEX_HTTP_OK) {
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapObexServer.java 225 return ResponseCodes.OBEX_HTTP_OK;
233 resp.responseCode = ResponseCodes.OBEX_HTTP_OK;
246 return ResponseCodes.OBEX_HTTP_OK;
296 return ResponseCodes.OBEX_HTTP_OK;
647 int pushResult = ResponseCodes.OBEX_HTTP_OK;
667 return ResponseCodes.OBEX_HTTP_OK;
671 int pushResult = ResponseCodes.OBEX_HTTP_OK;
783 return ResponseCodes.OBEX_HTTP_OK;
    [all...]
BluetoothPbapVcardManager.java 593 return ResponseCodes.OBEX_HTTP_OK;
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppObexServerSession.java 173 int obexResponse = ResponseCodes.OBEX_HTTP_OK;
256 if (pre_reject && obexResponse != ResponseCodes.OBEX_HTTP_OK) {
577 return ResponseCodes.OBEX_HTTP_OK;
583 resp.responseCode = ResponseCodes.OBEX_HTTP_OK;
BluetoothOppObexClientSession.java 435 || responseCode == ResponseCodes.OBEX_HTTP_OK) {
458 && responseCode != ResponseCodes.OBEX_HTTP_OK) {
511 if (responseCode != ResponseCodes.OBEX_HTTP_OK) {
TestActivity.java 496 return ResponseCodes.OBEX_HTTP_OK;
529 return ResponseCodes.OBEX_HTTP_OK;

Completed in 106 milliseconds