Searched refs:child_path (Results 1 – 1 of 1) sorted by relevance
/system/core/sdcard/ |
D | sdcard.c | 517 char child_path[PATH_MAX]; in handle_lookup() local 528 child_path, sizeof(child_path), 1))) { in handle_lookup() 531 return fuse_reply_entry(fuse, hdr->unique, parent_node, name, actual_name, child_path); in handle_lookup() 634 char child_path[PATH_MAX]; in handle_mknod() local 645 child_path, sizeof(child_path), 1))) { in handle_mknod() 649 if (mknod(child_path, mode, req->rdev) < 0) { in handle_mknod() 652 return fuse_reply_entry(fuse, hdr->unique, parent_node, name, actual_name, child_path); in handle_mknod() 660 char child_path[PATH_MAX]; in handle_mkdir() local 671 child_path, sizeof(child_path), 1))) { in handle_mkdir() 675 if (mkdir(child_path, mode) < 0) { in handle_mkdir() [all …]
|