HomeSort by relevance Sort by last modified time
    Searched refs:errorString (Results 1 - 25 of 105) sorted by null

1 2 3 4 5

  /external/tinyxml/
tinyxmlerror.cpp 34 const char* TiXmlBase::errorString[ TIXML_ERROR_STRING_COUNT ] =
  /external/sfntly/cpp/src/test/tinyxml/
tinyxmlerror.cpp 34 const char* TiXmlBase::errorString[ TiXmlBase::TIXML_ERROR_STRING_COUNT ] =
  /frameworks/base/opengl/java/android/opengl/
GLException.java 36 String errorString = GLU.gluErrorString(error);
37 if ( errorString == null ) {
38 errorString = "Unknown error 0x" + Integer.toHexString(error);
40 return errorString;
  /prebuilts/go/darwin-x86/src/errors/
errors.go 10 return &errorString{text}
13 // errorString is a trivial implementation of error.
14 type errorString struct {
18 func (e *errorString) Error() string {
  /prebuilts/go/linux-x86/src/errors/
errors.go 10 return &errorString{text}
13 // errorString is a trivial implementation of error.
14 type errorString struct {
18 func (e *errorString) Error() string {
  /cts/tests/camera/libctscamera2jni/
native-camera-jni.cpp 47 char errorString[MAX_ERROR_STRING_LEN];
630 LOG_ERROR(errorString, "Get camera id list failed: ret %d", ret);
635 LOG_ERROR(errorString, "Register availability callback failed: ret %d", ret);
712 LOG_ERROR(errorString, "Cannot init image reader before closing existing one");
720 LOG_ERROR(errorString, "Create image reader. ret %d", ret);
724 LOG_ERROR(errorString, "null image reader created");
730 LOG_ERROR(errorString, "Set AImageReader listener failed. ret %d", ret);
736 LOG_ERROR(errorString, "AImageReader_getWindow failed. ret %d", ret);
740 LOG_ERROR(errorString, "Null ANW from AImageReader!");
760 LOG_ERROR(errorString, "Cannot create session before closing existing one")
    [all...]
  /external/autotest/frontend/client/src/autotest/common/
JsonRpcCallback.java 30 String errorString = getErrorString(errorObject);
37 NotifyManager.getInstance().showError(errorString, traceback);
  /cts/tests/tests/permission/src/android/permission/cts/
SuspendAppsPermissionTest.java 65 StringBuilder errorString = new StringBuilder();
70 errorString.append("No activity found for " + ACTION_SHOW_SUSPENDED_APP_DETAILS
75 errorString.append("Activity handling " + ACTION_SHOW_SUSPENDED_APP_DETAILS
81 fail(errorString.toString());
  /cts/hostsidetests/security/src/android/security/cts/
SELinuxHostTest.java 235 StringBuilder errorString = new StringBuilder();
237 errorString.append(line);
238 errorString.append("\n");
240 assertTrue(errorString.toString(), errorString.length() == 0);
317 StringBuilder errorString = new StringBuilder();
319 errorString.append(line);
320 errorString.append("\n");
323 + errorString, errorString.length() == 0)
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixException.java 60 String errorString() {
70 return errorString();
91 return new FileSystemException(file, other, errorString());
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/leanback/
Utils.java 58 * @param errorString
61 public static final void showErrorDialog(Context context, String errorString) {
63 .setMessage(errorString)
  /external/compiler-rt/test/BlocksRuntime/
testfilerunner.h 95 __strong char *errorString;
103 @property __strong char *errorString;
  /packages/apps/Test/connectivity/PMC/src/com/android/pmc/
GattServer.java 272 String errorString = "UNKNOWN_ERROR_CODE";
274 errorString = "ADVERTISE_FAILED_ALREADY_STARTED";
276 errorString = "ADVERTISE_FAILED_DATA_TOO_LARGE";
278 errorString = "ADVERTISE_FAILED_FEATURE_UNSUPPORTED";
280 errorString = "ADVERTISE_FAILED_INTERNAL_ERROR";
282 errorString = "ADVERTISE_FAILED_TOO_MANY_ADVERTISERS";
285 Log.d(TAG, "bluetooth_le_advertisement onFailure: " + errorString);
  /packages/apps/Settings/src/com/android/settings/fingerprint/
FingerprintAuthenticateSidecar.java 48 CharSequence errorString;
52 errorString = errString;
126 mAuthenticationError.errorString);
  /cts/tests/signature/api-check/src/java/android/signature/cts/api/
AbstractApiTest.java 115 StringBuilder errorString = mResultObserver.mErrorString;
117 errorString.append("\nClassLoader hierarchy\n");
119 errorString.append(" ").append(classLoader).append("\n");
122 fail(errorString.toString());
  /developers/build/prebuilts/gradle/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/util/
Gles2ColoredTriangleList.java 142 String errorString = GLU.gluErrorString(error);
143 if (errorString == null) {
144 errorString = GLUtils.getEGLErrorString(error);
147 ": " + errorString;
  /developers/samples/android/wearable/wear/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/util/
Gles2ColoredTriangleList.java 142 String errorString = GLU.gluErrorString(error);
143 if (errorString == null) {
144 errorString = GLUtils.getEGLErrorString(error);
147 ": " + errorString;
  /development/samples/browseable/WatchFace/Wearable/src/com.example.android.wearable.watchface/
Gles2ColoredTriangleList.java 142 String errorString = GLU.gluErrorString(error);
143 if (errorString == null) {
144 errorString = GLUtils.getEGLErrorString(error);
147 ": " + errorString;
  /prebuilts/go/darwin-x86/doc/progs/
error.go 37 // errorString is a trivial implementation of error.
38 type errorString struct {
42 func (e *errorString) Error() string {
50 return &errorString{text}
  /prebuilts/go/linux-x86/doc/progs/
error.go 37 // errorString is a trivial implementation of error.
38 type errorString struct {
42 func (e *errorString) Error() string {
50 return &errorString{text}
  /prebuilts/go/darwin-x86/src/runtime/
error.go 46 // An errorString represents a runtime error described by a single string.
47 type errorString string
49 func (e errorString) RuntimeError() {}
51 func (e errorString) Error() string {
56 // the prefix "runtime error: " after invoking errorString.Error().
  /prebuilts/go/linux-x86/src/runtime/
error.go 46 // An errorString represents a runtime error described by a single string.
47 type errorString string
49 func (e errorString) RuntimeError() {}
51 func (e errorString) Error() string {
56 // the prefix "runtime error: " after invoking errorString.Error().
  /frameworks/base/services/tests/servicestests/src/com/android/server/pm/
SuspendPackagesTest.java 384 final StringBuilder errorString = new StringBuilder();
386 errorString.append("Received unexpected packageNames in onPackagesSuspended:");
388 errorString.append(" " + packageName);
390 errorString.append(". ");
393 errorString.append("Received wrong user " + user.getIdentifier() + ". ");
396 errorString.append("Unexpected launcherExtras, supplied: " + suppliedExtras
400 + errorString.toString());
422 final StringBuilder errorString = new StringBuilder();
424 errorString.append("Received unexpected packageNames in onPackagesSuspended:");
426 errorString.append(" " + packageName)
    [all...]
  /external/clang/tools/libclang/
CXLoadedDiagnostic.cpp 192 CXString *errorString;
199 if (errorString)
200 *errorString = cxstring::createDup(err);
241 : SerializedDiagnosticReader(), error(e), errorString(es) {
244 if (errorString)
245 *errorString = cxstring::createEmpty();
395 CXString *errorString) {
396 DiagLoader L(error, errorString);
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
BluetoothLeAdvertiseFacade.java 582 String errorString = "UNKNOWN_ERROR_CODE";
585 errorString = "ADVERTISE_FAILED_ALREADY_STARTED";
588 errorString = "ADVERTISE_FAILED_DATA_TOO_LARGE";
591 errorString = "ADVERTISE_FAILED_FEATURE_UNSUPPORTED";
594 errorString = "ADVERTISE_FAILED_INTERNAL_ERROR";
597 errorString = "ADVERTISE_FAILED_TOO_MANY_ADVERTISERS";
600 + index + " error " + errorString);
603 mResults.putString("Error", errorString);

Completed in 435 milliseconds

1 2 3 4 5