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

1 23 4 5 6 7 8 91011>>

  /external/e2fsprogs/lib/et/test_cases/
heimdal2.c 30 "Database store error",
31 "Database read error",
45 "Reserved kadm error (36)",
46 "Reserved kadm error (37)",
47 "Reserved kadm error (38)",
48 "Reserved kadm error (39)",
49 "Reserved kadm error (40)",
50 "Reserved kadm error (41)",
51 "Reserved kadm error (42)",
52 "Reserved kadm error (43)"
    [all...]
  /external/bluetooth/glib/tests/gobject/
gvalue-test.c 113 gchar *error; local
116 error = NULL;
119 G_VALUE_COLLECT (value, var_args, 0, &error);
122 return error;
128 gchar *error; local
131 error = NULL;
134 G_VALUE_LCOPY (value, var_args, 0, &error);
137 return error;
144 gchar *error; local
147 error = collect (&value, 'c')
228 gchar *error; local
    [all...]
  /external/tinyxml/
tinyxmlerror.cpp 27 // The goal of the seperate error file is to make the first
29 // english error messages, but the could now be translated.
36 "No error",
37 "Error",
40 "Error parsing Element.",
42 "Error reading Element value.",
43 "Error reading Attributes.",
44 "Error: empty tag.",
45 "Error reading end tag.",
46 "Error parsing Unknown."
    [all...]
  /packages/apps/IM/src/com/android/im/imps/
