Lines Matching refs:lfs_dir_open
160 lfs_dir_open(&lfs, &dir, "coffee/drip") => 0;
162 lfs_dir_open(&lfs, &dir, "coffee/coldbrew") => 0;
164 lfs_dir_open(&lfs, &dir, "coffee/turkish") => 0;
166 lfs_dir_open(&lfs, &dir, "coffee/tubruk") => 0;
168 lfs_dir_open(&lfs, &dir, "coffee/vietnamese") => 0;
170 lfs_dir_open(&lfs, &dir, "coffee/thai") => 0;
174 lfs_dir_open(&lfs, &dir, "coffee/drip") => LFS_ERR_NOTDIR;
175 lfs_dir_open(&lfs, &dir, "coffee/coldbrew") => LFS_ERR_NOTDIR;
176 lfs_dir_open(&lfs, &dir, "coffee/turkish") => LFS_ERR_NOTDIR;
177 lfs_dir_open(&lfs, &dir, "coffee/tubruk") => LFS_ERR_NOTDIR;
178 lfs_dir_open(&lfs, &dir, "coffee/vietnamese") => LFS_ERR_NOTDIR;
179 lfs_dir_open(&lfs, &dir, "coffee/thai") => LFS_ERR_NOTDIR;
409 lfs_dir_open(&lfs, &dir, "/coffee/drip") => 0;
411 lfs_dir_open(&lfs, &dir, "/coffee/coldbrew") => 0;
413 lfs_dir_open(&lfs, &dir, "/coffee/turkish") => 0;
415 lfs_dir_open(&lfs, &dir, "/coffee/tubruk") => 0;
417 lfs_dir_open(&lfs, &dir, "/coffee/vietnamese") => 0;
419 lfs_dir_open(&lfs, &dir, "/coffee/thai") => 0;
423 lfs_dir_open(&lfs, &dir, "/coffee/drip") => LFS_ERR_NOTDIR;
424 lfs_dir_open(&lfs, &dir, "/coffee/coldbrew") => LFS_ERR_NOTDIR;
425 lfs_dir_open(&lfs, &dir, "/coffee/turkish") => LFS_ERR_NOTDIR;
426 lfs_dir_open(&lfs, &dir, "/coffee/tubruk") => LFS_ERR_NOTDIR;
427 lfs_dir_open(&lfs, &dir, "/coffee/vietnamese") => LFS_ERR_NOTDIR;
428 lfs_dir_open(&lfs, &dir, "/coffee/thai") => LFS_ERR_NOTDIR;
656 lfs_dir_open(&lfs, &dir, "/coffee/drip") => 0;
658 lfs_dir_open(&lfs, &dir, "//coffee//coldbrew") => 0;
660 lfs_dir_open(&lfs, &dir, "///coffee///turkish") => 0;
662 lfs_dir_open(&lfs, &dir, "////coffee////tubruk") => 0;
664 lfs_dir_open(&lfs, &dir, "/////coffee/////vietnamese") => 0;
666 lfs_dir_open(&lfs, &dir, "//////coffee//////thai") => 0;
670 lfs_dir_open(&lfs, &dir, "/coffee/drip") => LFS_ERR_NOTDIR;
671 lfs_dir_open(&lfs, &dir, "//coffee//coldbrew") => LFS_ERR_NOTDIR;
672 lfs_dir_open(&lfs, &dir, "///coffee///turkish") => LFS_ERR_NOTDIR;
673 lfs_dir_open(&lfs, &dir, "////coffee////tubruk") => LFS_ERR_NOTDIR;
674 lfs_dir_open(&lfs, &dir, "/////coffee/////vietnamese") => LFS_ERR_NOTDIR;
675 lfs_dir_open(&lfs, &dir, "//////coffee//////thai") => LFS_ERR_NOTDIR;
916 lfs_dir_open(&lfs, &dir, "coffee/drip/") => 0;
918 lfs_dir_open(&lfs, &dir, "coffee/coldbrew//") => 0;
920 lfs_dir_open(&lfs, &dir, "coffee/turkish///") => 0;
922 lfs_dir_open(&lfs, &dir, "coffee/tubruk////") => 0;
924 lfs_dir_open(&lfs, &dir, "coffee/vietnamese/////") => 0;
926 lfs_dir_open(&lfs, &dir, "coffee/thai//////") => 0;
930 lfs_dir_open(&lfs, &dir, "coffee/drip/") => LFS_ERR_NOTDIR;
931 lfs_dir_open(&lfs, &dir, "coffee/coldbrew//") => LFS_ERR_NOTDIR;
932 lfs_dir_open(&lfs, &dir, "coffee/turkish///") => LFS_ERR_NOTDIR;
933 lfs_dir_open(&lfs, &dir, "coffee/tubruk////") => LFS_ERR_NOTDIR;
934 lfs_dir_open(&lfs, &dir, "coffee/vietnamese/////") => LFS_ERR_NOTDIR;
935 lfs_dir_open(&lfs, &dir, "coffee/thai//////") => LFS_ERR_NOTDIR;
1261 lfs_dir_open(&lfs, &dir, "/coffee/drip") => 0;
1263 lfs_dir_open(&lfs, &dir, "/./coffee/./coldbrew") => 0;
1265 lfs_dir_open(&lfs, &dir, "/././coffee/././turkish") => 0;
1267 lfs_dir_open(&lfs, &dir, "/./././coffee/./././tubruk") => 0;
1269 lfs_dir_open(&lfs, &dir, "/././././coffee/././././vietnamese") => 0;
1271 lfs_dir_open(&lfs, &dir, "/./././././coffee/./././././thai") => 0;
1275 lfs_dir_open(&lfs, &dir, "/coffee/drip") => LFS_ERR_NOTDIR;
1276 lfs_dir_open(&lfs, &dir, "/./coffee/./coldbrew") => LFS_ERR_NOTDIR;
1277 lfs_dir_open(&lfs, &dir, "/././coffee/././turkish") => LFS_ERR_NOTDIR;
1278 lfs_dir_open(&lfs, &dir, "/./././coffee/./././tubruk") => LFS_ERR_NOTDIR;
1279 lfs_dir_open(&lfs, &dir, "/././././coffee/././././vietnamese") => LFS_ERR_NOTDIR;
1280 lfs_dir_open(&lfs, &dir, "/./././././coffee/./././././thai") => LFS_ERR_NOTDIR;
1536 lfs_dir_open(&lfs, &dir, "coffee/drip/.") => 0;
1538 lfs_dir_open(&lfs, &dir, "coffee/coldbrew/./.") => 0;
1540 lfs_dir_open(&lfs, &dir, "coffee/turkish/././.") => 0;
1542 lfs_dir_open(&lfs, &dir, "coffee/tubruk/./././.") => 0;
1544 lfs_dir_open(&lfs, &dir, "coffee/vietnamese/././././.") => 0;
1546 lfs_dir_open(&lfs, &dir, "coffee/thai/./././././.") => 0;
1550 lfs_dir_open(&lfs, &dir, "coffee/drip/.") => LFS_ERR_NOTDIR;
1551 lfs_dir_open(&lfs, &dir, "coffee/coldbrew/./.") => LFS_ERR_NOTDIR;
1552 lfs_dir_open(&lfs, &dir, "coffee/turkish/././.") => LFS_ERR_NOTDIR;
1553 lfs_dir_open(&lfs, &dir, "coffee/tubruk/./././.") => LFS_ERR_NOTDIR;
1554 lfs_dir_open(&lfs, &dir, "coffee/vietnamese/././././.") => LFS_ERR_NOTDIR;
1555 lfs_dir_open(&lfs, &dir, "coffee/thai/./././././.") => LFS_ERR_NOTDIR;
1925 lfs_dir_open(&lfs, &dir, "/coffee/drip") => 0;
1927 lfs_dir_open(&lfs, &dir, "/no/../coffee/coldbrew") => 0;
1929 lfs_dir_open(&lfs, &dir, "/coffee/no/../turkish") => 0;
1931 lfs_dir_open(&lfs, &dir, "/no/no/../../coffee/tubruk") => 0;
1933 lfs_dir_open(&lfs, &dir, "/no/no/../../coffee/no/../vietnamese") => 0;
1935 lfs_dir_open(&lfs, &dir, "/no/no/../../no/no/../../coffee/thai") => 0;
1939 lfs_dir_open(&lfs, &dir, "/coffee/drip") => LFS_ERR_NOTDIR;
1940 lfs_dir_open(&lfs, &dir, "/no/../coffee/coldbrew") => LFS_ERR_NOTDIR;
1941 lfs_dir_open(&lfs, &dir, "/coffee/no/../turkish") => LFS_ERR_NOTDIR;
1942 lfs_dir_open(&lfs, &dir, "/no/no/../../coffee/tubruk") => LFS_ERR_NOTDIR;
1943 lfs_dir_open(&lfs, &dir, "/no/no/../../coffee/no/../vietnamese") => LFS_ERR_NOTDIR;
1944 lfs_dir_open(&lfs, &dir, "/no/no/../../no/no/../../coffee/thai") => LFS_ERR_NOTDIR;
2145 lfs_dir_open(&lfs, &dir, "coffee/drip/..") => 0;
2147 lfs_dir_open(&lfs, &dir, "coffee/coldbrew/../..") => 0;
2149 lfs_dir_open(&lfs, &dir, "coffee/turkish/../../..") => LFS_ERR_INVAL;
2150 lfs_dir_open(&lfs, &dir, "coffee/tubruk/../../../..") => LFS_ERR_INVAL;
2151 lfs_dir_open(&lfs, &dir, "coffee/vietnamese/../../../../..") => LFS_ERR_INVAL;
2152 lfs_dir_open(&lfs, &dir, "coffee/thai/../../../../../..") => LFS_ERR_INVAL;
2429 lfs_dir_open(&lfs, &dir, "/coffee/drip") => 0;
2431 lfs_dir_open(&lfs, &dir, "/no/./../coffee/coldbrew") => 0;
2433 lfs_dir_open(&lfs, &dir, "/coffee/no/./../turkish") => 0;
2435 lfs_dir_open(&lfs, &dir, "/no/no/./.././../coffee/tubruk") => 0;
2437 lfs_dir_open(&lfs, &dir, "/no/no/./.././../coffee/no/./../vietnamese") => 0;
2439 lfs_dir_open(&lfs, &dir, "/no/no/./.././../no/no/./.././../coffee/thai") => 0;
2443 lfs_dir_open(&lfs, &dir, "/coffee/drip") => LFS_ERR_NOTDIR;
2444 lfs_dir_open(&lfs, &dir, "/no/./../coffee/coldbrew") => LFS_ERR_NOTDIR;
2445 lfs_dir_open(&lfs, &dir, "/coffee/no/./../turkish") => LFS_ERR_NOTDIR;
2446 lfs_dir_open(&lfs, &dir, "/no/no/./.././../coffee/tubruk") => LFS_ERR_NOTDIR;
2447 lfs_dir_open(&lfs, &dir, "/no/no/./.././../coffee/no/./../vietnamese") => LFS_ERR_NOTDIR;
2448 lfs_dir_open(&lfs, &dir, "/no/no/./.././../no/no/./.././../coffee/thai") => LFS_ERR_NOTDIR;
2677 lfs_dir_open(&lfs, &dir, "/coffee/.../drip") => 0;
2679 lfs_dir_open(&lfs, &dir, "/coffee/.../coldbrew") => 0;
2681 lfs_dir_open(&lfs, &dir, "/coffee/.../turkish") => 0;
2683 lfs_dir_open(&lfs, &dir, "/coffee/.../tubruk") => 0;
2685 lfs_dir_open(&lfs, &dir, "/coffee/.../vietnamese") => 0;
2687 lfs_dir_open(&lfs, &dir, "/coffee/.../thai") => 0;
2691 lfs_dir_open(&lfs, &dir, "/coffee/.../drip") => LFS_ERR_NOTDIR;
2692 lfs_dir_open(&lfs, &dir, "/coffee/.../coldbrew") => LFS_ERR_NOTDIR;
2693 lfs_dir_open(&lfs, &dir, "/coffee/.../turkish") => LFS_ERR_NOTDIR;
2694 lfs_dir_open(&lfs, &dir, "/coffee/.../tubruk") => LFS_ERR_NOTDIR;
2695 lfs_dir_open(&lfs, &dir, "/coffee/.../vietnamese") => LFS_ERR_NOTDIR;
2696 lfs_dir_open(&lfs, &dir, "/coffee/.../thai") => LFS_ERR_NOTDIR;
2925 lfs_dir_open(&lfs, &dir, "/coffee/.drip") => 0;
2927 lfs_dir_open(&lfs, &dir, "/coffee/..coldbrew") => 0;
2929 lfs_dir_open(&lfs, &dir, "/coffee/...turkish") => 0;
2931 lfs_dir_open(&lfs, &dir, "/coffee/....tubruk") => 0;
2933 lfs_dir_open(&lfs, &dir, "/coffee/.....vietnamese") => 0;
2935 lfs_dir_open(&lfs, &dir, "/coffee/......thai") => 0;
2939 lfs_dir_open(&lfs, &dir, "/coffee/.drip") => LFS_ERR_NOTDIR;
2940 lfs_dir_open(&lfs, &dir, "/coffee/..coldbrew") => LFS_ERR_NOTDIR;
2941 lfs_dir_open(&lfs, &dir, "/coffee/...turkish") => LFS_ERR_NOTDIR;
2942 lfs_dir_open(&lfs, &dir, "/coffee/....tubruk") => LFS_ERR_NOTDIR;
2943 lfs_dir_open(&lfs, &dir, "/coffee/.....vietnamese") => LFS_ERR_NOTDIR;
2944 lfs_dir_open(&lfs, &dir, "/coffee/......thai") => LFS_ERR_NOTDIR;
3130 lfs_dir_open(&lfs, &dir, "/../coffee/drip") => LFS_ERR_INVAL;
3131 lfs_dir_open(&lfs, &dir, "/../../coffee/coldbrew") => LFS_ERR_INVAL;
3132 lfs_dir_open(&lfs, &dir, "/../../../coffee/turkish") => LFS_ERR_INVAL;
3133 lfs_dir_open(&lfs, &dir, "/no/../../coffee/tubruk") => LFS_ERR_INVAL;
3134 lfs_dir_open(&lfs, &dir, "/no/../../../coffee/vietnamese") => LFS_ERR_INVAL;
3135 lfs_dir_open(&lfs, &dir, "/no/../../../../coffee/thai") => LFS_ERR_INVAL;
3322 lfs_dir_open(&lfs, &dir, "coffee/_rip") => LFS_ERR_NOENT;
3323 lfs_dir_open(&lfs, &dir, "coffee/c_ldbrew") => LFS_ERR_NOENT;
3324 lfs_dir_open(&lfs, &dir, "coffee/tu_kish") => LFS_ERR_NOENT;
3325 lfs_dir_open(&lfs, &dir, "coffee/tub_uk") => LFS_ERR_NOENT;
3326 lfs_dir_open(&lfs, &dir, "coffee/_vietnamese") => LFS_ERR_NOENT;
3327 lfs_dir_open(&lfs, &dir, "coffee/thai_") => LFS_ERR_NOENT;
3523 lfs_dir_open(&lfs, &dir, "_offee/drip") => LFS_ERR_NOENT;
3524 lfs_dir_open(&lfs, &dir, "c_ffee/coldbrew") => LFS_ERR_NOENT;
3525 lfs_dir_open(&lfs, &dir, "co_fee/turkish") => LFS_ERR_NOENT;
3526 lfs_dir_open(&lfs, &dir, "cof_ee/tubruk") => LFS_ERR_NOENT;
3527 lfs_dir_open(&lfs, &dir, "_coffee/vietnamese") => LFS_ERR_NOENT;
3528 lfs_dir_open(&lfs, &dir, "coffee_/thai") => LFS_ERR_NOENT;
3753 lfs_dir_open(&lfs, &dir, "drip/coffee") => LFS_ERR_NOTDIR;
3754 lfs_dir_open(&lfs, &dir, "coldbrew/coffee") => LFS_ERR_NOTDIR;
3755 lfs_dir_open(&lfs, &dir, "turkish/coffee") => LFS_ERR_NOTDIR;
3756 lfs_dir_open(&lfs, &dir, "tubruk/coffee") => LFS_ERR_NOTDIR;
3757 lfs_dir_open(&lfs, &dir, "vietnamese/coffee") => LFS_ERR_NOTDIR;
3758 lfs_dir_open(&lfs, &dir, "thai/coffee") => LFS_ERR_NOTDIR;
4002 lfs_dir_open(&lfs, &dir, "coffee/_rip/") => LFS_ERR_NOENT;
4003 lfs_dir_open(&lfs, &dir, "coffee/c_ldbrew//") => LFS_ERR_NOENT;
4004 lfs_dir_open(&lfs, &dir, "coffee/tu_kish///") => LFS_ERR_NOENT;
4005 lfs_dir_open(&lfs, &dir, "coffee/tub_uk////") => LFS_ERR_NOENT;
4006 lfs_dir_open(&lfs, &dir, "coffee/_vietnamese/////") => LFS_ERR_NOENT;
4007 lfs_dir_open(&lfs, &dir, "coffee/thai_//////") => LFS_ERR_NOENT;
4220 lfs_dir_open(&lfs, &dir, "coffee/_rip/.") => LFS_ERR_NOENT;
4221 lfs_dir_open(&lfs, &dir, "coffee/c_ldbrew/./.") => LFS_ERR_NOENT;
4222 lfs_dir_open(&lfs, &dir, "coffee/tu_kish/././.") => LFS_ERR_NOENT;
4223 lfs_dir_open(&lfs, &dir, "coffee/tub_uk/./././.") => LFS_ERR_NOENT;
4224 lfs_dir_open(&lfs, &dir, "coffee/_vietnamese/././././.") => LFS_ERR_NOENT;
4225 lfs_dir_open(&lfs, &dir, "coffee/thai_/./././././.") => LFS_ERR_NOENT;
4416 lfs_dir_open(&lfs, &dir, "coffee/_rip/..") => 0;
4418 lfs_dir_open(&lfs, &dir, "coffee/c_ldbrew/../..") => 0;
4420 lfs_dir_open(&lfs, &dir, "coffee/tu_kish/../../..") => LFS_ERR_INVAL;
4421 lfs_dir_open(&lfs, &dir, "coffee/tub_uk/../../../..") => LFS_ERR_INVAL;
4422 lfs_dir_open(&lfs, &dir, "coffee/_vietnamese/../../../../..") => LFS_ERR_INVAL;
4423 lfs_dir_open(&lfs, &dir, "coffee/thai_/../../../../../..") => LFS_ERR_INVAL;
4583 lfs_dir_open(&lfs, &dir, "") => LFS_ERR_INVAL;
4651 lfs_dir_open(&lfs, &dir, "/") => 0;
4763 lfs_dir_open(&lfs, &dir, "/") => 0;
4765 lfs_dir_open(&lfs, &dir, ".") => 0;
4767 lfs_dir_open(&lfs, &dir, "./") => 0;
4769 lfs_dir_open(&lfs, &dir, "/.") => 0;
4771 lfs_dir_open(&lfs, &dir, "//") => 0;
4858 lfs_dir_open(&lfs, &dir, "littlefs") => LFS_ERR_NOENT;
4925 lfs_dir_open(&lfs, &dir, "littlefs") => 0;
4929 lfs_dir_open(&lfs, &dir, "littlefs") => LFS_ERR_NOTDIR;
4991 lfs_dir_open(&lfs, &dir, path) => LFS_ERR_NOENT;
5285 lfs_dir_open(&lfs, &dir, path) => 0;
5288 lfs_dir_open(&lfs, &dir, path) => 0;
5291 lfs_dir_open(&lfs, &dir, path) => 0;
5294 lfs_dir_open(&lfs, &dir, path) => 0;
5297 lfs_dir_open(&lfs, &dir, path) => 0;
5300 lfs_dir_open(&lfs, &dir, path) => 0;
5305 lfs_dir_open(&lfs, &dir, path) => LFS_ERR_NOTDIR;
5307 lfs_dir_open(&lfs, &dir, path) => LFS_ERR_NOTDIR;
5309 lfs_dir_open(&lfs, &dir, path) => LFS_ERR_NOTDIR;
5311 lfs_dir_open(&lfs, &dir, path) => LFS_ERR_NOTDIR;
5313 lfs_dir_open(&lfs, &dir, path) => LFS_ERR_NOTDIR;
5315 lfs_dir_open(&lfs, &dir, path) => LFS_ERR_NOTDIR;
5568 lfs_dir_open(&lfs, &dir, "coffee/dripcoffee") => 0;
5570 lfs_dir_open(&lfs, &dir, "coffee/coldbrew") => 0;
5572 lfs_dir_open(&lfs, &dir, "coffee/türkkahvesi") => 0;
5574 lfs_dir_open(&lfs, &dir, "coffee/ꦏꦺꦴꦥꦶꦠꦸꦧꦿꦸꦏ꧀") => 0;
5576 lfs_dir_open(&lfs, &dir, "coffee/càphêđá") => 0;
5578 lfs_dir_open(&lfs, &dir, "coffee/โอเลี้ยง") => 0;
5582 lfs_dir_open(&lfs, &dir, "coffee/dripcoffee") => LFS_ERR_NOTDIR;
5583 lfs_dir_open(&lfs, &dir, "coffee/coldbrew") => LFS_ERR_NOTDIR;
5584 lfs_dir_open(&lfs, &dir, "coffee/türkkahvesi") => LFS_ERR_NOTDIR;
5585 lfs_dir_open(&lfs, &dir, "coffee/ꦏꦺꦴꦥꦶꦠꦸꦧꦿꦸꦏ꧀") => LFS_ERR_NOTDIR;
5586 lfs_dir_open(&lfs, &dir, "coffee/càphêđá") => LFS_ERR_NOTDIR;
5587 lfs_dir_open(&lfs, &dir, "coffee/โอเลี้ยง") => LFS_ERR_NOTDIR;
5815 lfs_dir_open(&lfs, &dir, "ˈkɔ.fi/dɹɪpˈkɔ.fi") => 0;
5817 lfs_dir_open(&lfs, &dir, "ˈkɔ.fi/koʊldbɹuː") => 0;
5819 lfs_dir_open(&lfs, &dir, "ˈkɔ.fi/tyɾckɑhvɛˈsi") => 0;
5821 lfs_dir_open(&lfs, &dir, "ˈkɔ.fi/ˈko.piˈt̪up̚.rʊk̚") => 0;
5823 lfs_dir_open(&lfs, &dir, "ˈkɔ.fi/kaː˨˩fe˧˧ɗaː˧˥") => 0;
5825 lfs_dir_open(&lfs, &dir, "ˈkɔ.fi/ʔoː˧.lia̯ŋ˦˥") => 0;
5829 lfs_dir_open(&lfs, &dir, "ˈkɔ.fi/dɹɪpˈkɔ.fi") => LFS_ERR_NOTDIR;
5830 lfs_dir_open(&lfs, &dir, "ˈkɔ.fi/koʊldbɹuː") => LFS_ERR_NOTDIR;
5831 lfs_dir_open(&lfs, &dir, "ˈkɔ.fi/tyɾckɑhvɛˈsi") => LFS_ERR_NOTDIR;
5832 lfs_dir_open(&lfs, &dir, "ˈkɔ.fi/ˈko.piˈt̪up̚.rʊk̚") => LFS_ERR_NOTDIR;
5833 lfs_dir_open(&lfs, &dir, "ˈkɔ.fi/kaː˨˩fe˧˧ɗaː˧˥") => LFS_ERR_NOTDIR;
5834 lfs_dir_open(&lfs, &dir, "ˈkɔ.fi/ʔoː˧.lia̯ŋ˦˥") => LFS_ERR_NOTDIR;
6062 lfs_dir_open(&lfs, &dir, "c o f f e e/d r i p") => 0;
6064 lfs_dir_open(&lfs, &dir, "c o f f e e/c o l d b r e w") => 0;
6066 lfs_dir_open(&lfs, &dir, "c o f f e e/t u r k i s h") => 0;
6068 lfs_dir_open(&lfs, &dir, "c o f f e e/t u b r u k") => 0;
6070 lfs_dir_open(&lfs, &dir, "c o f f e e/v i e t n a m e s e") => 0;
6072 lfs_dir_open(&lfs, &dir, "c o f f e e/t h a i") => 0;
6076 lfs_dir_open(&lfs, &dir, "c o f f e e/d r i p") => LFS_ERR_NOTDIR;
6077 lfs_dir_open(&lfs, &dir, "c o f f e e/c o l d b r e w") => LFS_ERR_NOTDIR;
6078 lfs_dir_open(&lfs, &dir, "c o f f e e/t u r k i s h") => LFS_ERR_NOTDIR;
6079 lfs_dir_open(&lfs, &dir, "c o f f e e/t u b r u k") => LFS_ERR_NOTDIR;
6080 lfs_dir_open(&lfs, &dir, "c o f f e e/v i e t n a m e s e") => LFS_ERR_NOTDIR;
6081 lfs_dir_open(&lfs, &dir, "c o f f e e/t h a i") => LFS_ERR_NOTDIR;
6311 lfs_dir_open(&lfs, &dir, " / ") => 0;
6313 lfs_dir_open(&lfs, &dir, " / ") => 0;
6315 lfs_dir_open(&lfs, &dir, " / ") => 0;
6317 lfs_dir_open(&lfs, &dir, " / ") => 0;
6319 lfs_dir_open(&lfs, &dir, " / ") => 0;
6321 lfs_dir_open(&lfs, &dir, " / ") => 0;
6325 lfs_dir_open(&lfs, &dir, " / ") => LFS_ERR_NOTDIR;
6326 lfs_dir_open(&lfs, &dir, " / ") => LFS_ERR_NOTDIR;
6327 lfs_dir_open(&lfs, &dir, " / ") => LFS_ERR_NOTDIR;
6328 lfs_dir_open(&lfs, &dir, " / ") => LFS_ERR_NOTDIR;
6329 lfs_dir_open(&lfs, &dir, " / ") => LFS_ERR_NOTDIR;
6330 lfs_dir_open(&lfs, &dir, " / ") => LFS_ERR_NOTDIR;
6560 lfs_dir_open(&lfs, &dir, "\x0c/\x01") => 0;
6562 lfs_dir_open(&lfs, &dir, "\x0c/\x02") => 0;
6564 lfs_dir_open(&lfs, &dir, "\x0c/\x03") => 0;
6566 lfs_dir_open(&lfs, &dir, "\x0c/\x04") => 0;
6568 lfs_dir_open(&lfs, &dir, "\x0c/\x05") => 0;
6570 lfs_dir_open(&lfs, &dir, "\x0c/\x06") => 0;
6574 lfs_dir_open(&lfs, &dir, "\x0c/\x01") => LFS_ERR_NOTDIR;
6575 lfs_dir_open(&lfs, &dir, "\x0c/\x02") => LFS_ERR_NOTDIR;
6576 lfs_dir_open(&lfs, &dir, "\x0c/\x03") => LFS_ERR_NOTDIR;
6577 lfs_dir_open(&lfs, &dir, "\x0c/\x04") => LFS_ERR_NOTDIR;
6578 lfs_dir_open(&lfs, &dir, "\x0c/\x05") => LFS_ERR_NOTDIR;
6579 lfs_dir_open(&lfs, &dir, "\x0c/\x06") => LFS_ERR_NOTDIR;
6809 lfs_dir_open(&lfs, &dir, "\x7f/\x7f") => 0;
6811 lfs_dir_open(&lfs, &dir, "\x7f/\x7f\x7f") => 0;
6813 lfs_dir_open(&lfs, &dir, "\x7f/\x7f\x7f\x7f") => 0;
6815 lfs_dir_open(&lfs, &dir, "\x7f/\x7f\x7f\x7f\x7f") => 0;
6817 lfs_dir_open(&lfs, &dir, "\x7f/\x7f\x7f\x7f\x7f\x7f") => 0;
6819 lfs_dir_open(&lfs, &dir, "\x7f/\x7f\x7f\x7f\x7f\x7f\x7f") => 0;
6823 lfs_dir_open(&lfs, &dir, "\x7f/\x7f") => LFS_ERR_NOTDIR;
6824 lfs_dir_open(&lfs, &dir, "\x7f/\x7f\x7f") => LFS_ERR_NOTDIR;
6825 lfs_dir_open(&lfs, &dir, "\x7f/\x7f\x7f\x7f") => LFS_ERR_NOTDIR;
6826 lfs_dir_open(&lfs, &dir, "\x7f/\x7f\x7f\x7f\x7f") => LFS_ERR_NOTDIR;
6827 lfs_dir_open(&lfs, &dir, "\x7f/\x7f\x7f\x7f\x7f\x7f") => LFS_ERR_NOTDIR;
6828 lfs_dir_open(&lfs, &dir, "\x7f/\x7f\x7f\x7f\x7f\x7f\x7f") => LFS_ERR_NOTDIR;
7060 lfs_dir_open(&lfs, &dir, "\xc0/\xa0") => 0;
7062 lfs_dir_open(&lfs, &dir, "\xc0/\xb0") => 0;
7064 lfs_dir_open(&lfs, &dir, "\xc0/\xc0") => 0;
7066 lfs_dir_open(&lfs, &dir, "\xc0/\xd0") => 0;
7068 lfs_dir_open(&lfs, &dir, "\xc0/\xe0") => 0;
7070 lfs_dir_open(&lfs, &dir, "\xc0/\xf0") => 0;
7074 lfs_dir_open(&lfs, &dir, "\xc0/\xa0") => LFS_ERR_NOTDIR;
7075 lfs_dir_open(&lfs, &dir, "\xc0/\xb0") => LFS_ERR_NOTDIR;
7076 lfs_dir_open(&lfs, &dir, "\xc0/\xc0") => LFS_ERR_NOTDIR;
7077 lfs_dir_open(&lfs, &dir, "\xc0/\xd0") => LFS_ERR_NOTDIR;
7078 lfs_dir_open(&lfs, &dir, "\xc0/\xe0") => LFS_ERR_NOTDIR;
7079 lfs_dir_open(&lfs, &dir, "\xc0/\xf0") => LFS_ERR_NOTDIR;
7311 lfs_dir_open(&lfs, &dir, "\xff/\xff") => 0;
7313 lfs_dir_open(&lfs, &dir, "\xff/\xff\xff") => 0;
7315 lfs_dir_open(&lfs, &dir, "\xff/\xff\xff\xff") => 0;
7317 lfs_dir_open(&lfs, &dir, "\xff/\xff\xff\xff\xff") => 0;
7319 lfs_dir_open(&lfs, &dir, "\xff/\xff\xff\xff\xff\xff") => 0;
7321 lfs_dir_open(&lfs, &dir, "\xff/\xff\xff\xff\xff\xff\xff") => 0;
7325 lfs_dir_open(&lfs, &dir, "\xff/\xff") => LFS_ERR_NOTDIR;
7326 lfs_dir_open(&lfs, &dir, "\xff/\xff\xff") => LFS_ERR_NOTDIR;
7327 lfs_dir_open(&lfs, &dir, "\xff/\xff\xff\xff") => LFS_ERR_NOTDIR;
7328 lfs_dir_open(&lfs, &dir, "\xff/\xff\xff\xff\xff") => LFS_ERR_NOTDIR;
7329 lfs_dir_open(&lfs, &dir, "\xff/\xff\xff\xff\xff\xff") => LFS_ERR_NOTDIR;
7330 lfs_dir_open(&lfs, &dir, "\xff/\xff\xff\xff\xff\xff\xff") => LFS_ERR_NOTDIR;