HomeSort by relevance Sort by last modified time
    Searched full:error (Results 676 - 700 of 11596) sorted by null

<<21222324252627282930>>

  /ndk/build/platforms/android-8/arch-x86/usr/include/linux/
spinlock_api_smp.h 16 #error "please don't include this file directly"
spinlock_types_up.h 16 #error "please don't include this file directly"
  /packages/apps/IM/src/com/android/im/
IChatListener.aidl 32 * This method is called when an error is found to send a message in the ChatSession.
34 void onSendMessageError(IChatSession ses, in Message msg, in ImErrorInfo error);
52 * This method is called when an error is found to invite a contact to join
55 void onInviteError(IChatSession ses, in ImErrorInfo error);
  /system/extras/tests/bionic/libc/other/
test_system.c 16 fprintf(stderr, "Error calling system(): %d\n", errno);
  /system/extras/tests/bionic/libstdc++/
test_csignal.cpp 31 #error "Wrong header file included!!"
43 #error "raise must not be a macro"
47 #error "SIGABRT must be a macro"
51 #error "SIGILL must be a macro"
  /dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
UnImplNode.java 59 * Throw an error.
61 * @param msg Message Key for the error
63 public void error(String msg) method in class:UnImplNode
66 System.out.println("DOM ERROR! class: " + this.getClass().getName());
72 * Throw an error.
74 * @param msg Message Key for the error
75 * @param args Array of arguments to be used in the error message
77 public void error(String msg, Object[] args) method in class:UnImplNode
80 System.out.println("DOM ERROR! class: " + this.getClass().getName());
82 throw new RuntimeException(XMLMessages.createXMLMessage(msg, args)); //"UnImplNode error: "+msg)
    [all...]
  /external/bluetooth/glib/tests/
uri-test.c 59 { "c:\\windows", NULL, NULL, G_CONVERT_ERROR_NOT_ABSOLUTE_PATH}, /* it's important to get this error on Unix */
180 GError *error; local
184 error = NULL;
187 &error);
198 if (error == NULL)
200 g_print ("\ng_filename_to_uri() test %d failed, returned NULL, but didn't set error\n", i);
203 else if (error->domain != G_CONVERT_ERROR)
205 g_print ("\ng_filename_to_uri() test %d failed, returned NULL, set non G_CONVERT_ERROR error\n", i);
208 else if (error->code != to_uri_tests[i].expected_error)
211 i, error->code, to_uri_tests[i].expected_error)
234 GError *error; local
356 GError *error; local
    [all...]
run-collate-tests.sh 29 fail "unexpected error when using g_utf8_collate() on $I"
32 fail "unexpected error when using g_utf8_collate_key() on $I"
35 fail "unexpected error when using g_utf8_collate_key_for_filename() on $I"
  /dalvik/libcore/luni/src/test/java/tests/api/java/io/