AsyncTransaction.java 48 * Notify that an error occurs in the transaction.
50 * @param error the error
52 final void notifyError(ImErrorInfo error) {
53 notifyErrorResponse(new ImpsErrorInfo(error.getCode(), error.getDescription(), null));
63 ImpsErrorInfo error = ImpsUtils.checkResultError(response); local
64 if (error != null) {
65 notifyErrorResponse(error);
71 protected void notifyErrorResponse(ImpsErrorInfo error) {
    [all...]
  /external/clearsilver/man/man3/
nerr_pass_ctx.3 26 automagically recorded. Just pass the error and
30 the error is occuring.
33 this function is used to pass an error up a level in the
34 call chain (ie, if the error isn't handled at the
36 of the error.
  /external/e2fsprogs/e2fsck/
ehandler.c 28 errcode_t error)
45 error = io_channel_read_blk(channel, block,
47 if (error)
48 return error;
53 printf(_("Error reading block %lu (%s) while %s. "), block,
54 error_message(error), operation);
56 printf(_("Error reading block %lu (%s). "), block,
57 error_message(error));
59 if (ask(ctx, _("Ignore error"), 1)) {
65 return error;
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/
SDL_error.c 24 /* Simple error handling in SDL */
29 /* Routine to get the thread-specific error variable */
31 /* The SDL_arraysize(The ),default (non-thread-safe) global error variable */
53 SDL_error *error; local
55 /* Copy in the key, mark error as valid */
56 error = SDL_GetErrBuf();
57 error->error = 1;
58 SDL_strlcpy((char *)error->key, fmt, sizeof(error->key))
120 SDL_error *error; local
196 SDL_error *error; local
    [all...]
  /external/webkit/LayoutTests/fast/dom/Geolocation/resources/
permission-denied.js 6 var error; variable
11 error = e
12 shouldBe('error.code', 'error.PERMISSION_DENIED');
13 shouldBe('error.message', '"User denied Geolocation"');
permission-denied-already-error.js 1 description("Tests that when Geolocation permission has been denied prior to a call to a Geolocation method, the error callback is invoked with code PERMISSION_DENIED, when the Geolocation service encounters an error.");
7 var error; variable
12 error = e
13 shouldBe('error.code', 'error.PERMISSION_DENIED');
14 shouldBe('error.message', '"User denied Geolocation"');
28 error = e
29 shouldBe('error.code', 'error.PERMISSION_DENIED')
    [all...]
permission-denied-already-clear-watch.js 1 description("Tests that when Geolocation permission has been denied prior to a call to watchPosition, and the watch is cleared in the error callback, there is no crash. This a regression test for https://bugs.webkit.org/show_bug.cgi?id=32111.");
7 var error; variable
12 error = e
13 shouldBe('error.code', 'error.PERMISSION_DENIED');
14 shouldBe('error.message', '"User denied Geolocation"');
26 error = e
27 shouldBe('error.code', 'error.PERMISSION_DENIED');
28 shouldBe('error.message', '"User denied Geolocation"')
    [all...]
permission-denied-already-success.js 1 description("Tests that when Geolocation permission has been denied prior to a call to a Geolocation method, the error callback is invoked with code PERMISSION_DENIED, when the Geolocation service has a good position.");
7 var error; variable
12 error = e
13 shouldBe('error.code', 'error.PERMISSION_DENIED');
14 shouldBe('error.message', '"User denied Geolocation"');
26 error = e
27 shouldBe('error.code', 'error.PERMISSION_DENIED');
28 shouldBe('error.message', '"User denied Geolocation"')
    [all...]
  /system/extras/libpagemap/
pm_process.c 35 int error; local
47 error = snprintf(filename, MAX_FILENAME, "/proc/%d/pagemap", pid);
48 if (error < 0 || error >= MAX_FILENAME) {
49 error = (error < 0) ? (errno) : (-1);
51 return error;
56 error = errno;
58 return error;
61 error = read_maps(proc)
74 int error; local
100 int error; local
159 int error; local
223 int error; local
    [all...]
  /dalvik/libcore/luni/src/main/java/java/lang/
Error.java 22 * {@code Error} is the superclass of all classes that represent unrecoverable
30 public class Error extends Throwable {
35 * Constructs a new {@code Error} that includes the current stack trace.
37 public Error() {
42 * Constructs a new {@code Error} with the current stack trace and the
46 * the detail message for this error.
48 public Error(String detailMessage) {
53 * Constructs a new {@code Error} with the current stack trace, the
57 * the detail message for this error.
59 * the cause of this error
    [all...]
  /dalvik/libcore/sql/src/main/java/SQLite/
Constants.java 11 * Error code: 0
15 * Error code: 1
19 * Error code: 2
23 * Error code: 3
27 * Error code: 4
31 * Error code: 5
35 * Error code: 6
39 * Error code: 7
43 * Error code: 8
47 * Error code:
    [all...]
  /external/opencore/engines/player/include/
pv_player_events.h 21 /** C++ defintion of UUID for pvPlayer error and information event type codes */
23 /** C defintion of UUID for pvPlayer error and information event type coddes */
27 * An enumeration of error types from pvPlayer
32 pvPlayer sends this error event when the user
38 pvPlayer sends this error event when an error occurs
44 pvPlayer sends this error event for general non-fatal error
50 pvPlayer sends this error event for general fatal error fro
    [all...]
  /external/bluetooth/glib/tests/
bookmarkfile-test.c 23 GError *error = NULL; local
26 res = g_bookmark_file_load_from_file (bookmark, filename, &error);
27 if (error)
29 g_print ("Load error: %s\n", error->message);
30 g_error_free (error);
73 GError *error = NULL; local
79 text = g_bookmark_file_get_title (bookmark, NULL, &error);
80 g_assert_no_error (error);
84 text = g_bookmark_file_get_description (bookmark, NULL, &error);
    [all...]
  /external/bluetooth/glib/glib/
gerror.c 39 GError *error; local
41 error = g_slice_new (GError);
43 error->domain = domain;
44 error->code = code;
45 error->message = g_strdup_vprintf (format, args);
47 return error;
52 * @domain: error domain
53 * @code: error code
54 * @format: printf()-style format for error message
68 GError* error; local
    [all...]
  /external/dbus/bus/
driver.c 41 DBusError *error);
48 DBusError *error)
54 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
68 BUS_SET_OOM (error);
84 retval = bus_dispatch_matches (transaction, NULL, NULL, message, error);
91 BUS_SET_OOM (error);
99 DBusError *error)
103 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
111 BUS_SET_OOM (error);
121 BUS_SET_OOM (error);
    [all...]
  /external/opencore/engines/2way/test/src/
av_rec_test.cpp 25 int error = 0; local
33 OSCL_TRY(error, scheduler->StartScheduler());
34 if (error != 0)
36 OSCL_LEAVE(error);
70 int error = 0; local
79 OSCL_TRY(error, iVideoAddSinkId = terminal->AddDataSinkL(*iVideoSink, id));
80 if (error)
89 OSCL_TRY(error, iAudioAddSinkId = terminal->AddDataSinkL(*iAudioSink, id));
90 if (error)
140 int error = 0 local
483 int error = 0; local
    [all...]
a_only_pause_rec_test.cpp 25 int error = 0; local
33 OSCL_TRY(error, scheduler->StartScheduler());
34 if (error != 0)
36 OSCL_LEAVE(error);
71 int error = 0; local
80 OSCL_TRY(error, iAudioAddSinkId = terminal->AddDataSinkL(*iAudioSink, id));
81 if (error)
125 int error = 0; local
132 OSCL_TRY(error, terminal->InitRecordFileL(filename));
133 if (error)
374 int error = 0; local
    [all...]
play_from_file_test.cpp 22 int error = 0; local
39 OSCL_TRY(error, scheduler->StartScheduler());
40 if (error != 0)
42 OSCL_LEAVE(error);
76 int error = 0; local
85 OSCL_TRY(error, iVideoAddSinkId = terminal->AddDataSinkL(*iVideoSink, id));
86 if (error)
95 OSCL_TRY(error, iAudioAddSinkId = terminal->AddDataSinkL(*iAudioSink, id));
96 if (error)
146 int error = 0 local
399 int error = 0; local
    [all...]
v_only_pause_rec_test.cpp 25 int error = 0; local
33 OSCL_TRY(error, scheduler->StartScheduler());
34 if (error != 0)
36 OSCL_LEAVE(error);
71 int error = 0; local
80 OSCL_TRY(error, iVideoAddSinkId = terminal->AddDataSinkL(*iVideoSink, id));
81 if (error)
125 int error = 0; local
132 OSCL_TRY(error, terminal->InitRecordFileL(filename));
133 if (error)
373 int error = 0; local
    [all...]
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
ErrorTest.java 27 @TestTargetClass(Error.class)
31 * @tests java.lang.Error#Error()
36 method = "Error",
40 Error e = new Error();
47 * @tests java.lang.Error#Error(java.lang.String)
52 method = "Error",
56 Error e = new Error("fixture")
    [all...]
  /external/bluetooth/bluez/doc/
service-api.txt 22 Possible errors: org.bluez.Error.InvalidArguments
23 org.bluez.Error.Failed
30 Possible errors: org.bluez.Error.InvalidArguments
31 org.bluez.Error.NotAvailable
32 org.bluez.Error.Failed
41 Possible errors: org.bluez.Error.InvalidArguments
42 org.bluez.Error.NotAuthorized
43 org.bluez.Error.DoesNotExist
44 org.bluez.Error.Failed
52 Possible errors: org.bluez.Error.InvalidArgument
    [all...]
  /external/bluetooth/glib/gio/tests/
live-g-file.c 127 GError *error; local
133 error = NULL;
134 outs = g_file_replace (child, NULL, FALSE, create_flags, NULL, &error);
135 g_assert_no_error (error);
137 error = NULL;
138 res = g_output_stream_close (G_OUTPUT_STREAM (outs), NULL, &error);
148 GError *error; local
152 error = NULL;
153 res = g_file_make_directory (child, NULL, &error);
155 g_assert_no_error (error);
164 GError *error; local
181 GError *error; local
386 GError *error; local
484 GError *error; local
571 GError *error; local
651 GError *error; local
801 GError *error; local
887 GError *error; local
958 GError *error; local
1026 GError *error; local
1096 GError *error; local
    [all...]

Completed in 58 milliseconds

1 23 4 5 6 7 8 91011>>