Home | History | Annotate | Download | only in sdcard

Lines Matching defs:label

1780     ERROR("usage: sdcard [OPTIONS] <source_path> <label>\n"
1816 static void run(const char* source_path, const char* label, uid_t uid,
1872 snprintf(fuse_default.dest_path, PATH_MAX, "/mnt/runtime/default/%s", label);
1873 snprintf(fuse_read.dest_path, PATH_MAX, "/mnt/runtime/read/%s", label);
1874 snprintf(fuse_write.dest_path, PATH_MAX, "/mnt/runtime/write/%s", label);
1954 static void run_sdcardfs(const char* source_path, const char* label, uid_t uid,
1960 snprintf(dest_path_default, PATH_MAX, "/mnt/runtime/default/%s", label);
1961 snprintf(dest_path_read, PATH_MAX, "/mnt/runtime/read/%s", label);
1962 snprintf(dest_path_write, PATH_MAX, "/mnt/runtime/write/%s", label);
2061 const char *label = NULL;
2099 } else if (!label) {
2100 label = arg;
2111 if (!label) {
2112 ERROR("no label specified\n");
2132 run_sdcardfs(source_path, label, uid, gid, userid, multi_user, full_write);
2134 run(source_path, label, uid, gid, userid, multi_user, full_write);