• Home
  • Raw
  • Download

Lines Matching refs:offset_end

137 	uint32_t offset_end = 0;  in dm_decode_dm_target_spec()  local
149 if (i && offset <= offset_end) in dm_decode_dm_target_spec()
152 offset_end = offset + target_spec_size; in dm_decode_dm_target_spec()
154 if (offset_end <= offset || offset_end > ioc->data_size) in dm_decode_dm_target_spec()
176 printstr_ex(tcp, addr + offset_end, ioc->data_size - offset_end, in dm_decode_dm_target_spec()
222 uint32_t offset_end = offset + target_deps_dev_offs; in dm_decode_dm_target_deps() local
225 if (offset_end <= offset || offset_end > ioc->data_size) in dm_decode_dm_target_deps()
231 space = (ioc->data_size - offset_end) / sizeof(dev_buf); in dm_decode_dm_target_deps()
239 print_array(tcp, addr + offset_end, s.count, &dev_buf, sizeof(dev_buf), in dm_decode_dm_target_deps()
259 uint32_t offset_end = 0; in dm_decode_dm_name_list() local
274 if (count && offset <= offset_end) in dm_decode_dm_name_list()
277 offset_end = offset + name_list_name_offs; in dm_decode_dm_name_list()
279 if (offset_end <= offset || offset_end > ioc->data_size) in dm_decode_dm_name_list()
292 rc = printstr_ex(tcp, addr + offset_end, in dm_decode_dm_name_list()
293 ioc->data_size - offset_end, in dm_decode_dm_name_list()
313 (addr + offset_end + rc + 7) & ~7; in dm_decode_dm_name_list()
345 uint32_t offset_end = 0; in dm_decode_dm_target_versions() local
359 if (count && offset <= offset_end) in dm_decode_dm_target_versions()
362 offset_end = offset + target_vers_name_offs; in dm_decode_dm_target_versions()
364 if (offset_end <= offset || offset_end > ioc->data_size) in dm_decode_dm_target_versions()
376 printstr_ex(tcp, addr + offset_end, ioc->data_size - offset_end, in dm_decode_dm_target_versions()
411 uint32_t offset_end = offset + target_msg_message_offs; in dm_decode_dm_target_msg() local
413 if (offset_end > offset && offset_end <= ioc->data_size) { in dm_decode_dm_target_msg()
421 printstr_ex(tcp, addr + offset_end, ioc->data_size - offset_end, in dm_decode_dm_target_msg()