Lines Matching refs:lfs_stat
75 lfs_stat(&lfs, "hi/hi/hi", &info) => 0;
386 if (lfs_stat(&lfs, "a/hello", &info) == 0) {
392 if (lfs_stat(&lfs, "b/hello", &info) == 0) {
398 if (lfs_stat(&lfs, "c/hello", &info) == 0) {
404 if (lfs_stat(&lfs, "d/hello", &info) == 0) {
414 if (lfs_stat(&lfs, "a/hello", &info) == 0 && info.size > 0) {
416 } else if (lfs_stat(&lfs, "b/hello", &info) == 0) {
418 } else if (lfs_stat(&lfs, "c/hello", &info) == 0) {
420 } else if (lfs_stat(&lfs, "d/hello", &info) == 0) {
872 if (lfs_stat(&lfs, "a/hi", &info) == 0) {
877 if (lfs_stat(&lfs, "b/hi", &info) == 0) {
882 if (lfs_stat(&lfs, "c/hi", &info) == 0) {
887 if (lfs_stat(&lfs, "d/hi", &info) == 0) {
896 if (lfs_stat(&lfs, "a/hi", &info) == 0) {
898 } else if (lfs_stat(&lfs, "b/hi", &info) == 0) {
900 } else if (lfs_stat(&lfs, "c/hi", &info) == 0) {
902 } else if (lfs_stat(&lfs, "d/hi", &info) == 0) {
1018 lfs_stat(&lfs, "a", &info) => 0;
1019 lfs_stat(&lfs, "b", &info) => LFS_ERR_NOENT;
1020 lfs_stat(&lfs, "c", &info) => LFS_ERR_NOENT;
1021 lfs_stat(&lfs, "d", &info) => 0;