Searched refs:child_path (Results 1 – 1 of 1) sorted by relevance
/system/core/sdcard/ |
D | sdcard.c | 800 char child_path[PATH_MAX]; in handle_lookup() local 811 child_path, sizeof(child_path), 1))) { in handle_lookup() 818 return fuse_reply_entry(fuse, hdr->unique, parent_node, name, actual_name, child_path); in handle_lookup() 930 char child_path[PATH_MAX]; in handle_mknod() local 941 child_path, sizeof(child_path), 1))) { in handle_mknod() 948 if (mknod(child_path, mode, req->rdev) < 0) { in handle_mknod() 951 return fuse_reply_entry(fuse, hdr->unique, parent_node, name, actual_name, child_path); in handle_mknod() 959 char child_path[PATH_MAX]; in handle_mkdir() local 970 child_path, sizeof(child_path), 1))) { in handle_mkdir() 977 if (mkdir(child_path, mode) < 0) { in handle_mkdir() [all …]
|