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

  /packages/apps/Nfc/src/com/android/nfc/
LlcpException.java 19 import android.nfc.ErrorCodes;
37 super(ErrorCodes.asString(error));
NfcService.java 37 import android.nfc.ErrorCodes;
    [all...]
  /packages/apps/OMA-DM/engine/javaplugin/api/com/android/omadm/plugin/
DmtBasePlugin.java 28 private int mOperationResult; // = ErrorCodes.SYNCML_DM_SUCCESS;
52 setOperationResult(ErrorCodes.SYNCML_DM_UNSUPPORTED_OPERATION);
58 setOperationResult(ErrorCodes.SYNCML_DM_UNSUPPORTED_OPERATION);
64 setOperationResult(ErrorCodes.SYNCML_DM_UNSUPPORTED_OPERATION);
70 return setOperationResult(ErrorCodes.SYNCML_DM_UNSUPPORTED_OPERATION);
75 return setOperationResult(ErrorCodes.SYNCML_DM_UNSUPPORTED_OPERATION);
80 return setOperationResult(ErrorCodes.SYNCML_DM_UNSUPPORTED_OPERATION);
85 return setOperationResult(ErrorCodes.SYNCML_DM_UNSUPPORTED_OPERATION);
90 return setOperationResult(ErrorCodes.SYNCML_DM_UNSUPPORTED_OPERATION);
95 return setOperationResult(ErrorCodes.SYNCML_DM_UNSUPPORTED_OPERATION)
    [all...]
