Lines Matching refs:buffer

116 overlay_get_vnode_name(fs_volume *volume, fs_vnode *vnode, char *buffer,
119 DO_LOG("get_vnode_name buffer: %p; buffer_size: %" B_PRIuSIZE "\n", buffer,
121 OVERLAY_CALL(get_vnode_name, buffer, bufferSize)
122 DO_LOG("get_vnode_name result: %#" B_PRIx32 "; buffer: \"%s\"\n", result,
123 result == B_OK ? buffer : "unsafe");
212 void *buffer, size_t length)
214 DO_LOG("ioctl cookie: %p; op: %" B_PRIu32 "; buffer: %p; size: %" B_PRIuSIZE
215 "\n", cookie, op, buffer, length);
216 OVERLAY_CALL(ioctl, cookie, op, buffer, length)
273 overlay_read_symlink(fs_volume *volume, fs_vnode *vnode, char *buffer,
276 DO_LOG("read_symlink buffer: %p; buffer_size: %" B_PRIuSIZE "\n", buffer,
278 OVERLAY_CALL(read_symlink, buffer, bufferSize)
282 result == B_OK ? buffer : "unsafe");
415 void *buffer, size_t *length)
417 DO_LOG("read cookie: %p; pos: %" B_PRIdOFF "; buffer: %p; length: %"
418 B_PRIuSIZE "\n", cookie, pos, buffer, *length);
419 OVERLAY_CALL(read, cookie, pos, buffer, length)
428 const void *buffer, size_t *length)
430 DO_LOG("write cookie: %p; pos: %" B_PRIdOFF "; buffer: %p; length: %"
431 B_PRIuSIZE "\n", cookie, pos, buffer, *length);
432 OVERLAY_CALL(write, cookie, pos, buffer, length)
492 struct dirent *buffer, size_t bufferSize, uint32 *num)
494 DO_LOG("read_dir cookie: %p; buffer: %p; buffer_size: %" B_PRIuSIZE "\n",
495 cookie, buffer, bufferSize);
496 OVERLAY_CALL(read_dir, cookie, buffer, bufferSize, num);
546 struct dirent *buffer, size_t bufferSize, uint32 *num)
548 DO_LOG("read_attr_dir cookie: %p; buffer: %p; buffer_size: %" B_PRIuSIZE
549 "\n", cookie, buffer, bufferSize);
550 OVERLAY_CALL(read_attr_dir, cookie, buffer, bufferSize, num);
612 void *buffer, size_t *length)
614 DO_LOG("read_attr cookie: %p; pos: %" B_PRIdOFF "; buffer: %p; length: %"
615 B_PRIuSIZE "\n", cookie, pos, buffer, *length);
616 OVERLAY_CALL(read_attr, cookie, pos, buffer, length)
625 const void *buffer, size_t *length)
627 DO_LOG("write_attr cookie: %p; pos: %" B_PRIdOFF "; buffer: %p; length: %"
628 B_PRIuSIZE "\n", cookie, pos, buffer, *length);
629 OVERLAY_CALL(write_attr, cookie, pos, buffer, length)
926 overlay_read_index_dir(fs_volume *volume, void *cookie, struct dirent *buffer,
929 DO_VOLUME_LOG("read_index_dir cookie: %p; buffer: %p; buffer_size: %"
930 B_PRIuSIZE "\n", cookie, buffer, bufferSize);
931 OVERLAY_VOLUME_CALL(read_index_dir, cookie, buffer, bufferSize, num)
1021 overlay_read_query(fs_volume *volume, void *cookie, struct dirent *buffer,
1024 DO_VOLUME_LOG("read_query cookie: %p; buffer: %p; buffer_size: %"
1025 B_PRIuSIZE "\n", cookie, buffer, bufferSize);
1026 OVERLAY_VOLUME_CALL(read_query, cookie, buffer, bufferSize, num)