/Zephyr-latest/subsys/net/lib/coap/ |
D | coap_server_shell.c | 23 COAP_SERVICE_FOREACH(service) { in cmd_list() 27 service->name, in cmd_list() 28 service->data->sock_fd < 0 ? "INACTIVE" : "ACTIVE", in cmd_list() 29 service->host != NULL ? service->host : "", in cmd_list() 30 *service->port); in cmd_list() 46 shell_error(sh, "Usage: start <service>"); in cmd_start() 50 COAP_SERVICE_FOREACH(service) { in cmd_start() 51 if (strcmp(argv[1], service->name) == 0) { in cmd_start() 52 ret = coap_service_start(service); in cmd_start() 58 shell_error(sh, "Failed to start service (%d)", ret); in cmd_start() [all …]
|
D | coap_server.c | 84 static int coap_service_remove_observer(const struct coap_service *service, in coap_service_remove_observer() argument 93 obs = coap_find_observer(service->data->observers, MAX_OBSERVERS, addr, token, tkl); in coap_service_remove_observer() 96 obs = coap_find_observer_by_token(service->data->observers, MAX_OBSERVERS, token, in coap_service_remove_observer() 99 obs = coap_find_observer_by_addr(service->data->observers, MAX_OBSERVERS, addr); in coap_service_remove_observer() 110 COAP_SERVICE_FOREACH_RESOURCE(service, it) { in coap_service_remove_observer() 130 struct coap_service *service = NULL; in coap_server_process() local 159 /* Find the active service */ in coap_server_process() 162 service = svc; in coap_server_process() 166 if (service == NULL) { in coap_server_process() 173 pending = coap_pending_received(&request, service->data->pending, MAX_PENDINGS); in coap_server_process() [all …]
|
/Zephyr-latest/include/zephyr/net/ |
D | socket_service.h | 3 * @brief BSD Socket service API 19 * @brief BSD socket service API 20 * @defgroup bsd_socket_service BSD socket service API 37 /** @brief The signature for a net socket service handler function. 39 * The function will be invoked by the socket service. 41 * @param pev the socket service event that provided the handler. 56 /** Service back pointer */ 61 * Main structure holding socket service configuration information. 65 * The service descriptor should be created at built time, and then used 74 * registered this service. [all …]
|
D | dns_sd.h | 2 * @brief DNS Service Discovery 23 * @brief DNS Service Discovery 26 * advertise a service, system or application code should use 32 * @defgroup dns_sd DNS Service Discovery 63 * Currently sub-types and service domains are unsupported and only the 79 * Currently sub-types and service domains are unsupported and only the 89 * @brief Register a service for DNS Service Discovery 96 * ephemeral port usage - i.e. when the service is bound using port number 0. 102 * The service can be referenced using the @p _id variable. 104 * @param _id variable name for the DNS-SD service record [all …]
|
D | coap_service.h | 8 * @brief CoAP Service API 24 * @brief CoAP Service API 25 * @defgroup coap_service CoAP service API 33 * @name CoAP Service configuration flags 38 /** Start the service on boot. */ 78 * @brief Define a static CoAP resource owned by the service named @p _service . 111 * @param _service Name of the associated service. 118 * @brief Define a CoAP service with static resources. 125 * number to use for the service. If the specified port number is zero, then an ephemeral port 129 * @param _name Name of the service. [all …]
|
/Zephyr-latest/include/zephyr/bluetooth/audio/ |
D | vocs.h | 3 * @brief Bluetooth Volume Offset Control Service (VOCS) APIs. 16 * @brief Volume Offset Control Service (VOCS) 18 * @defgroup bt_vocs Volume Offset Control Service (VOCS) 26 * The Volume Offset Control Service is a secondary service, and as such should not be used own its 27 * own, but rather in the context of another (primary) service. 45 * @name Volume Offset Control Service Error codes 60 * @name Volume Offset Control Service offset limits 69 /** @brief Opaque Volume Offset Control Service instance. */ 72 /** @brief Structure for registering a Volume Offset Control Service instance. */ 93 /** @brief Structure for discovering a Volume Offset Control Service instance. */ [all …]
|
D | aics.h | 3 * @brief Bluetooth Audio Input Control Service APIs. 16 * @brief Audio Input Control Service (AICS) 18 * @defgroup bt_aics Audio Input Control Service (AICS) 26 * The Audio Input Control Service is a secondary service, and as such should not be used on its 27 * own, but rather in the context of another (primary) service. 46 * @name Audio Input Control Service mute states 58 * @name Audio Input Control Service input modes 88 * @name Audio Input Control Service input types 110 * @name Audio Input Control Service Error codes 128 /** @brief Opaque Audio Input Control Service instance. */ [all …]
|
D | vcp.h | 42 * Defines the maximum number of Volume Offset Control service instances for the 52 * Defines the maximum number of Audio Input Control service instances for the 62 * @name Volume Control Service Error codes 75 * @name Volume Control Service Mute Values 84 /** @brief Opaque Volume Control Service instance. */ 87 /** Register structure for Volume Control Service */ 104 /** Volume Control Service callback structure. */ 109 * @brief Volume Control Service included services 111 * Used for to represent the Volume Control Service included service instances, 113 * local server instances, or remote service instances. [all …]
|
/Zephyr-latest/samples/subsys/ipc/ipc_service/multi_endpoint/ |
D | README.rst | 2 :name: IPC service: Multi-endpoint 5 Use the IPC Service with multiple endpoints. 7 This application demonstrates how to use IPC Service with multiple endpoints. 32 IPC-service HOST [INST 0 - ENDP A] demo started 33 IPC-service HOST [INST 0 - ENDP B] demo started 34 IPC-service HOST [INST 1] demo started 41 IPC-service HOST [INST 0 - ENDP A] demo ended. 43 IPC-service HOST [INST 0 - ENDP B] demo ended. 45 IPC-service HOST [INST 1] demo ended. 50 IPC-service REMOTE [INST 0 - ENDP A] demo started [all …]
|
D | sample.yaml | 2 name: IPC Service example integration (icmsg multi endpoint backend) 9 - "IPC-service HOST \\[INST 0 - ENDP A\\] demo started" 10 - "IPC-service HOST \\[INST 0 - ENDP B\\] demo started" 11 - "IPC-service HOST \\[INST 1\\] demo started" 12 - "IPC-service HOST \\[INST 0 - ENDP A\\] demo ended\\." 13 - "IPC-service HOST \\[INST 0 - ENDP B\\] demo ended\\." 14 - "IPC-service HOST \\[INST 1\\] demo ended\\."
|
/Zephyr-latest/subsys/sip_svc/ |
D | Kconfig | 1 # ARM SiP service configuration options 7 bool "ARM SiP SVC Service" 20 int "ARM SiP service init function priority" 24 int "ARM SiP service thread stack size" 27 Stack size of the ARM SiP service. 32 int "ARM SiP service thread priority" 35 Priority of the ARM SiP service. 40 int "ARM SiP service request message queue depth" 70 bool "ARM SiP SVC service shell" 73 Enable ARM SiP SVC service shell support to communicate with EL3/EL2
|
/Zephyr-latest/tests/bluetooth/tester/src/ |
D | btp.c | 56 static void tester_send_with_index(uint8_t service, uint8_t opcode, uint8_t index, 58 static void tester_rsp_with_index(uint8_t service, uint8_t opcode, uint8_t index, 61 void tester_register_command_handlers(uint8_t service, in tester_register_command_handlers() argument 65 __ASSERT_NO_MSG(service <= BTP_SERVICE_ID_MAX); in tester_register_command_handlers() 66 __ASSERT_NO_MSG(service_handler[service].handlers == NULL); in tester_register_command_handlers() 68 service_handler[service].handlers = handlers; in tester_register_command_handlers() 69 service_handler[service].num = num; in tester_register_command_handlers() 72 static const struct btp_handler *find_btp_handler(uint8_t service, uint8_t opcode) in find_btp_handler() argument 74 if ((service > BTP_SERVICE_ID_MAX) || in find_btp_handler() 75 (service_handler[service].handlers == NULL)) { in find_btp_handler() [all …]
|
/Zephyr-latest/subsys/bluetooth/audio/ |
D | Kconfig.vocs | 1 # Bluetooth Audio - Volume Offset Control Service options 8 ##################### Volume Offset Control Service ##################### 11 int "Volume Offset Control Service max instance count" 22 This hidden option enables support for Volume Control Service. 27 int "Volume Offset Control Service max output description size" 35 ##################### Volume Offset Control Service Client ##################### 38 int "Volume Offset Control Service client max instance count" 43 Control Service clients. 49 This hidden option enables support for Volume Offset Control Service.
|
D | Kconfig.aics | 1 # Bluetooth Audio - Audio Input Control Service options 9 ##################### Audio Input Control Service ##################### 12 int "Audio Input Control Service max instance count" 24 This hidden option enables support for Audio Input Control Service. 29 int "Audio Input Control Service max input description size" 37 ##################### Audio Input Control Service Client ##################### 40 int "Audio Input Control Service client max instance count" 51 This hidden option enables support for Audio Input Control Service.
|
/Zephyr-latest/modules/hal_nordic/nrfs/ |
D | Kconfig | 78 bool "Reset service" 82 bool "MRAM latency service" 86 bool "Temperature service" 96 bool "DPPI constant latency service" 101 bool "PMIC service" 105 bool "DVFS service" 110 bool "System Diagnostics service (only for development purposes)" 114 bool "Clock service" 119 bool "Global domain power request service" 124 bool "Global domain frequency scaling service"
|
/Zephyr-latest/subsys/ipc/rpmsg_service/ |
D | Kconfig | 25 bool "RPMsg service for multiple users" 29 Enables support for a service that can be shared by multiple 35 prompt "RPMsg Service mode" 52 RPMsg service. 59 created in the RPMsg Service backend module to prevent notifying 60 service users about received data from the system work queue. 63 int "Initialization priority of RPMsg service" 66 The order of RPMsg Service initialization and endpoints registration 75 The endpoints must be registered before RPMsg Service is initialized. 80 module-str = RPMsg service and backend
|
/Zephyr-latest/subsys/bluetooth/services/ |
D | Kconfig.dis | 1 # GATT Device Information service 7 bool "GATT Device Information service" 12 bool "Settings usage in Device Information Service" 15 Enable Settings usage in Device Information Service. 30 The device model inside Device Information Service. 36 The device manufacturer inside Device Information Service. 42 Enable PnP_ID characteristic in Device Information Service. 104 Enable Serial Number characteristic in Device Information Service. 110 Enable Serial Number characteristic in Device Information Service. 115 Enable Firmware Revision characteristic in Device Information Service. [all …]
|
/Zephyr-latest/tests/bluetooth/gatt/src/ |
D | main.c | 17 /* Custom Service Variables */ 67 /* Vendor Primary Service Declaration */ 80 /* Vendor Primary Service Declaration */ 102 "Test service registration failed"); in ZTEST() 108 "Test service duplicate succeeded"); in ZTEST() 123 "Test service unregister failed"); in ZTEST() 125 "Test service re-registration failed"); in ZTEST() 131 "Test service unregister failed"); in ZTEST() 134 "Test service registration failed"); in ZTEST() 142 "Test service unregister failed"); in ZTEST() [all …]
|
/Zephyr-latest/samples/subsys/ipc/ipc_service/static_vrings/ |
D | sample.yaml | 2 name: IPC Service example integration (OpenAMP static_vrings backend) 22 - "IPC-service HOST \\[INST 0 - ENDP A\\] demo started" 23 - "IPC-service HOST \\[INST 0 - ENDP B\\] demo started" 24 - "IPC-service HOST \\[INST 1\\] demo started" 25 - "IPC-service HOST \\[INST 0 - ENDP A\\] demo ended\\." 26 - "IPC-service HOST \\[INST 0 - ENDP B\\] demo ended\\." 27 - "IPC-service HOST \\[INST 1\\] demo ended\\."
|
/Zephyr-latest/include/zephyr/sys/ |
D | onoff.h | 20 * @defgroup resource_mgmt_onoff_apis On-Off Service APIs 38 * @brief Mask used to isolate bits defining the service state. 50 * @brief Value exposed by ONOFF_STATE_MASK when service is off. 55 * @brief Value exposed by ONOFF_STATE_MASK when service is on. 60 * @brief Value exposed by ONOFF_STATE_MASK when the service is in an 66 * @brief Value exposed by ONOFF_STATE_MASK when service is 72 * @brief Value exposed by ONOFF_STATE_MASK when service is 78 * @brief Value exposed by ONOFF_STATE_MASK when service is in the 91 * Functions of this type are passed to service-specific transition 99 * indicated the service shall enter an error state. [all …]
|
/Zephyr-latest/samples/subsys/ipc/ipc_service/icmsg/ |
D | sample.yaml | 2 name: IPC Service example integration (icmsg backend) 20 - "host: IPC-service HOST demo started" 25 - "host: IPC-service HOST demo ended" 39 - "host: IPC-service HOST demo started" 44 - "host: IPC-service HOST demo ended" 63 - "I: IPC-service HOST demo started" 68 - "I: IPC-service HOST demo ended" 85 - "host: IPC-service HOST demo started" 90 - "host: IPC-service HOST demo ended" 109 - "host: IPC-service HOST demo started" [all …]
|
/Zephyr-latest/samples/bluetooth/eddystone/ |
D | README.rst | 5 Export an Eddystone Configuration Service as a Bluetooth LE GATT service. 9 Application demonstrating `Eddystone Configuration Service`_ 11 The Eddystone Configuration Service runs as a GATT service on the beacon while 31 .. _Eddystone Configuration Service: https://github.com/google/eddystone/tree/master/configuration-…
|
/Zephyr-latest/include/zephyr/net/http/ |
D | service.h | 11 * @file service.h 13 * @brief HTTP service API 15 * @defgroup http_service HTTP service API 50 * is often referred to as the "path" of the URL. Every `(service, resource)` pair should be 54 * @param _service Name of the associated service. 102 * @brief Define an HTTP service without static resources. 109 * number to use for the service. If the specified port number is zero, then an ephemeral port 113 * @param _name Name of the service. 114 * @param _host IP address or hostname associated with the service. 115 * @param[inout] _port Pointer to port associated with the service. [all …]
|
/Zephyr-latest/samples/subsys/ipc/rpmsg_service/ |
D | README.rst | 1 .. zephyr:code-sample:: rpmsg-service 2 :name: RPMsg service 5 Send messages between cores using RPMsg service. 10 RPMsg Service is an abstraction created over OpenAMP that makes initialization 12 This application demonstrates how to use RPMsg Service in Zephyr. It is designed 13 to demonstrate how to integrate RPMsg Service with Zephyr both from a build 58 RPMsg Service [master] demo started 64 RPMsg Service demo ended. 72 RPMsg Service [remote] demo started 78 RPMsg Service demo ended. [all …]
|
/Zephyr-latest/include/zephyr/sip_svc/ |
D | sip_svc.h | 14 * ARM SiP service provides the capability to send the 20 * The service support multiple clients. 23 * close the channel immediately after complete. The service only 26 * The service will return the SMC/HVC return value to the client 37 * incomplete transactions being left over. The service 52 /** @brief ARM sip service callback function prototype for response after completion 62 * @brief Register a client on ARM SiP service 64 * On success, the client will be at IDLE state in the service and 65 * the service will return a token to the client. The client can then 66 * use the token to open the channel on the service and communicate [all …]
|