Home
last modified time | relevance | path

Searched refs:abs_path (Results 1 – 3 of 3) sorted by relevance

/Zephyr-latest/subsys/fs/
Dfs.c345 int fs_opendir(struct fs_dir_t *zdp, const char *abs_path) in fs_opendir() argument
350 if ((abs_path == NULL) || in fs_opendir()
351 (strlen(abs_path) < 1) || (abs_path[0] != '/')) { in fs_opendir()
361 if (strcmp(abs_path, "/") == 0) { in fs_opendir()
373 rc = fs_get_mnt_point(&mp, abs_path, NULL); in fs_opendir()
384 rc = zdp->mp->fs->opendir(zdp, abs_path); in fs_opendir()
501 int fs_mkdir(const char *abs_path) in fs_mkdir() argument
506 if ((abs_path == NULL) || in fs_mkdir()
507 (strlen(abs_path) <= 1) || (abs_path[0] != '/')) { in fs_mkdir()
512 rc = fs_get_mnt_point(&mp, abs_path, NULL); in fs_mkdir()
[all …]
/Zephyr-latest/share/sysbuild/cmake/modules/
Dsysbuild_extensions.cmake300 …th(ABSOLUTE_PATH rel_path BASE_DIRECTORY "${ZBUILD_SOURCE_DIR}" NORMALIZE OUTPUT_VARIABLE abs_path)
301 …set(${ZBUILD_APPLICATION}_${type}_ROOT ${abs_path} CACHE PATH "Sysbuild adjusted absolute path" FO…
/Zephyr-latest/scripts/
Dcheckpatch.pl19 my $D = dirname(abs_path($P));
152 open(my $script, '<', abs_path($P)) or
926 my $root_path = abs_path($root);