Searched defs:noncefile (Results 1 - 6 of 6) sorted by relevance

/external/dbus/dbus/
H A Ddbus-transport-win.c59 const char *noncefile = dbus_address_entry_get_value (entry, "noncefile"); local
76 *transport_p = _dbus_transport_new_for_tcp_socket (host, port, family, noncefile, error);
H A Ddbus-nonce.c134 _dbus_accept_with_noncefile (int listen_fd, const DBusNonceFile *noncefile) argument
139 _dbus_assert (noncefile != NULL);
142 if (_dbus_read_nonce (_dbus_noncefile_get_path(noncefile), &nonce, NULL) != TRUE)
184 * @param noncefile the noncefile location to read the nonce from
190 _dbus_send_nonce (int fd, const DBusString *noncefile, DBusError *error) argument
199 if (_dbus_string_get_length (noncefile) == 0)
208 read_result = _dbus_read_nonce (noncefile, &nonce, error);
234 do_noncefile_create (DBusNonceFile *noncefile, argument
243 _dbus_assert (noncefile);
329 _dbus_noncefile_create(DBusNonceFile *noncefile, DBusError *error) argument
343 _dbus_noncefile_delete(DBusNonceFile *noncefile, DBusError *error) argument
364 _dbus_noncefile_create(DBusNonceFile *noncefile, DBusError *error) argument
378 _dbus_noncefile_delete(DBusNonceFile *noncefile, DBusError *error) argument
398 _dbus_noncefile_get_path(const DBusNonceFile *noncefile) argument
415 _dbus_noncefile_check_nonce(int fd, const DBusNonceFile *noncefile, DBusError* error) argument
[all...]
H A Ddbus-server-socket.c57 DBusNonceFile *noncefile; /**< Nonce file used to authenticate clients */ member in struct:DBusServerSocket
78 if (socket_server->noncefile)
79 _dbus_noncefile_delete (socket_server->noncefile, NULL);
80 dbus_free (socket_server->noncefile);
192 if (socket_server->noncefile)
193 client_fd = _dbus_accept_with_noncefile (listen_fd, socket_server->noncefile);
281 DBusNonceFile *noncefile)
291 socket_server->noncefile = noncefile;
347 if (socket_server->noncefile)
278 _dbus_server_new_for_socket(int *fds, int n_fds, const DBusString *address, DBusNonceFile *noncefile) argument
404 DBusNonceFile *noncefile; local
[all...]
H A Ddbus-transport-socket.c1308 const char *noncefile,
1326 if (!_dbus_string_append (&address, noncefile ? "nonce-tcp:" : "tcp:"))
1342 if (noncefile != NULL &&
1343 (!_dbus_string_append (&address, "noncefile=") ||
1344 !_dbus_string_append (&address, noncefile)))
1347 fd = _dbus_connect_tcp_socket_with_nonce (host, port, family, noncefile, error);
1403 const char *noncefile = dbus_address_entry_get_value (entry, "noncefile"); local
1405 if ((isNonceTcp == TRUE) != (noncefile != NULL)) {
1406 _dbus_set_bad_address (error, method, "noncefile", NUL
1305 _dbus_transport_new_for_tcp_socket(const char *host, const char *port, const char *family, const char *noncefile, DBusError *error) argument
[all...]
H A Ddbus-sysdeps-unix.c1189 const char *noncefile,
1269 if (noncefile != NULL)
1273 _dbus_string_init_const (&noncefileStr, noncefile);
1186 _dbus_connect_tcp_socket_with_nonce(const char *host, const char *port, const char *family, const char *noncefile, DBusError *error) argument
H A Ddbus-sysdeps-win.c1259 const char *noncefile,
1339 if (noncefile != NULL)
1344 !_dbus_string_append(&noncefileStr, noncefile))
1256 _dbus_connect_tcp_socket_with_nonce(const char *host, const char *port, const char *family, const char *noncefile, DBusError *error) argument

Completed in 83 milliseconds