| /qemu/authz/ |
| A D | pamacct.c | 39 trace_qauthz_pam_check(authz, identity, pauthz->service); in qauthz_pam_is_allowed() 40 ret = pam_start(pauthz->service, in qauthz_pam_is_allowed() 64 const char *service, in qauthz_pam_prop_set_service() argument 69 g_free(pauthz->service); in qauthz_pam_prop_set_service() 70 pauthz->service = g_strdup(service); in qauthz_pam_prop_set_service() 80 return g_strdup(pauthz->service); in qauthz_pam_prop_get_service() 89 if (!pauthz->service) { in qauthz_pam_complete() 101 g_free(pauthz->service); in qauthz_pam_finalize() 121 const char *service, in qauthz_pam_new() argument 128 "service", service, in qauthz_pam_new()
|
| A D | trace-events | 18 …m_check(void *authz, const char *identity, const char *service) "AuthZ PAM %p identity=%s service=…
|
| /qemu/qga/ |
| A D | service-win32.c | 103 SC_HANDLE service; in ga_install_service() local 140 service = CreateService(manager, QGA_SERVICE_NAME, QGA_SERVICE_DISPLAY_NAME, in ga_install_service() 143 if (service == NULL) { in ga_install_service() 148 ChangeServiceConfig2(service, SERVICE_CONFIG_DESCRIPTION, &desc); in ga_install_service() 151 CloseServiceHandle(service); in ga_install_service() 165 SC_HANDLE service; in ga_uninstall_service() local 173 service = OpenService(manager, QGA_SERVICE_NAME, DELETE); in ga_uninstall_service() 174 if (service == NULL) { in ga_uninstall_service() 180 if (DeleteService(service) == FALSE) { in ga_uninstall_service() 186 CloseServiceHandle(service); in ga_uninstall_service()
|
| A D | main.c | 83 const char *service; member 105 GAService service; member 790 GAService *service = &ga_state->service; in service_ctrl_handler() local 798 SetServiceStatus(service->status_handle, &service->status); in service_ctrl_handler() 812 GAService *service = &ga_state->service; in service_main() local 817 if (service->status_handle == 0) { in service_main() 827 service->status.dwCheckPoint = 0; in service_main() 828 service->status.dwWaitHint = 0; in service_main() 842 SetServiceStatus(service->status_handle, &service->status); in service_main() 848 SetServiceStatus(service->status_handle, &service->status); in service_main() [all …]
|
| /qemu/qapi/ |
| A D | cryptodev.json | 28 # The supported service types of a crypto device. 30 # @cipher: Symmetric Key Cipher service 32 # @hash: Hash service 34 # @mac: Message Authentication Codes service 36 # @aead: Authenticated Encryption with Associated Data service 38 # @akcipher: Asymmetric Key Cipher service 83 # @service: supported service types of a crypto device 91 'service': ['QCryptodevBackendServiceType'],
|
| A D | authz.json | 97 # @service: PAM service name to use for authorization 102 'data': { 'service': 'str' } } 110 # network service that authorization object is associated with.
|
| A D | ui.json | 474 # @service: The service name of the vnc port. This may depend on the 475 # host system's service database so symbolic names should not be 486 'service': 'str', 540 # @service: The service name of the server's port. This may depends 541 # on the host system's service database so symbolic names should 572 '*service': 'str', '*auth': 'str', '*clients': ['VncClientInfo']}, 1506 # @dbus: Start a D-Bus service for the display. (Since 7.0)
|
| /qemu/pc-bios/vof/ |
| A D | ci.c | 4 uint32_t service; member 20 if (strcmp("call-method", (void *)(unsigned long)pargs->service)) { in prom_handle() 51 static int call_ci(const char *service, int nargs, int nret, ...) in call_ci() argument 57 args.service = ADDR(service); in call_ci()
|
| /qemu/backends/ |
| A D | cryptodev-hmp-cmds.c | 32 for (sl = info->service; sl; sl = sl->next) { in hmp_info_cryptodev() 33 const char *service = QCryptodevBackendServiceType_str(sl->value); in hmp_info_cryptodev() local 36 services = g_strdup(service); in hmp_info_cryptodev() 38 tmp_services = g_strjoin("|", services, service, NULL); in hmp_info_cryptodev()
|
| /qemu/scripts/ci/setup/ |
| A D | gitlab-runner.yml | 21 - name: Create a group for the gitlab-runner service 25 - name: Create a user for the gitlab-runner service 100 # The secondary runner will still run under the single gitlab-runner service 108 - name: Install the gitlab-runner service using its own functionality 113 - name: Enable the gitlab-runner service 114 service:
|
| /qemu/tests/qemu-iotests/ |
| A D | 231.out | 3 unable to get monitor info from DNS SRV with service name: ceph-mon 5 unable to get monitor info from DNS SRV with service name: ceph-mon 8 unable to get monitor info from DNS SRV with service name: ceph-mon
|
| A D | 162.out | 4 …n:{"driver": "nbd", "host": -1}': address resolution failed for -1:10809: Name or service not known
|
| /qemu/include/authz/ |
| A D | pamacct.h | 78 char *service; member 85 const char *service,
|
| /qemu/scsi/ |
| A D | trace-events | 4 pr_manager_execute(int fd, int cmd, int sa) "fd=%d cmd=0x%02x service action=0x%02x" 5 pr_manager_run(int fd, int cmd, int sa) "fd=%d cmd=0x%02x service action=0x%02x"
|
| /qemu/hw/ppc/ |
| A D | vof.c | 855 const char *service, in vof_client_handle() argument 863 cmpservice(service, nargs, nrets, (s), (a), (r)) in vof_client_handle() 923 trace_vof_error_unknown_service(service, nargs, nrets); in vof_client_handle() 934 uint32_t service; member 946 char service[64]; in vof_client_call() local 957 if (VOF_MEM_READ(be32_to_cpu(args_be.service), service, sizeof(service)) != in vof_client_call() 961 if (strnlen(service, sizeof(service)) == sizeof(service)) { in vof_client_call() 974 ret = vof_client_handle(ms, fdt, vof, service, args, nargs, rets, nret); in vof_client_call()
|
| /qemu/qga/vss-win32/ |
| A D | install.cpp | 570 SC_HANDLE service = NULL; in StopService() local 577 service = OpenService(manager, QGA_PROVIDER_NAME, SC_MANAGER_ALL_ACCESS); in StopService() 579 if (!service) { in StopService() 584 if (!(ControlService(service, SERVICE_CONTROL_STOP, NULL))) { in StopService() 590 CloseServiceHandle(service); in StopService()
|
| /qemu/ |
| A D | qemu.sasl | 15 # To use GSSAPI requires that a QEMU service principal is 32 # This file needs to be populated with the service principal that
|
| /qemu/scripts/ |
| A D | qemu-binfmt-conf.sh | 198 instead generate file for systemd-binfmt.service 218 With systemd, binfmt files are loaded by systemd-binfmt.service 267 if ! systemctl -q is-enabled systemd-binfmt.service ; then
|
| /qemu/include/standard-headers/linux/ |
| A D | virtio_crypto.h | 42 #define VIRTIO_CRYPTO_OPCODE(service, op) (((service) << 8) | (op)) argument
|
| /qemu/docs/system/ |
| A D | authz.rst | 192 "service": "qemu-vnc-tls" 222 -object authz-pam,id=authz0,service=qemu-vnc-tls 233 needs to be associated with a network service. The authorization driver object 236 The property to set in the network service will vary depending on the type of
|
| /qemu/tests/ |
| A D | dbus-vmstate-daemon.sh | 32 <!-- Holes must be punched in service configuration files for
|
| /qemu/docs/devel/testing/ |
| A D | ci-runners.rst.inc | 6 These use the same GitLab CI's service/framework already used for all 10 The architecture of GitLab's CI service allows different machines to
|
| /qemu/docs/specs/ |
| A D | fsi.rst | 13 FSI allows a service processor access to the internal buses of a host POWER 32 3. The FSI master: A controller in the platform service processor (e.g. BMC)
|
| /qemu/docs/system/s390x/ |
| A D | 3270.rst | 40 systemctl start serial-getty@3270-tty1.service
|
| /qemu/docs/tools/ |
| A D | qemu-pr-helper.rst | 28 started as a system service, and you should read the QEMU manual
|