HomeSort by relevance Sort by last modified time
    Searched refs:OBEX_HTTP_OK (Results 1 - 19 of 19) 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 344 // 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);
ServerSession.java 160 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)) {
ClientSession.java 121 * Byte 0: Response Code (If successful then OBEX_HTTP_OK)
128 if (returnHeaderSet.responseCode == ResponseCodes.OBEX_HTTP_OK) {
ClientOperation.java 169 if (mReplyHeader.responseCode != ResponseCodes.OBEX_HTTP_OK) {
  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/
BluetoothMnsObexServer.java 69 return ResponseCodes.OBEX_HTTP_OK;
112 return ResponseCodes.OBEX_HTTP_OK;
BluetoothMasObexClientSession.java 119 if (headerset.getResponseCode() == ResponseCodes.OBEX_HTTP_OK) {
BluetoothMasRequest.java 151 return (mResponseCode == ResponseCodes.OBEX_HTTP_OK);
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapObexServer.java 287 return ResponseCodes.OBEX_HTTP_OK;
295 resp.responseCode = ResponseCodes.OBEX_HTTP_OK;
309 return ResponseCodes.OBEX_HTTP_OK;
373 return ResponseCodes.OBEX_HTTP_OK;
409 return ResponseCodes.OBEX_HTTP_OK;
517 return ResponseCodes.OBEX_HTTP_OK;
531 return ResponseCodes.OBEX_HTTP_OK;
575 return ResponseCodes.OBEX_HTTP_OK;
618 return ResponseCodes.OBEX_HTTP_OK;
710 return ResponseCodes.OBEX_HTTP_OK;
    [all...]
BluetoothMnsObexClient.java 360 if (responseCode != ResponseCodes.OBEX_HTTP_OK) {
BluetoothMapContentObserver.java 389 return ResponseCodes.OBEX_HTTP_OK;
    [all...]
  /frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/
BluetoothPbapRequest.java 56 return (mResponseCode == ResponseCodes.OBEX_HTTP_OK);
BluetoothPbapObexSession.java 209 if (hs.getResponseCode() != ResponseCodes.OBEX_HTTP_OK) {
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapObexServer.java 222 return ResponseCodes.OBEX_HTTP_OK;
230 resp.responseCode = ResponseCodes.OBEX_HTTP_OK;
244 return ResponseCodes.OBEX_HTTP_OK;
302 return ResponseCodes.OBEX_HTTP_OK;
690 int pushResult = ResponseCodes.OBEX_HTTP_OK;
710 return ResponseCodes.OBEX_HTTP_OK;
714 int pushResult = ResponseCodes.OBEX_HTTP_OK;
826 return ResponseCodes.OBEX_HTTP_OK;
    [all...]
BluetoothPbapVcardManager.java 640 return ResponseCodes.OBEX_HTTP_OK;
    [all...]
  /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) {
578 return ResponseCodes.OBEX_HTTP_OK;
584 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 659 milliseconds