Searched refs:path (Results 1 – 4 of 4) sorted by relevance
/optee_client/tee-supplicant/src/ |
A D | prof.c | 48 char path[255] = { 0 }; in prof_process() local 102 n = snprintf(path, sizeof(path), in prof_process() 113 if ((n < 0) || (n >= (int)sizeof(path))) in prof_process() 115 fd = open(path, flags, 0644); in prof_process()
|
A D | rpmb.c | 157 char path[PATH_MAX] = { 0 }; in mmc_rpmb_fd() local 162 snprintf(path, sizeof(path), "/dev/mmcblk%urpmb", dev_id); in mmc_rpmb_fd() 164 snprintf(path, sizeof(path), "/dev/mmcblk%urpmb", dev_id); in mmc_rpmb_fd() 166 fd = open(path, O_RDWR); in mmc_rpmb_fd() 184 char path[PATH_MAX] = { 0 }; in mmc_fd() local 188 snprintf(path, sizeof(path), "/dev/block/mmcblk%u", dev_id); in mmc_fd() 190 snprintf(path, sizeof(path), "/dev/mmcblk%u", dev_id); in mmc_fd() 192 fd = open(path, O_RDONLY); in mmc_fd() 208 char path[48] = { 0 }; in read_cid() local 214 snprintf(path, sizeof(path), in read_cid() [all …]
|
A D | tee_supp_fs.c | 79 static int do_mkdir(const char *path, mode_t mode) in do_mkdir() argument 85 if (mkdir(path, mode) != 0 && errno != EEXIST) in do_mkdir() 88 if (stat(path, &st) != 0 && !S_ISDIR(st.st_mode)) in do_mkdir() 94 static int mkpath(const char *path, mode_t mode) in mkpath() argument 97 char *subpath = strdup(path); in mkpath() 113 status = do_mkdir(path, mode); in mkpath()
|
/optee_client/tee-supplicant/ |
A D | CMakeLists.txt | 6 option (CFG_TA_TEST_PATH "Enable tee-supplicant to load from test/debug path" OFF) 18 …E_PLUGIN_LOAD_PATH "/usr/lib/tee-supplicant/plugins/" CACHE STRING "tee-supplicant's plugins path")
|
Completed in 6 milliseconds