Home
last modified time | relevance | path

Searched refs:copy (Results 1 – 25 of 143) sorted by relevance

123456

/Zephyr-Core-3.5.0/tests/bluetooth/audio/mocks/src/
Dgatt.c65 struct bt_gatt_notify_params *copy; in notify_params_deep_copy_destroy() local
68 copy = mock_bt_gatt_notify_cb_fake.arg1_history[i]; in notify_params_deep_copy_destroy()
71 if (copy->uuid) { in notify_params_deep_copy_destroy()
72 free((void *)copy->uuid); in notify_params_deep_copy_destroy()
75 free(copy); in notify_params_deep_copy_destroy()
86 struct bt_uuid *copy; in uuid_deep_copy() local
90 copy = malloc(sizeof(struct bt_uuid_16)); in uuid_deep_copy()
91 zassert_not_null(copy); in uuid_deep_copy()
92 memcpy(copy, uuid, sizeof(struct bt_uuid_16)); in uuid_deep_copy()
95 copy = malloc(sizeof(struct bt_uuid_32)); in uuid_deep_copy()
[all …]
/Zephyr-Core-3.5.0/drivers/i2c/
Di2c_handlers.c34 struct i2c_msg copy[num_msgs]; in copy_msgs_and_transfer() local
38 memcpy(copy, msgs, num_msgs * sizeof(*msgs)); in copy_msgs_and_transfer()
44 Z_OOPS(Z_SYSCALL_MEMORY(copy[i].buf, copy[i].len, in copy_msgs_and_transfer()
45 copy[i].flags & I2C_MSG_READ)); in copy_msgs_and_transfer()
48 return z_impl_i2c_transfer(dev, copy, num_msgs, addr); in copy_msgs_and_transfer()
/Zephyr-Core-3.5.0/drivers/i3c/
Di3c_handlers.c44 struct i3c_msg copy[num_msgs]; in copy_i3c_msgs_and_transfer() local
48 memcpy(copy, msgs, num_msgs * sizeof(*msgs)); in copy_i3c_msgs_and_transfer()
54 Z_OOPS(Z_SYSCALL_MEMORY(copy[i].buf, copy[i].len, in copy_i3c_msgs_and_transfer()
55 copy[i].flags & I3C_MSG_READ)); in copy_i3c_msgs_and_transfer()
58 return z_impl_i3c_transfer(target, copy, num_msgs); in copy_i3c_msgs_and_transfer()
/Zephyr-Core-3.5.0/drivers/flash/
Dflash_stm32_ex_op.c97 struct flash_stm32_ex_op_rdp copy; in flash_stm32_ex_op_rdp() local
105 Z_OOPS(z_user_from_copy(&copy, request, sizeof(copy))); in flash_stm32_ex_op_rdp()
106 request = © in flash_stm32_ex_op_rdp()
124 result = © in flash_stm32_ex_op_rdp()
135 Z_OOPS(z_user_to_copy(out, result, sizeof(copy))); in flash_stm32_ex_op_rdp()
/Zephyr-Core-3.5.0/dts/xtensa/intel/
Dintel_adsp_cavs.dtsi19 dma-copy-alignment = <4>;
32 dma-copy-alignment = <4>;
44 dma-copy-alignment = <32>;
56 dma-copy-alignment = <32>;
68 dma-copy-alignment = <32>;
81 dma-copy-alignment = <32>;
Dintel_adsp_cavs15.dtsi176 dma-copy-alignment = <4>;
189 dma-copy-alignment = <4>;
201 dma-copy-alignment = <32>;
213 dma-copy-alignment = <32>;
225 dma-copy-alignment = <32>;
237 dma-copy-alignment = <32>;
/Zephyr-Core-3.5.0/lib/os/
Dwinstream.c88 uint32_t seq0 = *seq, start, end, wseq, len, behind, copy, suffix; in sys_winstream_read() local
111 copy = idx_sub(ws, ws->end, behind); in sys_winstream_read()
113 suffix = MIN(len, ws->len - copy); in sys_winstream_read()
114 MEMCPY(buf, &ws->data[copy], suffix); in sys_winstream_read()
/Zephyr-Core-3.5.0/samples/application_development/code_relocation_nocopy/
DCMakeLists.txt11 # Run ext_code from the external flash (XIP). No need to copy.
14 # But still relocate (copy) the data to RAM
/Zephyr-Core-3.5.0/samples/net/cellular_modem/server/
Dte_udp_receive.py8 import copy
93 sessions = copy.copy(self.sessions)
/Zephyr-Core-3.5.0/scripts/footprint/
Dtrack.py57 …shutil.copy(f'out/{name}/{feature}/{board}/ram.json', f'footprint_data/{version}/{name}/{feature}/…
58 …shutil.copy(f'out/{name}/{feature}/{board}/rom.json', f'footprint_data/{version}/{name}/{feature}/…
/Zephyr-Core-3.5.0/doc/
Dsubstitutions.txt10 using the same name as the html entity names (e.g., &copy;) for that character
12 .. |copy| unicode:: U+000A9 .. COPYRIGHT SIGN
/Zephyr-Core-3.5.0/scripts/pylib/twister/
Dexpr_parser.py7 import copy
151 p[0] = copy.copy(p[1])
164 p[0] = copy.copy(p[1])
/Zephyr-Core-3.5.0/scripts/west_commands/runners/
Duf2.py8 from shutil import copy
88 copy(self.cfg.uf2_file, part.mountpoint)
/Zephyr-Core-3.5.0/doc/_doxygen/
Ddoxygen-awesome-sidebar-only-darkmode-toggle.css11 Permission is hereby granted, free of charge, to any person obtaining a copy
14 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
/Zephyr-Core-3.5.0/subsys/settings/src/
Dsettings_fcb.c224 int copy; in settings_fcb_compress() local
260 copy = 1; in settings_fcb_compress()
273 copy = 0; in settings_fcb_compress()
277 if (!copy) { in settings_fcb_compress()
Dsettings_file.c253 int copy; in settings_file_save_and_compress() local
305 copy = 1; in settings_file_save_and_compress()
325 copy = 0; /* newer version doesn't exist */ in settings_file_save_and_compress()
329 if (!copy) { in settings_file_save_and_compress()
/Zephyr-Core-3.5.0/doc/_extensions/zephyr/
Dexternal_content.py134 shutil.copy(src, dst)
146 shutil.copy(src, src_adjusted)
/Zephyr-Core-3.5.0/boards/arm/lpcxpresso55s69/
Dboard.cmake9 ## until then jlink can be used or copy image to storage
/Zephyr-Core-3.5.0/tests/net/ieee802154/6lo_fragment/src/
Dmain.c272 uint8_t copy; in create_pkt() local
274 copy = remaining > bytes ? bytes : remaining; in create_pkt()
275 memcpy(net_buf_add(buf, copy), &user_data[pos], copy); in create_pkt()
280 if (net_buf_tailroom(buf) - (bytes - copy)) { in create_pkt()
/Zephyr-Core-3.5.0/submanifests/
Dexample.yaml.sample3 # To make this work, copy this file's contents to a new file,
/Zephyr-Core-3.5.0/scripts/logging/dictionary/dictionary_parser/
Dlog_database.py12 import copy
290 json_db = copy.deepcopy(database.database)
/Zephyr-Core-3.5.0/samples/modules/tflite-micro/tflm_ethosu/src/
Dinference_process.cpp36 copy(src.data.uint8, src.data.uint8 + src.bytes, static_cast<uint8_t *>(dst.data)); in copyOutput()
150 copy(static_cast<char *>(input.data), static_cast<char *>(input.data) + input.size, in runJob()
/Zephyr-Core-3.5.0/boards/shields/rk055hdmipi4m/
DKconfig.defconfig31 # Force full refresh. This prevents memory copy associated with partial
/Zephyr-Core-3.5.0/doc/services/ipc/ipc_service/
Dipc_service.rst48 * Data exchange using the no-copy API.
102 Data exchange using the no-copy API
105 If the backend supports the no-copy API you can use it to directly write and
177 * The no-copy API.
/Zephyr-Core-3.5.0/samples/modules/tflite-micro/magic_wand/boards/
Dlitex_vexriscv.overlay5 You may obtain a copy of the License at

123456