Searched refs:struct (Results 126 – 150 of 232) sorted by relevance
12345678910
/Zephyr-latest/doc/services/debugging/ |
D | coredump.rst | 29 thread, its thread struct, and some other bare minimal data to support 33 * ``DEBUG_COREDUMP_MEMORY_DUMP_THREADS``: Dumps the thread struct and stack of all 276 whenever the header struct is modified. This allows parser to 345 whenever the header struct is modified. This allows parser to 375 whenever the header struct is modified. This allows parser to
|
/Zephyr-latest/doc/kernel/services/synchronization/ |
D | events.rst | 51 An event object is defined using a variable of type :c:struct:`k_event`. 58 struct k_event my_event;
|
D | mutexes.rst | 97 A mutex is defined using a variable of type :c:struct:`k_mutex`. 104 struct k_mutex my_mutex;
|
/Zephyr-latest/soc/nordic/nrf54h/bicr/ |
D | bicrgen.py | 34 import struct 85 raw = struct.unpack("<I", self._data[self._offset : self._offset + 4])[0] 93 raw = raw = struct.unpack("<I", self._data[self._offset : self._offset + 4])[0] 96 self._data[self._offset : self._offset + 4] = struct.pack("<I", raw)
|
/Zephyr-latest/doc/connectivity/bluetooth/ |
D | bluetooth-ctlr-arch.rst | 164 - struct llcp_struct 166 * Defined in ull_conn_types.h and declared as part of struct ll_conn 170 - struct proc_ctx 175 - struct llcp_mem_pool
|
/Zephyr-latest/samples/drivers/led/pwm/boards/ |
D | mec172xevb_assy6906.overlay | 27 /* struct pwm_dt_spec: phandle channel period(ns) flags */
|
/Zephyr-latest/doc/services/pm/ |
D | device.rst | 210 to initialize the power management field in each :c:struct:`device`. 219 static int dummy_driver_pm_action(const struct device *dev, 377 static void timer_expire_cb(struct k_timer *timer) 379 struct test_driver_data *data = k_timer_user_data_get(timer); 386 void test_driver_async_operation(const struct device *dev) 388 struct test_driver_data *data = dev->data;
|
D | power_domain.rst | 94 static int mydomain_pm_action(const struct device *dev, 150 static int mydev_pm_action(const struct device *dev,
|
/Zephyr-latest/doc/kernel/services/smp/ |
D | smp.rst | 54 on top of the pre-existing :c:struct:`atomic_` layer (itself usually 285 These fields are now moved into a separate struct :c:struct:`_cpu` instance 286 within the :c:struct:`_kernel` struct, which has a ``cpus[]`` array indexed by ID. 292 the pointer to this CPU struct be available rapidly when in kernel 304 a separate field in the thread struct. 314 architecture context switch primitives can find it via a simple struct
|
/Zephyr-latest/doc/develop/test/ |
D | ztest.rst | 41 return ((const struct test_state*)global_state)->x == 5; 76 struct my_suite_fixture { 85 struct my_suite_fixture *fixture = malloc(sizeof(struct my_suite_fixture) + 255); 95 struct my_suite_fixture *fixture = (struct my_suite_fixture *)f; 170 static void fff_reset_rule_before(const struct ztest_unit_test *test, void *fixture) 199 struct power_sequence_state state;
|
/Zephyr-latest/subsys/mgmt/mcumgr/mgmt/ |
D | Kconfig | 32 This will add an extra field to the struct mgmt_handler that will allow a user
|
/Zephyr-latest/cmake/usage/ |
D | usage.cmake | 28 message(" pahole - Report struct padding (requires the pahole program)")
|
/Zephyr-latest/doc/services/llext/ |
D | load.rst | 11 An extension may be loaded using any implementation of a :c:struct:`llext_loader` 16 :c:struct:`llext_buf_loader`.
|
/Zephyr-latest/doc/kernel/memory_management/ |
D | heap.rst | 16 :c:macro:`K_HEAP_DEFINE` macro. This creates a static :c:struct:`k_heap` variable 49 The underlying implementation of the :c:struct:`k_heap` 50 abstraction is provided a data structure named :c:struct:`sys_heap`. This 82 :c:struct:`sys_heap` structure itself.
|
/Zephyr-latest/doc/kernel/services/data_passing/ |
D | mailboxes.rst | 118 A mailbox is defined using a variable of type :c:struct:`k_mbox`. 125 struct k_mbox my_mailbox; 141 A message descriptor is a structure of type :c:struct:`k_mbox_msg`. 240 struct k_mbox_msg send_msg; 273 struct k_mbox_msg send_msg; 365 struct k_mbox_msg recv_msg; 442 struct k_mbox_msg recv_msg;
|
/Zephyr-latest/doc/develop/west/ |
D | install.rst | 27 .. _west-struct:
|
/Zephyr-latest/doc/releases/ |
D | migration-guide-4.1.rst | 351 struct :c:struct:`prometheus_metric` any more. This means that the Prometheus macros 362 changed, the data is now passed in a :c:struct:`http_request_ctx` which holds the data, data 364 rather than directly in the :c:struct:`http_client_ctx` to correctly handle concurrent requests
|
D | migration-guide-4.0.rst | 352 takes a :c:struct:`bt_bap_unicast_server_register_param` as argument. This allows the Unicast 454 in assignments to a :c:struct:`bt_le_adv_param`. If your struct 488 * The struct :c:struct:`coap_transmission_parameters` has a new field ``ack_random_percent`` if 515 ``struct k_work *work`` parameter has been replaced with a pointer to the 516 ``struct net_socket_service_event *pev`` parameter. (:github:`80041`)
|
/Zephyr-latest/arch/x86/ |
D | gen_mmu.py | 73 import struct 194 entry_size = struct.calcsize(ctype) 198 struct.pack_into(ctype, ret, entry_size * i, self.entries[i])
|
/Zephyr-latest/doc/connectivity/networking/api/ |
D | net_timeout.rst | 48 The :c:struct:`net_timeout` contains a ``sys_snode_t`` that allows multiple
|
D | coap.rst | 57 static struct coap_resource resources[] = { 118 struct coap_packet request;
|
/Zephyr-latest/samples/boards/96boards/argonkey/sensors/ |
D | README.rst | 32 struct device *hum_dev = DEVICE_DT_GET_ONE(st_hts221);
|
/Zephyr-latest/doc/build/dts/ |
D | troubleshooting.rst | 41 const struct device *dev = DEVICE_DT_GET(NODE_ID); 44 no device driver has allocated a ``struct device`` for this devicetree node. 56 2. A device driver responsible for allocating the ``struct device`` is enabled. 123 driver that allocates ``struct device`` instances for that compatible.
|
/Zephyr-latest/doc/hardware/peripherals/sensor/ |
D | fetch_and_get.rst | 19 :c:struct:`sensor_value` by calling :c:func:`sensor_channel_get` for each channel
|
/Zephyr-latest/doc/services/retention/ |
D | index.rst | 117 const struct device *retention1 = DEVICE_DT_GET(DT_NODELABEL(retention1)); 118 const struct device *retention2 = DEVICE_DT_GET(DT_NODELABEL(retention2));
|
12345678910