DmtManagementObject.java 61 * @return {@link ErrorCodes#SYNCML_DM_SUCCESS} in success case otherwise an error.
65 return ErrorCodes.SYNCML_DM_INVALID_PARAMETER;
74 return ErrorCodes.SYNCML_DM_INVALID_URI;
82 if (retcode != ErrorCodes.SYNCML_DM_SUCCESS) {
87 if (retcode != ErrorCodes.SYNCML_DM_SUCCESS) {
93 return ErrorCodes.SYNCML_DM_SUCCESS;
100 * @return {@link ErrorCodes#SYNCML_DM_SUCCESS} in success case otherwise an error.
109 return ErrorCodes.SYNCML_DM_INVALID_URI;
113 return ErrorCodes.SYNCML_DM_INVALID_URI;
119 return node.isLeaf() ? ErrorCodes.SYNCML_DM_ENTRY_EXIS
    [all...]
DmtException.java 30 code = ErrorCodes.SYNCML_DM_FAIL;
41 code = ErrorCodes.SYNCML_DM_FAIL;
48 * href="ErrorCodes.html">ErrorCodes</A>. 0 means unspecified.
ErrorCodes.java 19 public interface ErrorCodes {
DmtData.java 289 throw new DmtException(ErrorCodes.SYNCML_DM_INVALID_PARAMETER,
302 throw new DmtException(ErrorCodes.SYNCML_DM_INVALID_PARAMETER,
315 throw new DmtException(ErrorCodes.SYNCML_DM_INVALID_PARAMETER,
329 throw new DmtException(ErrorCodes.SYNCML_DM_INVALID_PARAMETER,
337 throw new DmtException(ErrorCodes.SYNCML_DM_INVALID_PARAMETER,
350 throw new DmtException(ErrorCodes.SYNCML_DM_INVALID_PARAMETER,
363 throw new DmtException(ErrorCodes.SYNCML_DM_INVALID_PARAMETER,
  /frameworks/base/core/java/android/nfc/tech/
NdefFormatable.java 19 import android.nfc.ErrorCodes;
128 case ErrorCodes.SUCCESS:
130 case ErrorCodes.ERROR_IO:
132 case ErrorCodes.ERROR_INVALID_PARAM:
147 case ErrorCodes.SUCCESS:
149 case ErrorCodes.ERROR_IO:
151 case ErrorCodes.ERROR_INVALID_PARAM:
163 case ErrorCodes.SUCCESS:
165 case ErrorCodes.ERROR_IO:
167 case ErrorCodes.ERROR_INVALID_PARAM
    [all...]
Ndef.java 19 import android.nfc.ErrorCodes;
317 case ErrorCodes.SUCCESS:
319 case ErrorCodes.ERROR_IO:
321 case ErrorCodes.ERROR_INVALID_PARAM:
385 case ErrorCodes.SUCCESS:
387 case ErrorCodes.ERROR_IO:
389 case ErrorCodes.ERROR_INVALID_PARAM:
BasicTagTechnology.java 19 import android.nfc.ErrorCodes;
76 if (errorCode == ErrorCodes.SUCCESS) {
80 } else if (errorCode == ErrorCodes.ERROR_NOT_SUPPORTED) {
103 if (errorCode != ErrorCodes.SUCCESS) {
IsoDep.java 19 import android.nfc.ErrorCodes;
95 if (err != ErrorCodes.SUCCESS) {
NfcA.java 19 import android.nfc.ErrorCodes;
148 if (err != ErrorCodes.SUCCESS) {
NfcF.java 19 import android.nfc.ErrorCodes;
147 if (err != ErrorCodes.SUCCESS) {
MifareUltralight.java 19 import android.nfc.ErrorCodes;
244 if (err != ErrorCodes.SUCCESS) {
MifareClassic.java 19 import android.nfc.ErrorCodes;
604 if (err != ErrorCodes.SUCCESS) {
  /packages/apps/OMA-DM/plugins/pluginhelper/com/android/omadm/pluginhelper/
DmtMoBuilder.java 26 import com.android.omadm.plugin.ErrorCodes;
61 * @return {@link ErrorCodes#SYNCML_DM_SUCCESS} in success case otherwise an error.
66 return ErrorCodes.SYNCML_DM_INVALID_PARAMETER;
77 return ErrorCodes.SYNCML_DM_INVALID_URI;
85 if (retcode != ErrorCodes.SYNCML_DM_SUCCESS) {
90 if (retcode != ErrorCodes.SYNCML_DM_SUCCESS) {
96 return ErrorCodes.SYNCML_DM_SUCCESS;
104 * @return {@link ErrorCodes#SYNCML_DM_SUCCESS} on success; otherwise, an error code.
116 * @return {@link ErrorCodes#SYNCML_DM_SUCCESS} on success; otherwise, an error code.
128 * @return {@link ErrorCodes#SYNCML_DM_SUCCESS} on success; otherwise, an error code
    [all...]
  /packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
NativeNfcManager.java 20 import android.nfc.ErrorCodes;
128 Log.d(TAG, "failed to create llcp socket: " + ErrorCodes.asString(error));
131 case ErrorCodes.ERROR_BUFFER_TO_SMALL:
132 case ErrorCodes.ERROR_INSUFFICIENT_RESOURCES:
135 throw new LlcpException(ErrorCodes.ERROR_SOCKET_CREATION);
152 Log.d(TAG, "failed to create llcp socket: " + ErrorCodes.asString(error));
155 case ErrorCodes.ERROR_BUFFER_TO_SMALL:
156 case ErrorCodes.ERROR_INSUFFICIENT_RESOURCES:
159 throw new LlcpException(ErrorCodes.ERROR_SOCKET_CREATION);
176 Log.d(TAG, "failed to create llcp socket: " + ErrorCodes.asString(error))
    [all...]
  /packages/apps/Nfc/nxp/src/com/android/nfc/dhimpl/
NativeNfcManager.java 26 import android.nfc.ErrorCodes;
187 Log.d(TAG, "failed to create llcp socket: " + ErrorCodes.asString(error));
190 case ErrorCodes.ERROR_BUFFER_TO_SMALL:
191 case ErrorCodes.ERROR_INSUFFICIENT_RESOURCES:
194 throw new LlcpException(ErrorCodes.ERROR_SOCKET_CREATION);
211 Log.d(TAG, "failed to create llcp socket: " + ErrorCodes.asString(error));
214 case ErrorCodes.ERROR_BUFFER_TO_SMALL:
215 case ErrorCodes.ERROR_INSUFFICIENT_RESOURCES:
218 throw new LlcpException(ErrorCodes.ERROR_SOCKET_CREATION);
235 Log.d(TAG, "failed to create llcp socket: " + ErrorCodes.asString(error))
    [all...]
  /packages/apps/OMA-DM/engine/javaplugin/api/com/android/omadm/plugin/impl/
DmtPluginManager.java 32 import com.android.omadm.plugin.ErrorCodes;
150 * @return {@link ErrorCodes#SYNCML_DM_SUCCESS} on success, error code on failure.
199 * @return {@link ErrorCodes#SYNCML_DM_SUCCESS} on success, error code on failure.
206 return ErrorCodes.SYNCML_DM_FAIL;
213 return ErrorCodes.SYNCML_DM_FAIL;
221 * @return {@link ErrorCodes#SYNCML_DM_SUCCESS} on success, error code on failure.
228 return ErrorCodes.SYNCML_DM_FAIL;
235 return ErrorCodes.SYNCML_DM_FAIL;
265 * @return {@link ErrorCodes#SYNCML_DM_SUCCESS} on success, error code on failure.
272 return ErrorCodes.SYNCML_DM_FAIL
    [all...]
  /frameworks/base/core/java/android/nfc/
ErrorCodes.java 26 public class ErrorCodes {
  /packages/apps/OMA-DM/plugins/devplugin/com/android/omadm/plugin/dev/
DevPlugin.java 37 import com.android.omadm.plugin.ErrorCodes;
80 ErrorCodes.SYNCML_DM_FAIL :
81 ErrorCodes.SYNCML_DM_SUCCESS);
326 setOperationResult(ErrorCodes.SYNCML_DM_UNSUPPORTED_OPERATION);
330 ErrorCodes.SYNCML_DM_UNSUPPORTED_OPERATION :
331 ErrorCodes.SYNCML_DM_SUCCESS);
344 return setOperationResult(ErrorCodes.SYNCML_DM_UNSUPPORTED_OPERATION);
355 return setOperationResult(ErrorCodes.SYNCML_DM_SUCCESS);
358 return setOperationResult(ErrorCodes.SYNCML_DM_FAIL);
362 return setOperationResult(ErrorCodes.SYNCML_DM_FAIL)
    [all...]
  /packages/apps/OMA-DM/plugins/diagmon/com/android/omadm/plugin/diagmon/
DiagmonPlugin.java 29 import com.android.omadm.plugin.ErrorCodes;
100 setOperationResult(ErrorCodes.SYNCML_DM_SUCCESS);
134 setOperationResult(ErrorCodes.SYNCML_DM_SUCCESS);
149 setOperationResult(ErrorCodes.SYNCML_DM_SUCCESS);
168 setOperationResult(ErrorCodes.SYNCML_DM_SUCCESS);
170 setOperationResult(ErrorCodes.SYNCML_DM_FAIL);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/interface/
neteq.h 90 enum ErrorCodes {
  /frameworks/base/docs/html/
gms_navtree_data.js     [all...]

Completed in 391 milliseconds