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

  /frameworks/base/core/java/android/nfc/tech/
NdefFormatable.java 19 import android.nfc.ErrorCodes;
129 case ErrorCodes.SUCCESS:
131 case ErrorCodes.ERROR_IO:
133 case ErrorCodes.ERROR_INVALID_PARAM:
143 case ErrorCodes.SUCCESS:
145 case ErrorCodes.ERROR_IO:
147 case ErrorCodes.ERROR_INVALID_PARAM:
160 case ErrorCodes.SUCCESS:
162 case ErrorCodes.ERROR_IO:
164 case ErrorCodes.ERROR_INVALID_PARAM
    [all...]
Ndef.java 19 import android.nfc.ErrorCodes;
268 case ErrorCodes.ERROR_IO:
270 case ErrorCodes.ERROR_INVALID_PARAM:
310 case ErrorCodes.SUCCESS:
312 case ErrorCodes.ERROR_IO:
314 case ErrorCodes.ERROR_INVALID_PARAM:
370 case ErrorCodes.SUCCESS:
372 case ErrorCodes.ERROR_IO:
374 case ErrorCodes.ERROR_INVALID_PARAM:
BasicTagTechnology.java 19 import android.nfc.ErrorCodes;
76 if (errorCode == ErrorCodes.SUCCESS) {
99 if (errorCode != ErrorCodes.SUCCESS) {
  /frameworks/base/core/java/com/android/internal/nfc/
LlcpServiceSocket.java 21 import android.nfc.ErrorCodes;
61 case ErrorCodes.ERROR_SOCKET_CREATION:
64 case ErrorCodes.ERROR_INSUFFICIENT_RESOURCES:
107 if (ErrorCodes.isError(handle)) {
108 if (handle == ErrorCodes.ERROR_IO) {
LlcpSocket.java 21 import android.nfc.ErrorCodes;
58 case ErrorCodes.ERROR_SOCKET_CREATION:
61 case ErrorCodes.ERROR_INSUFFICIENT_RESOURCES:
64 case ErrorCodes.ERROR_SOCKET_NOT_CONNECTED:
103 if (ErrorCodes.isError(result)) {
104 if (result == ErrorCodes.ERROR_IO) {
130 if (ErrorCodes.isError(result)) {
131 if (result == ErrorCodes.ERROR_IO) {
153 if (ErrorCodes.isError(result)) {
171 if (ErrorCodes.isError(result))
    [all...]
P2pTarget.java 21 import android.nfc.ErrorCodes;
89 if (ErrorCodes.isError(result)) {
90 if (result == ErrorCodes.ERROR_IO) {
LlcpConnectionlessSocket.java 21 import android.nfc.ErrorCodes;
66 if (ErrorCodes.isError(result)) {
  /packages/apps/Nfc/src/com/android/nfc/
ErrorCodes.java 24 public class ErrorCodes {
NfcService.java 44 import android.nfc.ErrorCodes;
492 return ErrorCodes.ERROR_NOT_INITIALIZED;
516 case ErrorCodes.ERROR_BUFFER_TO_SMALL:
517 return ErrorCodes.ERROR_BUFFER_TO_SMALL;
518 case ErrorCodes.ERROR_INSUFFICIENT_RESOURCES:
519 return ErrorCodes.ERROR_INSUFFICIENT_RESOURCES;
521 return ErrorCodes.ERROR_SOCKET_CREATION;
533 return ErrorCodes.ERROR_NOT_INITIALIZED;
553 case ErrorCodes.ERROR_BUFFER_TO_SMALL:
554 return ErrorCodes.ERROR_BUFFER_TO_SMALL
    [all...]
  /frameworks/base/core/java/android/nfc/
ErrorCodes.java 26 public class ErrorCodes {

Completed in 147 milliseconds