OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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)) {
412
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
;
656
int pushResult = ResponseCodes.
OBEX_HTTP_OK
;
676
return ResponseCodes.
OBEX_HTTP_OK
;
683
int pushResult = ResponseCodes.
OBEX_HTTP_OK
;
[
all
...]
BluetoothPbapVcardManager.java
491
return ResponseCodes.
OBEX_HTTP_OK
;
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppObexServerSession.java
173
int obexResponse = ResponseCodes.
OBEX_HTTP_OK
;
242
if (pre_reject && obexResponse != ResponseCodes.
OBEX_HTTP_OK
) {
532
return ResponseCodes.
OBEX_HTTP_OK
;
538
resp.responseCode = ResponseCodes.
OBEX_HTTP_OK
;
BluetoothOppObexClientSession.java
423
|| responseCode == ResponseCodes.
OBEX_HTTP_OK
) {
446
&& responseCode != ResponseCodes.
OBEX_HTTP_OK
) {
498
if (responseCode != ResponseCodes.
OBEX_HTTP_OK
) {
TestActivity.java
498
return ResponseCodes.
OBEX_HTTP_OK
;
531
return ResponseCodes.
OBEX_HTTP_OK
;
Completed in 26 milliseconds