Searched refs:child_path (Results 1 – 1 of 1) sorted by relevance
/system/core/sdcard/ |
D | fuse.cpp | 592 char child_path[PATH_MAX]; in handle_lookup() local 603 child_path, sizeof(child_path), 1))) { in handle_lookup() 610 return fuse_reply_entry(fuse, hdr->unique, parent_node, name, actual_name, child_path); in handle_lookup() 726 char child_path[PATH_MAX]; in handle_mknod() local 738 child_path, sizeof(child_path), 1))) { in handle_mknod() 745 if (mknod(child_path, mode, req->rdev) == -1) { in handle_mknod() 748 return fuse_reply_entry(fuse, hdr->unique, parent_node, name, actual_name, child_path); in handle_mknod() 756 char child_path[PATH_MAX]; in handle_mkdir() local 768 child_path, sizeof(child_path), 1))) { in handle_mkdir() 775 if (mkdir(child_path, mode) == -1) { in handle_mkdir() [all …]
|