/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/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...] |
file-test.c | 109 GError *error; local 120 error = NULL; 121 data = g_file_read_link (link1, &error); 126 error = NULL; 127 data = g_file_read_link (link2, &error); 132 error = NULL; 133 data = g_file_read_link (link3, &error); 135 g_assert_error (error, G_FILE_ERROR, G_FILE_ERROR_NOENT); 137 error = NULL; 138 data = g_file_read_link (filename, &error); 156 GError *error = NULL; local [all...] |
gio-ls.c | 32 GError *error = NULL; local 40 if (!g_option_context_parse (context, &argc, &argv, &error)) 42 g_print ("%s", error->message); 43 g_error_free (error); 77 GError *error = NULL; local 79 G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS, NULL, &error); 80 if (error) 82 g_print ("%s", error->message); 83 g_error_free (error);
|
iochannel-test.c | 21 GError *error = NULL; local 23 io = g_io_channel_new_file ("iochannel-test-outfile", "w", &error); 24 if (error) 28 error->message); 29 g_error_free (error);
|
mapping-test.c | 66 GError *error = NULL; local 69 if (!g_file_set_contents (filename, contents, length, &error)) 73 displayname, error->message); 82 GError *error = NULL; local 86 map = g_mapped_file_new (filename, writable, &error); 91 displayname, error->message); 140 GError *error = NULL; local 154 if (!g_file_get_contents (filename, &buffer, &len, &error)) 157 displayname, error->message); 170 GError *error = NULL local [all...] |
unicode-normalize.c | 22 fprintf (stderr, "Error parsing character string %s\n", input); 145 GError *error = NULL; local 159 in = g_io_channel_new_file (argv[1], "r", &error); 162 fprintf (stderr, "Cannot open %s: %s\n", argv[1], error->message); 171 if (g_io_channel_read_line_string (in, buffer, &term_pos, &error) != G_IO_STATUS_NORMAL) 200 if (error) 202 fprintf (stderr, "Error reading test file, %s\n", error->message);
|
/external/chromium/base/ |
sync_socket_win.cc | 87 DWORD error = GetLastError(); local 88 if (error != ERROR_PIPE_CONNECTED) {
|
/external/chromium/net/base/ |
host_cache.h | 24 Entry(int error, const AddressList& addrlist, base::TimeTicks expiration); 27 int error; member in struct:net::HostCache::Entry 75 // (|error|, |addrlist|) is the value to set, and |now| is the current 78 int error,
|
/external/chromium/net/proxy/ |
proxy_resolver_js_bindings.cc | 65 int error = host_resolver_->Resolve( local 67 if (error != ERR_IO_PENDING) 68 OnResolveCompletion(error); // Completed synchronously. 166 // Handler for when an error is encountered. |line_number| may be -1. 169 LOG(INFO) << "PAC-error: " << message; 171 LOG(INFO) << "PAC-error: " << "line: " << line_number << ": " << message;
|
/external/chromium/third_party/icu/source/test/cintltst/ |
stdnmtst.c | 41 UErrorCode error; local 44 error = U_ZERO_ERROR; 45 tag = ucnv_getStandardName(name, standard, &error); 47 log_err_status(error, "FAIL: could not find %s standard name for %s\n", standard, name); 71 log_err("FAIL: ucnv_getStandard(%d), error=%s\n", i, u_errorName(err)); 117 UErrorCode error; local 120 error = U_ZERO_ERROR; 121 tag = ucnv_getCanonicalName(name, standard, &error); 127 log_err_status(error, "FAIL: could not find %s canonical name for %s\n", (standard ? "\"\"" : standard), name); 197 log_err("FAIL: uenum_next(%d) == \"%s\". expected \"%s\", len=%d, error=%s\n" [all...] |
/external/chromium/third_party/zlib/contrib/minizip/ |
iowin32.c | 62 int error; member in struct:__anon3277 107 w32fiow.error = 0; 133 ((WIN32FILE_IOWIN*)stream) -> error=(int)dwErr; 157 ((WIN32FILE_IOWIN*)stream) -> error=(int)dwErr; 177 ((WIN32FILE_IOWIN*)stream) -> error=(int)dwErr; 218 ((WIN32FILE_IOWIN*)stream) -> error=(int)dwErr; 254 ret = ((WIN32FILE_IOWIN*)stream) -> error;
|
/external/clearsilver/util/ |
neo_err.h | 36 /* Predefined Error Types - These are all registered in nerr_init */ 52 int error; member in struct:_neo_err 70 #error The compiler is missing support for variable-argument macros. 76 * description: Use this method to create an error "exception" for 80 * error (from those listed above) and the printf-style 95 NERR_TYPE error, const char *fmt, ...) 109 int error, const char *fmt, ...) 113 * description: this function is used to pass an error up a level in the 114 * call chain (ie, if the error isn't handled at the 116 * of the error [all...] |
/external/dbus/bus/ |
config-loader-expat.c | 40 DBusError *error; member in struct:__anon3311 54 context->error)) 76 * throw an error. Expat 2.0 is supposed to fix this. 94 dbus_set_error (context->error, DBUS_ERROR_NO_MEMORY, NULL); 115 context->error)) 138 context->error)) 158 dbus_set_error (context->error, DBUS_ERROR_NO_MEMORY, NULL); 169 DBusError *error) 177 _DBUS_ASSERT_ERROR_IS_CLEAR (error); 181 context.error = error [all...] |
config-loader-libxml.c | 33 /* About the error handling: 34 * - setup a "structured" error handler that catches structural 36 * - assume that a libxml function returning an error code means 45 DBusError *error) 53 _DBUS_ASSERT_ERROR_IS_CLEAR (error); 65 _DBUS_MAYBE_SET_OOM (error); 73 _DBUS_SET_OOM (error); 84 _DBUS_MAYBE_SET_OOM (error); 91 _DBUS_MAYBE_SET_OOM (error); 98 error); 117 DBusError *error = arg; local [all...] |
test.c | 296 DBusError error; local 324 dbus_error_init (&error); 325 context = bus_context_new (&config_file, FALSE, -1, -1, &error); 328 _DBUS_ASSERT_ERROR_IS_SET (&error); 331 filename, error.message); 333 dbus_error_free (&error);
|
/external/dbus/test/name-test/ |
test-threads-init.c | 62 printf ("Failed: Reply is error: %s ***\n", dbus_message_get_error_name (reply)); 113 DBusError error; local 121 dbus_error_init (&error); 123 conn = dbus_bus_get (DBUS_BUS_SESSION, &error);
|
/external/dbus/test/ |
test-service.c | 31 DBusError error; local 36 dbus_error_init (&error); 38 connection = dbus_bus_get (DBUS_BUS_STARTER, &error); 42 error.message); 43 dbus_error_free (&error); 60 &error, 65 error.name, 66 error.message); 91 dbus_set_error_from_message (&error, reply); 92 printf ("Error type in reply: %s\n", error.message) 125 DBusError error; local 179 DBusError error; local 335 DBusError error; local [all...] |
test-shell-service.c | 35 DBusError error; local 47 dbus_error_init (&error); 125 DBusError error; local 132 dbus_error_init (&error); 133 connection = dbus_bus_get (DBUS_BUS_STARTER, &error); 137 error.message); 138 dbus_error_free (&error); 168 0, &error); 169 if (dbus_error_is_set (&error)) 171 fprintf (stderr, "Error %s\n", error.message) [all...] |
/external/emma/core/java12/com/vladium/util/args/ |
IOptsParser.java | 47 void error (PrintWriter out, int width); method in interface:IOptsParser.IOpts
|
/external/freetype/include/freetype/internal/ |
ftvalid.h | 59 /* return an error later when trying to load the glyph). */ 85 FT_Error error; /* error returned. 0 means success */ member in struct:FT_ValidatorRec_ 106 /* Sets the error field in a validator, then calls `longjmp' to return */ 108 /* error checks within the validation routines. */ 112 FT_Error error );
|
/external/freetype/src/autofit/ |
afglobal.c | 81 FT_Error error = AF_Err_Ok; local 93 error = FT_Select_Charmap( face, FT_ENCODING_UNICODE ); 94 if ( error ) 97 * Ignore this error; we simply use the default script. 100 error = AF_Err_Ok; 179 return error; 187 FT_Error error; local 201 error = af_face_globals_compute_script_coverage( globals ); 202 if ( error ) 210 return error; 260 FT_Error error = AF_Err_Ok; local [all...] |
/external/freetype/src/base/ |
ftgloadr.c | 73 FT_Error error; local 81 return error; 167 FT_Error error; local 179 return error; 205 FT_Error error = FT_Err_Ok; local 267 return error; 280 FT_Error error = FT_Err_Ok; local 301 return error; 363 FT_Error error; local 368 error = FT_GlyphLoader_CheckPoints( target, num_points, num_contours ) [all...] |
ftglyph.c | 62 FT_Error error = FT_Err_Ok; local 68 error = FT_Err_Invalid_Glyph_Format; 84 error = FT_Bitmap_Copy( library, &slot->bitmap, &glyph->bitmap ); 88 return error; 160 FT_Error error = FT_Err_Ok; local 169 error = FT_Err_Invalid_Glyph_Format; 174 error = FT_Outline_New( library, source->n_points, source->n_contours, 176 if ( error ) 182 return error; 202 FT_Error error; local 284 FT_Error error; local 310 FT_Error error; local 357 FT_Error error; local 426 FT_Error error = FT_Err_Ok; local 512 FT_Error error = FT_Err_Ok; local [all...] |
ftpatent.c | 32 FT_Error error; local 106 FT_UNUSED( error ); 117 FT_Error error = FT_Err_Ok; local 130 for ( i = 0; !error && tag_i != tag ; i++ ) 131 error = service->table_info( face, i, 134 if ( error || 151 FT_Error error; local
|