HomeSort by: relevance | last modified time | path
    Searched refs:auth_file (Results 1 - 7 of 7) sorted by relevancy

  /xsrc/external/mit/libXau/dist/
AuWrite.c 55 XauWriteAuth (FILE *auth_file, Xauth *auth)
57 if (write_short (auth->family, auth_file) == 0)
59 if (write_counted_string (auth->address_length, auth->address, auth_file) == 0)
61 if (write_counted_string (auth->number_length, auth->number, auth_file) == 0)
63 if (write_counted_string (auth->name_length, auth->name, auth_file) == 0)
65 if (write_counted_string (auth->data_length, auth->data, auth_file) == 0)
AuGetAddr.c 64 FILE *auth_file; local
73 auth_file = fopen (auth_name, "rb" FOPEN_CLOEXEC);
74 if (!auth_file)
77 entry = XauReadAuth (auth_file);
106 (void) fclose (auth_file);
AuRead.c 76 XauReadAuth (FILE *auth_file)
81 if (read_short (&local.family, auth_file) == 0) {
84 if (read_counted_string (&local.address_length, &local.address, auth_file)
88 if (read_counted_string (&local.number_length, &local.number, auth_file)
92 if (read_counted_string (&local.name_length, &local.name, auth_file) == 0) {
95 if (read_counted_string (&local.data_length, &local.data, auth_file) == 0) {
AuGetBest.c 64 FILE *auth_file; local
76 auth_file = fopen (auth_name, "rb" FOPEN_CLOEXEC);
77 if (!auth_file)
83 entry = XauReadAuth (auth_file);
132 (void) fclose (auth_file);
  /xsrc/external/mit/libICE/dist/src/
authutil.c 239 FILE *auth_file
251 if (!read_string (auth_file, &local.protocol_name))
254 if (!read_counted_string (auth_file,
258 if (!read_string (auth_file, &local.network_id))
261 if (!read_string (auth_file, &local.auth_name))
264 if (!read_counted_string (auth_file,
308 FILE *auth_file,
312 if (!write_string (auth_file, auth->protocol_name))
315 if (!write_counted_string (auth_file,
319 if (!write_string (auth_file, auth->network_id)
341 FILE *auth_file; local
    [all...]
getauth.c 136 FILE *auth_file; local
149 if (!(auth_file = fopen (filename, "rb" FOPEN_CLOEXEC)))
154 if (!(entry = IceReadAuthFileEntry (auth_file)))
180 fclose (auth_file);
  /xsrc/external/mit/xdm/dist/xdm/
auth.c 374 FILE *auth_file; local
383 ret = MakeServerAuthFile(d, &auth_file);
387 if (!auth_file) {
408 (void) fprintf (auth_file, "%s", dummy_auth);
409 (void) fflush (auth_file);
410 if (ferror (auth_file))
418 rewind(auth_file);
428 if (!XauWriteAuth (auth_file, auths[i]))
432 (void) fflush (auth_file);
433 if (ferror (auth_file))
    [all...]

Completed in 6 milliseconds