Searched refs:obj (Results 126 – 147 of 147) sorted by relevance
123456
/Zephyr-latest/doc/kernel/services/timing/ |
D | clocks.rst | 309 void my_wait_for_event(struct my_subsys *obj, int32_t timeout_in_ms) 314 if (is_event_complete(obj)) { 319 k_sem_take(obj->sem, timeout_in_ms); 335 void my_wait_for_event(struct my_subsys *obj, k_timeout_t timeout) 341 if (is_event_complete(obj)) { 349 k_sem_take(obj->sem, timeout);
|
/Zephyr-latest/subsys/net/lib/lwm2m/ |
D | lwm2m_obj_firmware.c | 424 if (inst[index].obj && inst[index].obj_inst_id == obj_inst_id) { in firmware_create() 432 if (!inst[index].obj) { in firmware_create()
|
D | lwm2m_engine.c | 275 o_f = lwm2m_get_engine_obj_field(obj_inst->obj, msg->path.res_id); in lwm2m_engine_validate_write_access() 344 if (msg->path.level == 1 && obj_inst->obj->obj_id != msg->path.obj_id) { in bootstrap_delete() 348 if (!bootstrap_delete_allowed(obj_inst->obj->obj_id, obj_inst->obj_inst_id)) { in bootstrap_delete() 352 ret = lwm2m_delete_obj_inst(obj_inst->obj->obj_id, obj_inst->obj_inst_id); in bootstrap_delete()
|
D | Kconfig | 427 int "Maximum # of device obj error codes to store" 435 int "Maximum # of device obj external device info to store"
|
D | lwm2m_object.h | 415 struct lwm2m_engine_obj *obj; member
|
/Zephyr-latest/subsys/bluetooth/services/ots/ |
D | Kconfig | 91 # Max obj count is otherwise the non-RFU IDs available
|
/Zephyr-latest/tests/net/lib/lwm2m/lwm2m_engine/src/ |
D | main.c | 55 lwm2m_get_engine_obj_field_custom_fake(struct lwm2m_engine_obj *obj, int res_id) in lwm2m_get_engine_obj_field_custom_fake() argument 324 .obj = &sec_obj in ZTEST()
|
/Zephyr-latest/cmake/linker/ |
D | linker_script_common.cmake | 72 find_object(OBJECT obj NAME ${OBJECT_VMA}) 73 get_parent(OBJECT ${obj} PARENT parent TYPE REGION) 80 find_object(OBJECT obj NAME ${OBJECT_LMA}) 81 get_parent(OBJECT ${obj} PARENT parent TYPE REGION)
|
/Zephyr-latest/scripts/build/ |
D | check_init_priorities.py | 203 obj, size, shidx = self._objects[addr]
|
/Zephyr-latest/arch/x86/ |
D | gen_mmu.py | 645 def find_symbol(obj, name): argument 647 for section in obj.iter_sections():
|
/Zephyr-latest/scripts/dts/python-devicetree/src/devicetree/ |
D | edtlib.py | 2809 for obj, name in zip(objs, names): 2810 if obj is None: 2812 obj.name = name 2814 for obj in objs: 2815 if obj is not None: 2816 obj.name = None
|
/Zephyr-latest/boards/cdns/xt-sim/doc/ |
D | index.rst | 117 $ echo "obj-y = soc.o" > soc/xtensa/${XTENSA_CORE}/Makefile
|
/Zephyr-latest/tests/lib/json/src/ |
D | main.c | 1321 const struct test_json_tok_encoded_obj obj = { in ZTEST() local 1329 ARRAY_SIZE(test_json_tok_encoded_obj_descr), &obj, buffer, in ZTEST()
|
/Zephyr-latest/cmake/compiler/gcc/ |
D | compiler_flags.cmake | 209 set_compiler_property(PROPERTY save_temps -save-temps=obj)
|
/Zephyr-latest/doc/services/smf/ |
D | index.rst | 22 follows: ``void funct(void *obj)``, where the ``obj`` parameter is a user
|
/Zephyr-latest/tests/kernel/mem_protect/userspace/src/ |
D | main.c | 774 extern uint8_t *z_priv_stack_find(void *obj);
|
/Zephyr-latest/tests/kernel/poll/src/ |
D | test_poll.c | 127 .obj = &no_wait_sem, in ZTEST_USER()
|
/Zephyr-latest/doc/releases/ |
D | release-notes-1.11.rst | 216 * :github:`2620` - object files created outside of $O directory when obj-XYZ path is relative
|
D | release-notes-2.4.rst | 1633 * :github:`24191` - obj_tracing: Local IPC variables are not removed from obj tracing list after fu…
|
D | release-notes-2.6.rst | 1599 * :github:`33549` - xt-xcc unknown field 'obj' specified in initializer
|
D | release-notes-3.3.rst | 3357 * :github:`51528` - spurious warnings when EXTRA_CFLAGS=-save-temps=obj is passed
|
/Zephyr-latest/ |
D | CMakeLists.txt | 937 # Generate offsets.c.obj from offsets.c 938 # Generate offsets.h from offsets.c.obj
|
123456