/Zephyr-Core-3.4.0/lib/os/ |
D | notify.c | 24 if (notify->method.callback == NULL) { in sys_notify_validate() 30 if (notify->method.signal == NULL) { in sys_notify_validate() 53 uint32_t method = sys_notify_get_method(notify); in sys_notify_finalize() local 59 switch (method) { in sys_notify_finalize() 63 rv = notify->method.callback; in sys_notify_finalize() 66 sig = notify->method.signal; in sys_notify_finalize()
|
/Zephyr-Core-3.4.0/include/zephyr/bluetooth/mesh/ |
D | cfg_cli.h | 368 * This method can be used asynchronously by setting @p rsp and @p comp 369 * as NULL. This way the method will not wait for response and will return 386 * This method can be used asynchronously by setting @p status 387 * as NULL. This way the method will not wait for response and will 402 * This method can be used asynchronously by setting @p status and @p phase 403 * as NULL. This way the method will not wait for response and will 419 * This method can be used asynchronously by setting @p status and @p phase 420 * as NULL. This way the method will not wait for response and will 438 * This method can be used asynchronously by setting @p status 439 * as NULL. This way the method will not wait for response and will [all …]
|
D | health_cli.h | 117 * This method can be used asynchronously by setting @p test_id 118 * and ( @p faults or @p fault_count ) as NULL This way the method 122 * To process the response arguments of an async method, register 143 * This method can be used asynchronously by setting @p test_id 144 * and ( @p faults or @p fault_count ) as NULL This way the method 148 * To process the response arguments of an async method, register 183 * This method can be used asynchronously by setting @p faults 184 * or @p fault_count as NULL This way the method will not wait 187 * To process the response arguments of an async method, register 227 * This method can be used asynchronously by setting @p divisor [all …]
|
D | od_priv_proxy_cli.h | 53 * This method can be used asynchronously by setting @p val_rsp as NULL. 54 * This way the method will not wait for response and will 57 * To process the response arguments of an async method, register 69 * This method can be used asynchronously by setting @p val_rsp as NULL. 70 * This way the method will not wait for response and will 73 * To process the response arguments of an async method, register
|
D | sol_pdu_rpl_cli.h | 55 * This method can be used asynchronously by setting @p start_rsp or 56 * @p len_rsp as NULL. This way the method will not wait for response and will 59 * To process the response arguments of an async method, register
|
/Zephyr-Core-3.4.0/drivers/pm_cpu_ops/ |
D | pm_cpu_ops_psci.c | 112 const char *method; in set_conduit_method() local 114 method = DT_PROP(DT_INST(0, DT_DRV_COMPAT), method); in set_conduit_method() 116 if (!strcmp("hvc", method)) { in set_conduit_method() 119 } else if (!strcmp("smc", method)) { in set_conduit_method() 123 LOG_ERR("Invalid conduit method"); in set_conduit_method()
|
/Zephyr-Core-3.4.0/dts/bindings/pm_cpu_ops/ |
D | arm,psci-0.2.yaml | 11 method: 14 description: The method of calling the PSCI firmware.
|
/Zephyr-Core-3.4.0/tests/lib/notify/src/ |
D | main.c | 40 "accepted bad method"); in ZTEST() 72 "method corrupted"); in ZTEST() 118 notify.method.signal = NULL; in ZTEST() 134 zassert_equal(notify.method.signal, &sig, in ZTEST() 140 "method corrupted"); in ZTEST() 185 notify.method.callback = NULL; in ZTEST() 201 zassert_equal(notify.method.callback, in ZTEST() 208 "method corrupted"); in ZTEST()
|
/Zephyr-Core-3.4.0/subsys/sip_svc/ |
D | sip_svc_shell.c | 34 shell_error(sh, "ARM SiP services method %s not initialized", argv[1]); in parse_common_args() 53 shell_error(sh, "%s: register fail", ctrl->method); in cmd_reg() 56 shell_print(sh, "%s: register success: client token %08x\n", ctrl->method, c_token); in cmd_reg() 87 shell_error(sh, "%s: unregister fail (%d): client token %08x", ctrl->method, err, in cmd_unreg() 90 shell_print(sh, "%s: unregister success: client token %08x", ctrl->method, in cmd_unreg() 140 shell_error(sh, "%s: open fail (%d): client token %08x", ctrl->method, err, in cmd_open() 143 shell_print(sh, "%s: open success: client token %08x", ctrl->method, in cmd_open() 174 shell_error(sh, "%s: close fail (%d): client token %08x", ctrl->method, err, in cmd_close() 177 shell_print(sh, "%s: close success: client token %08x", ctrl->method, in cmd_close() 326 shell_error(sh, "%s: send fail: client token %08x", ctrl->method, in cmd_send() [all …]
|
/Zephyr-Core-3.4.0/subsys/net/lib/mqtt/ |
D | mqtt_os.h | 35 * @details This method is called during module initialization @ref mqtt_init. 44 * @details This is assumed to be a blocking method until the acquisition 65 /**@brief Method to get the sys tick or a wall clock in millisecond resolution. 74 /**@brief Method to get elapsed time in milliseconds since the last activity.
|
/Zephyr-Core-3.4.0/include/zephyr/drivers/pcie/ |
D | controller.h | 37 * configuration space access method (I/O port, memory mapped or custom method) 51 * configuration space access method (I/O port, memory mapped or custom method) 133 * configuration space access method, known as PCI Control Access Method (CAM) or 134 * PCIe Extended Control Access Method (ECAM). 148 * configuration space access method, known as PCI Control Access Method (CAM) or 149 * PCIe Extended Control Access Method (ECAM). 189 * configuration space access method (I/O port, memory mapped or custom method) 209 * configuration space access method (I/O port, memory mapped or custom method)
|
/Zephyr-Core-3.4.0/dts/bindings/sip_svc/ |
D | intel,agilex-socfpga-sip-smc.yaml | 12 method: 17 The method of calling the EL3 firmware.The current driver only supports
|
/Zephyr-Core-3.4.0/include/zephyr/sys/ |
D | notify.h | 21 * Flag value that overwrites the method field when the operation has 139 union method { union 149 } method; member 180 uint32_t method = notify->flags >> SYS_NOTIFY_METHOD_POS; in sys_notify_get_method() local 182 return method & SYS_NOTIFY_METHOD_MASK; in sys_notify_get_method() 195 * passed because only method bits of flags are tested against method 299 .method = { in sys_notify_init_signal() 328 .method = { in sys_notify_init_callback()
|
/Zephyr-Core-3.4.0/samples/application_development/external_lib/ |
D | README.rst | 20 Chocolatey Method 31 Manual Install Method
|
/Zephyr-Core-3.4.0/scripts/ci/ |
D | pylintrc | 42 # abstract-method 73 bad-mcs-method-argument, 103 method-hidden, 105 no-method-argument, 114 unexpected-special-method-signature, 242 deprecated-method,
|
/Zephyr-Core-3.4.0/subsys/net/lib/http/ |
D | http_parser.c | 347 {"HPE_INVALID_METHOD", "invalid HTTP method"}, 845 parser->method = HTTP_HEAD; in parser_execute() 1113 parser->method = (enum http_method) 0; in parser_execute() 1117 parser->method = HTTP_ACL; in parser_execute() 1120 parser->method = HTTP_BIND; in parser_execute() 1123 parser->method = HTTP_CONNECT; in parser_execute() 1127 parser->method = HTTP_DELETE; in parser_execute() 1130 parser->method = HTTP_GET; in parser_execute() 1133 parser->method = HTTP_HEAD; in parser_execute() 1136 parser->method = HTTP_LOCK; /* or LINK */ in parser_execute() [all …]
|
/Zephyr-Core-3.4.0/soc/arm/microchip_mec/mec172x/ |
D | Kconfig.soc | 66 JTAG port in SWD mode and ETM as tracing method. 72 JTAG port in SWD mode and SWV as tracing method.
|
/Zephyr-Core-3.4.0/tests/net/lib/coap_client/src/ |
D | main.c | 146 .method = COAP_METHOD_GET, in ZTEST() 175 .method = COAP_METHOD_GET, in ZTEST() 200 .method = COAP_METHOD_GET, in ZTEST() 229 .method = COAP_METHOD_GET, in ZTEST() 256 .method = COAP_METHOD_GET, in ZTEST() 290 .method = COAP_METHOD_GET, in ZTEST() 329 .method = COAP_METHOD_GET, in ZTEST()
|
/Zephyr-Core-3.4.0/soc/arm/microchip_mec/mec1501/ |
D | Kconfig.soc | 79 JTAG port in SWD mode and SWV as tracing method. 85 JTAG port in SWD mode and SWV as tracing method.
|
/Zephyr-Core-3.4.0/tests/arch/arm64/arm64_smc_call/ |
D | Kconfig | 5 bool "Set smc call method to hvc"
|
/Zephyr-Core-3.4.0/doc/services/device_mgmt/ |
D | ota.rst | 9 Over-the-Air (OTA) Update is a method for delivering firmware updates to remote 13 infrastructure to host the firmware binary and implement a method of signaling 18 same method can be used as part of OTA. The binary is first downloaded
|
/Zephyr-Core-3.4.0/boards/arm64/xenvm/ |
D | xenvm.dts | 39 enable-method = "psci"; 46 method = "hvc";
|
/Zephyr-Core-3.4.0/include/zephyr/ |
D | smf.h | 70 /** Optional method that will be run when this state is entered */ 73 * Optional method that will be run repeatedly during state machine 77 /** Optional method that will be run when this state exists */
|
/Zephyr-Core-3.4.0/doc/hardware/peripherals/ |
D | uart.rst | 10 on the method, different API functions are used according to below sections: 16 Polling is the most basic method to access the UART peripheral. The reading
|
/Zephyr-Core-3.4.0/samples/net/sockets/coap_client/src/ |
D | coap-client.c | 129 static int send_simple_coap_request(uint8_t method) in send_simple_coap_request() argument 145 method, coap_next_id()); in send_simple_coap_request() 160 switch (method) { in send_simple_coap_request() 204 /* Test CoAP GET method */ in send_simple_coap_msgs_and_wait_for_reply() 213 /* Test CoAP PUT method */ in send_simple_coap_msgs_and_wait_for_reply() 222 /* Test CoAP POST method*/ in send_simple_coap_msgs_and_wait_for_reply() 231 /* Test CoAP DELETE method*/ in send_simple_coap_msgs_and_wait_for_reply() 368 /* Test CoAP Large GET method */ in get_large_coap_msgs()
|