HomeSort by relevance Sort by last modified time
    Searched full:errstring (Results 1 - 25 of 55) sorted by null

1 2 3

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
dynload_next.c 43 const char *errString;
61 errString = "Can't create object file image";
64 errString = NULL;
67 errString = "Inappropriate file type for dynamic loading";
70 errString = "Wrong CPU type in object file";
73 errString = "Can't read object file (no access)";
76 if (errString == NULL) {
85 errString = errBuf;
88 if (errString != NULL) {
89 PyErr_SetString(PyExc_ImportError, errString);
    [all...]
  /external/python/cpython2/Python/
dynload_next.c 43 const char *errString;
61 errString = "Can't create object file image";
64 errString = NULL;
67 errString = "Inappropriate file type for dynamic loading";
70 errString = "Wrong CPU type in object file";
73 errString = "Can't read object file (no access)";
76 if (errString == NULL) {
85 errString = errBuf;
88 if (errString != NULL) {
89 PyErr_SetString(PyExc_ImportError, errString);
    [all...]
  /external/python/cpython3/Python/
dynload_next.c 40 const char *errString;
58 errString = "Can't create object file image";
61 errString = NULL;
64 errString = "Inappropriate file type for dynamic loading";
67 errString = "Wrong CPU type in object file";
70 errString = "Can't read object file (no access)";
73 if (errString == NULL) {
82 errString = errBuf;
85 if (errString != NULL) {
86 PyErr_SetString(PyExc_ImportError, errString);
    [all...]
  /packages/apps/Settings/src/com/android/settings/fingerprint/
FingerprintRemoveSidecar.java 45 CharSequence errString;
46 public RemovalError(Fingerprint fingerprint, int errMsgId, CharSequence errString) {
49 this.errString = errString;
66 public void onRemovalError(Fingerprint fp, int errMsgId, CharSequence errString) {
68 mListener.onRemovalError(fp, errMsgId, errString);
70 mFingerprintsRemoved.add(new RemovalError(fp, errMsgId, errString));
110 listener.onRemovalError(e.fingerprint, e.errMsgId, e.errString);
119 void onRemovalError(Fingerprint fp, int errMsgId, CharSequence errString);
FingerprintAuthenticateSidecar.java 42 void onAuthenticationError(int errMsgId, CharSequence errString);
50 public AuthenticationError(int errMsgId, CharSequence errString) {
52 errorString = errString;
82 public void onAuthenticationError(int errMsgId, CharSequence errString) {
85 mListener.onAuthenticationError(errMsgId, errString);
87 mAuthenticationError = new AuthenticationError(errMsgId, errString);
FingerprintEnrollSidecar.java 86 CharSequence errString;
87 public QueuedEnrollmentError(int errMsgId, CharSequence errString) {
89 this.errString = errString;
94 listener.onEnrollmentError(errMsgId, errString);
206 public void onEnrollmentError(int errMsgId, CharSequence errString) {
208 mListener.onEnrollmentError(errMsgId, errString);
210 mQueuedEvents.add(new QueuedEnrollmentError(errMsgId, errString));
230 void onEnrollmentError(int errMsgId, CharSequence errString);
FingerprintUiHelper.java 81 public void onAuthenticationError(int errMsgId, CharSequence errString) {
86 showError(errString);
  /external/autotest/client/cros/cellular/wardmodem/
state_machine.py 184 def _raise_setup_error(self, errstring):
188 @param errstring: The error string.
191 errstring = self._tag_with_name(errstring)
192 self._logger.error(errstring)
193 raise wme.WardModemSetupException(errstring)
196 def _raise_runtime_error(self, errstring):
200 @param errstring: The error string.
203 errstring = self._tag_with_name(errstring)
    [all...]
global_state.py 151 def _setup_error(self, errstring):
155 @param errstring: The error string.
158 self._logger.error(errstring)
159 raise wme.WardModemSetupException(errstring)
162 def _runtime_error(self, errstring):
166 @param errstring: The error string.
169 self._logger.error(errstring)
170 raise wme.StateMachineException(errstring)
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/security/
BiometricPromptBoundKeysTest.java 46 public void onAuthenticationError(int errMsgId, CharSequence errString) {
47 showToast(errString.toString());
  /external/ltp/testcases/kernel/sched/tool/
time-schedule.c 61 #define ERRSTRING strerror(errno)
115 fprintf(stderr, "Error creating pipe\t%s\n", ERRSTRING);
165 ERRSTRING);
169 fprintf(stderr, "Error locking pages\t%s\n", ERRSTRING);
179 fprintf(stderr, "Error creating pipe\t%s\n", ERRSTRING);
297 fprintf(stderr, "Error forking\t%s\n", ERRSTRING);
323 ERRSTRING);
336 fprintf(stderr, "Error forking\t%s\n", ERRSTRING);
350 ERRSTRING);
405 ERRSTRING);
    [all...]
  /developers/build/prebuilts/gradle/FingerprintDialog/kotlinApp/app/src/main/java/com/example/android/fingerprintdialog/
FingerprintUiHelper.kt 68 override fun onAuthenticationError(errMsgId: Int, errString: CharSequence) {
70 showError(errString)
  /developers/samples/android/security/FingerprintDialog/kotlinApp/app/src/main/java/com/example/android/fingerprintdialog/
FingerprintUiHelper.kt 68 override fun onAuthenticationError(errMsgId: Int, errString: CharSequence) {
70 showError(errString)
  /developers/build/prebuilts/gradle/AsymmetricFingerprintDialog/Application/src/main/java/com/example/android/asymmetricfingerprintdialog/
FingerprintUiHelper.java 103 public void onAuthenticationError(int errMsgId, CharSequence errString) {
105 showError(errString);
  /developers/build/prebuilts/gradle/FingerprintDialog/Application/src/main/java/com/example/android/fingerprintdialog/
FingerprintUiHelper.java 80 public void onAuthenticationError(int errMsgId, CharSequence errString) {
82 showError(errString);
  /developers/samples/android/security/AsymmetricFingerprintDialog/Application/src/main/java/com/example/android/asymmetricfingerprintdialog/
FingerprintUiHelper.java 103 public void onAuthenticationError(int errMsgId, CharSequence errString) {
105 showError(errString);
  /developers/samples/android/security/FingerprintDialog/Application/src/main/java/com/example/android/fingerprintdialog/
FingerprintUiHelper.java 80 public void onAuthenticationError(int errMsgId, CharSequence errString) {
82 showError(errString);
  /development/samples/browseable/AsymmetricFingerprintDialog/src/com.example.android.asymmetricfingerprintdialog/
FingerprintUiHelper.java 103 public void onAuthenticationError(int errMsgId, CharSequence errString) {
105 showError(errString);
  /development/samples/browseable/FingerprintDialog/src/com.example.android.fingerprintdialog/
FingerprintUiHelper.java 80 public void onAuthenticationError(int errMsgId, CharSequence errString) {
82 showError(errString);
  /device/google/marlin/telephony/ims/src/org/codeaurora/ims/internal/
IQtiImsExtListener.aidl 67 * @param errString contains error string if any.
70 void onUTReqFailed(int errCode, String errString);
  /frameworks/support/navigation/safe-args-gradle-plugin/src/main/kotlin/androidx/navigation/safeargs/gradle/
ArgumentsGenerationTask.kt 101 val errString = errors.joinToString("\n") { it.toClickableText() }
104 "Following errors found: \n$errString")
  /platform_testing/tests/functional/devicehealthchecks/src/com/android/devicehealthchecks/
SensorsBootCheck.java 93 private boolean isSensorMissing(String featureString, int sensorType, StringBuilder errString) {
100 errString.append("Cannot find sensor type " + sensorType + " even though " +
  /platform_testing/tests/functional/devicehealthtests/src/com/android/devicehealth/tests/
SensorsBootCheck.java 93 private boolean isSensorMissing(String featureString, int sensorType, StringBuilder errString) {
100 errString.append("Cannot find sensor type " + sensorType + " even though " +
  /device/google/marlin/telephony/ims/src/org/codeaurora/ims/
QtiImsExtListenerBaseImpl.java 49 public void onUTReqFailed(int errCode, String errString) {
  /frameworks/support/compat/src/main/java/androidx/core/hardware/fingerprint/
FingerprintManagerCompat.java 165 public void onAuthenticationError(int errMsgId, CharSequence errString) {
166 callback.onAuthenticationError(errMsgId, errString);
269 * @param errString A human-readable error string that can be shown in UI
271 public void onAuthenticationError(int errMsgId, CharSequence errString) { }

Completed in 1428 milliseconds

1 2 3