/third_party/glib/gio/ |
D | glocalfileoutputstream.c | 213 int errsv = errno; in g_local_file_output_stream_write() local 215 if (errsv == EINTR) in g_local_file_output_stream_write() 219 g_io_error_from_errno (errsv), in g_local_file_output_stream_write() 221 g_strerror (errsv)); in g_local_file_output_stream_write() 291 int errsv = errno; in g_local_file_output_stream_writev() local 293 if (errsv == EINTR) in g_local_file_output_stream_writev() 297 g_io_error_from_errno (errsv), in g_local_file_output_stream_writev() 299 g_strerror (errsv)); in g_local_file_output_stream_writev() 330 int errsv = errno; in _g_local_file_output_stream_really_close() local 333 g_io_error_from_errno (errsv), in _g_local_file_output_stream_really_close() [all …]
|
D | gunixoutputstream.c | 343 int errsv; in g_unix_output_stream_write() local 349 errsv = errno; in g_unix_output_stream_write() 351 while (poll_ret == -1 && errsv == EINTR); in g_unix_output_stream_write() 356 g_io_error_from_errno (errsv), in g_unix_output_stream_write() 358 g_strerror (errsv)); in g_unix_output_stream_write() 369 errsv = errno; in g_unix_output_stream_write() 372 if (errsv == EINTR || errsv == EAGAIN) in g_unix_output_stream_write() 376 g_io_error_from_errno (errsv), in g_unix_output_stream_write() 378 g_strerror (errsv)); in g_unix_output_stream_write() 450 int errsv; in g_unix_output_stream_writev() local [all …]
|
D | gwin32inputstream.c | 145 int errsv = GetLastError (); in g_win32_input_stream_read() local 147 if (errsv == ERROR_IO_PENDING && in g_win32_input_stream_read() 158 errsv = GetLastError (); in g_win32_input_stream_read() 159 if (errsv == ERROR_MORE_DATA) in g_win32_input_stream_read() 168 else if (errsv == ERROR_HANDLE_EOF || in g_win32_input_stream_read() 169 errsv == ERROR_BROKEN_PIPE) in g_win32_input_stream_read() 182 emsg = g_win32_error_message (errsv); in g_win32_input_stream_read() 184 g_io_error_from_win32_error (errsv), in g_win32_input_stream_read() 213 int errsv = errno; in g_win32_input_stream_close() local 216 g_io_error_from_errno (errsv), in g_win32_input_stream_close() [all …]
|
D | gwin32outputstream.c | 146 int errsv = GetLastError (); in g_win32_output_stream_write() local 148 if (errsv == ERROR_IO_PENDING && in g_win32_output_stream_write() 159 errsv = GetLastError (); in g_win32_output_stream_write() 160 if (errsv == ERROR_HANDLE_EOF || in g_win32_output_stream_write() 161 errsv == ERROR_BROKEN_PIPE) in g_win32_output_stream_write() 169 emsg = g_win32_error_message (errsv); in g_win32_output_stream_write() 171 g_io_error_from_win32_error (errsv), in g_win32_output_stream_write() 200 int errsv = errno; in g_win32_output_stream_close() local 203 g_io_error_from_errno (errsv), in g_win32_output_stream_close() 205 g_strerror (errsv)); in g_win32_output_stream_close() [all …]
|
D | gsocket.c | 317 #define socket_set_error_lazy(err, errsv, fmt) \ argument 320 int __errsv = (errsv); \ 460 int errsv; in g_socket_details_from_fd() local 465 errsv = get_socket_errno (); in g_socket_details_from_fd() 491 errsv = get_socket_errno (); in g_socket_details_from_fd() 509 errsv = get_socket_errno (); in g_socket_details_from_fd() 514 errsv = -1; in g_socket_details_from_fd() 577 socket_io_error_from_errno (errsv), in g_socket_details_from_fd() 579 socket_strerror (errsv)); in g_socket_details_from_fd() 589 int fd, errsv; in g_socket() local [all …]
|
D | glocalfileinputstream.c | 156 int errsv = errno; in g_local_file_input_stream_read() local 158 if (errsv == EINTR) in g_local_file_input_stream_read() 162 g_io_error_from_errno (errsv), in g_local_file_input_stream_read() 164 g_strerror (errsv)); in g_local_file_input_stream_read() 190 int errsv = errno; in g_local_file_input_stream_close() local 193 g_io_error_from_errno (errsv), in g_local_file_input_stream_close() 195 g_strerror (errsv)); in g_local_file_input_stream_close() 268 int errsv = errno; in g_local_file_input_stream_seek() local 271 g_io_error_from_errno (errsv), in g_local_file_input_stream_seek() 273 g_strerror (errsv)); in g_local_file_input_stream_seek()
|
D | gunixinputstream.c | 343 int errsv; in g_unix_input_stream_read() local 349 errsv = errno; in g_unix_input_stream_read() 351 while (poll_ret == -1 && errsv == EINTR); in g_unix_input_stream_read() 356 g_io_error_from_errno (errsv), in g_unix_input_stream_read() 358 g_strerror (errsv)); in g_unix_input_stream_read() 371 int errsv = errno; in g_unix_input_stream_read() local 373 if (errsv == EINTR || errsv == EAGAIN) in g_unix_input_stream_read() 377 g_io_error_from_errno (errsv), in g_unix_input_stream_read() 379 g_strerror (errsv)); in g_unix_input_stream_read() 407 int errsv = errno; in g_unix_input_stream_close() local [all …]
|
D | glocalfile.c | 908 gint errsv) in g_set_io_error() argument 914 g_set_error (error, G_IO_ERROR, g_io_error_from_errno (errsv), in g_set_io_error() 915 msg, display_name, g_strerror (errsv)); in g_set_io_error() 977 int errsv = errno; in g_local_file_query_filesystem_info() local 981 file, errsv); in g_local_file_query_filesystem_info() 1138 int errsv; in g_local_file_set_display_name() local 1158 errsv = errno; in g_local_file_set_display_name() 1160 if (errsv != ENOENT) in g_local_file_set_display_name() 1162 g_set_io_error (error, _("Error renaming file %s: %s"), new_file, errsv); in g_local_file_set_display_name() 1175 errsv = errno; in g_local_file_set_display_name() [all …]
|
D | gunixconnection.c | 516 int errsv = errno; in g_unix_connection_receive_credentials() local 519 g_io_error_from_errno (errsv), in g_unix_connection_receive_credentials() 521 g_strerror (errsv)); in g_unix_connection_receive_credentials() 532 int errsv = errno; in g_unix_connection_receive_credentials() local 535 g_io_error_from_errno (errsv), in g_unix_connection_receive_credentials() 537 g_strerror (errsv)); in g_unix_connection_receive_credentials() 626 int errsv = errno; in g_unix_connection_receive_credentials() local 629 g_io_error_from_errno (errsv), in g_unix_connection_receive_credentials() 631 g_strerror (errsv)); in g_unix_connection_receive_credentials()
|
D | gdbusauthmechanismsha1.c | 291 int errsv = errno; in ensure_keyring_directory() local 293 if (errsv != ENOENT) in ensure_keyring_directory() 297 g_io_error_from_errno (errsv), in ensure_keyring_directory() 300 g_strerror (errsv)); in ensure_keyring_directory() 342 int errsv = errno; in ensure_keyring_directory() local 345 g_io_error_from_errno (errsv), in ensure_keyring_directory() 348 g_strerror (errsv)); in ensure_keyring_directory() 513 int errsv; in create_lock_exclusive() local 517 errsv = errno; in create_lock_exclusive() 522 g_io_error_from_errno (errsv), in create_lock_exclusive() [all …]
|
D | glocalfileinfo.c | 434 int errsv; in get_one_xattr() local 437 errsv = errno; in get_one_xattr() 442 else if (len == -1 && errsv == ERANGE) in get_one_xattr() 495 int errsv; in get_xattrs() local 509 errsv = errno; in get_xattrs() 511 if (list_res_size == -1 && errsv == ERANGE) in get_xattrs() 599 int errsv; in get_one_xattr_from_fd() local 602 errsv = errno; in get_one_xattr_from_fd() 607 else if (len == -1 && errsv == ERANGE) in get_one_xattr_from_fd() 658 int errsv; in get_xattrs_from_fd() local [all …]
|
D | gcharsetconverter.c | 252 int errsv; in g_charset_converter_convert() local 302 errsv = errno; in g_charset_converter_convert() 304 switch (errsv) in g_charset_converter_convert() 348 g_strerror (errsv)); in g_charset_converter_convert() 436 int errsv; in g_charset_converter_initable_init() local 450 errsv = errno; in g_charset_converter_initable_init() 454 if (errsv == EINVAL) in g_charset_converter_initable_init()
|
D | gopenuriportal.c | 103 int fd, fd_id, errsv; in g_openuri_portal_open_uri() local 108 errsv = errno; in g_openuri_portal_open_uri() 111 g_set_error (error, G_IO_ERROR, g_io_error_from_errno (errsv), in g_openuri_portal_open_uri() 312 int fd, fd_id, errsv; in g_openuri_portal_open_uri_async() local 319 errsv = errno; in g_openuri_portal_open_uri_async() 323 G_IO_ERROR, g_io_error_from_errno (errsv), in g_openuri_portal_open_uri_async()
|
D | gnetworkmonitornetlink.c | 97 int errsv = errno; in g_network_monitor_netlink_initable_init() local 98 g_set_error (error, G_IO_ERROR, g_io_error_from_errno (errsv), in g_network_monitor_netlink_initable_init() 100 g_strerror (errsv)); in g_network_monitor_netlink_initable_init() 109 int errsv = errno; in g_network_monitor_netlink_initable_init() local 110 g_set_error (error, G_IO_ERROR, g_io_error_from_errno (errsv), in g_network_monitor_netlink_initable_init() 112 g_strerror (errsv)); in g_network_monitor_netlink_initable_init() 128 int errsv = errno; in g_network_monitor_netlink_initable_init() local 129 g_set_error (error, G_IO_ERROR, g_io_error_from_errno (errsv), in g_network_monitor_netlink_initable_init() 131 g_strerror (errsv)); in g_network_monitor_netlink_initable_init()
|
/third_party/glib/tests/ |
D | spawn-test-win32-gui.c | 53 int errsv = errno; in WinMain() local 54 printf ("spawn-test-win32-gui: Write error: %s", strerror (errsv)); in WinMain() 69 int errsv = errno; in WinMain() local 71 printf ("spawn-test-win32-gui: Read error: %s", strerror (errsv)); in WinMain() 81 int errsv = errno; in WinMain() local 82 printf ("spawn-test-win32-gui: Write error: %s", strerror (errsv)); in WinMain()
|
D | spawn-test.c | 280 int errsv = errno; in run_tests() local 282 fprintf (stderr, "Read error: %s\n", g_strerror (errsv)); in run_tests() 291 int errsv = errno; in run_tests() local 293 fprintf (stderr, "Read error: %s\n", g_strerror (errsv)); in run_tests() 304 int errsv = errno; in run_tests() local 305 fprintf (stderr, "Write error: %s\n", g_strerror (errsv)); in run_tests() 311 int errsv = errno; in run_tests() local 313 fprintf (stderr, "Read error: %s\n", g_strerror (errsv)); in run_tests() 327 int errsv = errno; in run_tests() local 329 fprintf (stderr, "Read error: %s\n", g_strerror (errsv)); in run_tests()
|
D | timeloop.c | 25 int errsv = errno; in io_pipe() local 26 fprintf (stderr, "Cannot create pipe %s\n", g_strerror (errsv)); in io_pipe() 140 int pid, errsv; in create_child() local 148 errsv = errno; in create_child() 171 fprintf (stderr, "Cannot fork: %s\n", g_strerror (errsv)); in create_child()
|
D | timeloop-basic.c | 28 int errsv = errno; in my_pipe() local 29 fprintf (stderr, "Cannot create pipe %s\n", strerror (errsv)); in my_pipe() 125 int pid, errsv; in create_child() local 133 errsv = errno; in create_child() 155 fprintf (stderr,"Cannot fork: %s\n", strerror (errsv)); in create_child()
|
/third_party/glib/glib/ |
D | giounix.c | 197 int errsv = errno; in g_io_unix_read() local 200 switch (errsv) in g_io_unix_read() 212 g_io_channel_error_from_errno (errsv), in g_io_unix_read() 213 g_strerror (errsv)); in g_io_unix_read() 238 int errsv = errno; in g_io_unix_write() local 241 switch (errsv) in g_io_unix_write() 253 g_io_channel_error_from_errno (errsv), in g_io_unix_write() 254 g_strerror (errsv)); in g_io_unix_write() 304 int errsv = errno; in g_io_unix_seek() local 306 g_io_channel_error_from_errno (errsv), in g_io_unix_seek() [all …]
|
D | glib-unix.c | 466 int errsv = 0; in g_unix_get_passwd_entry() local 499 errsv = errno; in g_unix_get_passwd_entry() 511 errsv == ENOENT || errsv == ESRCH || in g_unix_get_passwd_entry() 512 errsv == EBADF || errsv == EPERM) in g_unix_get_passwd_entry() 515 g_unix_set_error_from_errno (&local_error, errsv); in g_unix_get_passwd_entry() 518 else if (errsv == ERANGE) in g_unix_get_passwd_entry() 523 g_unix_set_error_from_errno (&local_error, errsv); in g_unix_get_passwd_entry() 532 g_unix_set_error_from_errno (&local_error, errsv); in g_unix_get_passwd_entry() 546 errno = errsv; in g_unix_get_passwd_entry()
|
/third_party/glib/gio/tests/ |
D | gdbus-address-get-session.c | 70 int errsv = errno; in set_up_mock_xdg_runtime_dir() local 71 g_error ("g_mkdtemp_full: %s", g_strerror (errsv)); in set_up_mock_xdg_runtime_dir() 93 int errsv = errno; in tear_down_mock_xdg_runtime_dir() local 94 g_error ("g_unlink(\"%s\"): %s", mock_bus_path, g_strerror (errsv)); in tear_down_mock_xdg_runtime_dir() 99 int errsv = errno; in tear_down_mock_xdg_runtime_dir() local 100 g_error ("g_rmdir(\"%s\"): %s", tmpdir, g_strerror (errsv)); in tear_down_mock_xdg_runtime_dir()
|
D | dbus-launch.c | 42 int errsv = errno; in write_all() local 50 if (errsv == EINTR) in write_all() 53 g_error ("%s: write: %s", ME, g_strerror (errsv)); in write_all()
|
/third_party/glib/gio/inotify/ |
D | inotify-kernel.c | 146 int errsv; in ik_source_read_some_events() local 150 errsv = errno; in ik_source_read_some_events() 154 if (errsv == EINTR) in ik_source_read_some_events() 157 if (errsv == EAGAIN) in ik_source_read_some_events() 160 g_error ("inotify read(): %s", g_strerror (errsv)); in ik_source_read_some_events() 186 int errsv; in ik_source_read_all_the_events() local 190 errsv = errno; in ik_source_read_all_the_events() 192 g_error ("inotify ioctl(FIONREAD): %s", g_strerror (errsv)); in ik_source_read_all_the_events()
|
/third_party/libnl/lib/ |
D | nl.c | 107 int errsv; in nl_connect() local 121 errsv = errno; in nl_connect() 122 NL_DBG(4, "nl_connect(%p): socket() failed with %d (%s)\n", sk, errsv, in nl_connect() 123 nl_strerror_l(errsv)); in nl_connect() 124 err = -nl_syserr2nlerr(errsv); in nl_connect() 156 errsv = errno; in nl_connect() 157 if (errsv == EADDRINUSE) { in nl_connect() 162 sk, (unsigned) port, errsv, nl_strerror_l(errsv)); in nl_connect() 164 err = -nl_syserr2nlerr(errsv); in nl_connect() 174 errsv = errno; in nl_connect() [all …]
|
/third_party/glib/tests/gobject/ |
D | timeloop-closure.c | 26 int errsv = errno; in io_pipe() local 27 fprintf (stderr, "Cannot create pipe %s\n", g_strerror (errsv)); in io_pipe() 138 int pid, errsv; in create_child() local 147 errsv = errno; in create_child() 177 fprintf (stderr, "Cannot fork: %s\n", g_strerror (errsv)); in create_child()
|