SerializationStressTest1.java 275 // What happens if dumping causes an error and you try to reload ?
305 // What happens if dumping causes an error and you try to reload ?
329 // What happens if dumping causes an error (NonSerializable inst var) and
341 // What happens if dumping causes an error (which is not serializable) and
394 } catch (Error err) {
395 System.out.println("Error when obj = " + objToSave);
426 } catch (Error err) {
427 System.out.println("Error when obj = " + objToSave);
460 } catch (Error err) {
461 System.out.println("Error when obj = " + objToSave)
    [all...]
  /external/opencore/android/
playerdriver.cpp 139 #error "CONSIDER_CODE already defined!!"
171 // Map a PV status code to a message type (error/info/nop)
184 // Map a PV status to an error/info code.
186 // @return the corresponding android error/info code.
193 // Takes advantage that both error and info codes are mapped to the
614 int error = 0; local
617 OSCL_TRY(error, mPlayer->QueryInterface(PVMI_CAPABILITY_AND_CONFIG_PVUUID,
619 OSCL_FIRST_CATCH_ANY(error, commandFailed(command));
658 int error = 0; local
664 OSCL_TRY(error, mPlayerCapConfig->setParametersSync(NULL, &iKVPSetAsync, 1, iErrorKVP))
687 int error = 0; local
729 int error = 0; local
739 int error = 0; local
772 int error = 0; local
820 int error = 0; local
847 int error=0; local
872 int error = 0; local
914 int error = 0; local
977 int error = 0; local
989 int error = 0; local
996 int error = 0; local
1021 int error = 0; local
1029 int error = 0; local
1037 int error = 0; local
1045 int error = 0; local
1077 int error; local
    [all...]
  /build/core/
java_library.mk 7 $(error $(LOCAL_PATH): Host java libraries must use BUILD_HOST_JAVA_LIBRARY)
14 $(error $(LOCAL_PATH): Target java libraries may not set LOCAL_ASSET_DIR)
18 $(error $(LOCAL_PATH): Target java libraries may not set LOCAL_RESOURCE_DIR)
  /cts/tools/dx-tests/src/dxc/junit/opcodes/athrow/jm/
T_athrow_8.j 28 .throws java/lang/Error
32 new java/lang/Error
34 invokespecial java/lang/Error/<init>()V
  /dalvik/dx/tests/023-code-exception-table/
expected.txt 16 0008: utf8{"java/lang/Error"}
18 000a: type{java.lang.Error}
44 0000..0002 -> 0002 java.lang.Error
  /dalvik/libcore/luni/src/main/java/java/io/
IOException.java 21 * Signals a general, I/O-related error. Error details may be specified when
23 * this class for more specific error situations, such as
  /dalvik/libcore/luni/src/main/java/java/lang/
VirtualMachineError.java 22 * {@code VirtualMachineError} is the superclass of all error classes that occur
25 * @see Error
27 public abstract class VirtualMachineError extends Error {
  /dalvik/libcore/xml/src/main/java/javax/xml/parsers/
ParserConfigurationException.java 24 * Indicates a serious configuration error.
43 * the <code>String</code> specified as an error message.
45 * @param msg The error message for the exception.
  /development/host/windows/usb/api/
adb_legacy_interface.cpp 60 // Preserve error accross handle close
61 ULONG error = ok ? NO_ERROR : GetLastError(); local
65 if (NO_ERROR != error) {
66 SetLastError(error);
134 // Preserve error accross CloseHandle
135 ULONG error = ret ? NO_ERROR : GetLastError(); local
139 if (NO_ERROR != error) {
140 SetLastError(error);
200 // Preserve error accross CloseHandle
201 ULONG error = ret ? NO_ERROR : GetLastError(); local
    [all...]
  /external/bison/lib/
xalloc-die.c 28 #include "error.h"
37 error (exit_failure, 0, "%s", _("memory exhausted"));
39 /* The `noreturn' cannot be given to error, since it may return if
  /external/bluetooth/glib/gio/
gioerror.h 24 #error "Only <gio/gio.h> can be included directly."
38 * Error domain for GIO. Errors in this domain will be from the #GIOErrorEnum enumeration.
39 * See #GError for more information on error domains.
  /external/bluetooth/glib/gio/tests/
data-output-stream.c 37 GError *error = NULL; local
61 res = g_data_output_stream_put_string (G_DATA_OUTPUT_STREAM (stream), s, NULL, &error);
63 g_assert_no_error (error);
141 GError *error = NULL; local
187 res = g_data_output_stream_put_byte (G_DATA_OUTPUT_STREAM (stream), TEST_DATA_RETYPE_BUFF (data_type, ((guchar*)buffer + pos)), NULL, &error);
190 res = g_data_output_stream_put_int16 (G_DATA_OUTPUT_STREAM (stream), TEST_DATA_RETYPE_BUFF (data_type, ((guchar*)buffer + pos)), NULL, &error);
193 res = g_data_output_stream_put_uint16 (G_DATA_OUTPUT_STREAM (stream), TEST_DATA_RETYPE_BUFF (data_type, ((guchar*)buffer + pos)), NULL, &error);
196 res = g_data_output_stream_put_int32 (G_DATA_OUTPUT_STREAM (stream), TEST_DATA_RETYPE_BUFF (data_type, ((guchar*)buffer + pos)), NULL, &error);
199 res = g_data_output_stream_put_uint32 (G_DATA_OUTPUT_STREAM (stream), TEST_DATA_RETYPE_BUFF (data_type, ((guchar*)buffer + pos)), NULL, &error);
202 res = g_data_output_stream_put_int64 (G_DATA_OUTPUT_STREAM (stream), TEST_DATA_RETYPE_BUFF (data_type, ((guchar*)buffer + pos)), NULL, &error);
    [all...]
  /external/bluetooth/glib/glib/
gregex.h 23 #error "Only <glib.h> can be included directly."
42 /* These are the error codes from PCRE + 100 */
132 GError **error);
158 GError **error);
169 GError **error);
185 GError **error);
194 GError **error);
201 GError **error);
209 GError **error);
212 GError **error);
    [all...]
gshell.h 22 #error "Only <glib.h> can be included directly."
47 GError **error);
51 GError **error);
  /external/clearsilver/python/
static.py 27 cgi.error ("No PATH_TRANSLATED var")
37 cgi.error ("No Content var specified in HDF file %s" % hdf_file)
47 cgi.error (s)
  /external/dbus/dbus/
dbus-uuidgen.h 24 #error "You can't include dbus-uuidgen.h in the public header dbus.h"
38 DBusError *error);
41 DBusError *error);
  /external/dropbear/libtommath/
bn_mp_init_multi.c 29 /* Oops - error! Back-track and mp_clear what we already
30 succeeded in init-ing, then return error.
52 return res; /* Assumed ok, if error flagged above. */

Completed in 183 milliseconds

<<21222324252627282930>>