Searched refs:response (Results 1 - 6 of 6) sorted by relevance

/systemd/src/journal-remote/
H A Djournal-gatewayd.c463 struct MHD_Response *response; local
500 response = MHD_create_response_from_callback(MHD_SIZE_UNKNOWN, 4*1024, request_reader_entries, m, NULL);
501 if (!response)
504 MHD_add_response_header(response, "Content-Type", mime_types[m->mode]);
506 r = MHD_queue_response(connection, MHD_HTTP_OK, response);
507 MHD_destroy_response(response);
621 struct MHD_Response *response; local
639 response = MHD_create_response_from_callback(MHD_SIZE_UNKNOWN, 4*1024, request_reader_fields, m, NULL);
640 if (!response)
643 MHD_add_response_header(response, "Conten
656 struct MHD_Response *response; local
685 struct MHD_Response *response; local
749 struct MHD_Response *response; local
[all...]
H A Dmicrohttpd-util.c54 struct MHD_Response *response; local
59 response = MHD_create_response_from_buffer(size, buffer, mode);
60 if (!response)
63 log_debug("Queing response %u: %s", code, buffer);
64 MHD_add_response_header(response, "Content-Type", "text/plain");
65 r = MHD_queue_response(connection, code, response);
66 MHD_destroy_response(response);
/systemd/src/udev/ata_id/
H A Data_id.c69 .response = (uintptr_t) sense,
150 .response = (uintptr_t) sense,
226 .response = (uintptr_t) sense,
/systemd/src/udev/scsi_id/
H A Dscsi_serial.c170 (unsigned char *)(uintptr_t)hp->response,
307 return scsi_dump_sense(udev, dev_scsi, (unsigned char *)(uintptr_t)io->response,
341 io_v4.response = (uintptr_t)sense;
/systemd/src/core/
H A Dexecute.c656 static int ask_for_confirmation(char *response, char **argv) { argument
668 r = ask_char(response, "yns", "Execute %s? [Yes, No, Skip] ", line);
1508 char response; local
1510 r = ask_for_confirmation(&response, argv);
1512 write_confirm_message("Confirmation question timed out, assuming positive response.\n");
1514 write_confirm_message("Couldn't ask confirmation question, assuming positive response: %s\n", strerror(-r));
1515 else if (response == 's') {
1519 } else if (response == 'n') {
/systemd/src/systemctl/
H A Dsystemctl.c5949 char response; local
5951 r = ask_char(&response, "yn", "\"%s\" already exists. Overwrite with \"%s\"? [(y)es, (n)o] ", tmp_new_path, fragment_path);
5956 if (response != 'y') {

Completed in 46 milliseconds