Searched refs:path (Results 176 - 200 of 5286) sorted by relevance

1234567891011>>

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/arch/powerpc/boot/
H A Dinstall.sh17 # $4 - default install path (blank if root directory)
46 path=$4
50 if [ -f $path/$image_name ]; then
51 mv $path/$image_name $path/$image_name.old
53 cat $1 > $path/$image_name
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/powerpc/boot/
H A Dinstall.sh17 # $4 - default install path (blank if root directory)
46 path=$4
50 if [ -f $path/$image_name ]; then
51 mv $path/$image_name $path/$image_name.old
53 cat $1 > $path/$image_name
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/busybox/libbb/
H A Dxreadlink.c15 char* FAST_FUNC xmalloc_readlink(const char *path) argument
25 readsize = readlink(path, buf, bufsize);
39 * canonicalizes the given path completely. This routine only
41 * returns its name. If the path ends in a dangling link or if
42 * the target doesn't exist, the path is returned in any case.
43 * Intermediate symlinks in the path are not expanded -- only
47 char* FAST_FUNC xmalloc_follow_symlinks(const char *path) argument
55 buf = xstrdup(path);
89 char* FAST_FUNC xmalloc_readlink_or_warn(const char *path) argument
91 char *buf = xmalloc_readlink(path);
103 xmalloc_realpath(const char *path) argument
[all...]
H A Dpidfile.c16 void FAST_FUNC write_pidfile(const char *path) argument
23 if (!path)
26 pid_fd = open(path, O_WRONLY|O_CREAT|O_TRUNC, 0666);
30 /* path can be "/dev/null"! Test for such cases */
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/samba-3.5.8/examples/libsmbclient/
H A Dtestfstatvfs.c19 char path[2048]; local
28 *path = '\0';
29 fgets(path, sizeof(path) - 1, stdin);
30 if (strlen(path) == 0)
35 p = path + strlen(path) - 1;
42 if (smbc_stat(path, &statbuf) < 0)
50 if ((fd = smbc_open(path, O_RDONLY, 0)) < 0)
58 if ((fd = smbc_opendir(path)) <
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/busybox/libbb/
H A Dxreadlink.c15 char* FAST_FUNC xmalloc_readlink(const char *path) argument
25 readsize = readlink(path, buf, bufsize);
39 * canonicalizes the given path completely. This routine only
41 * returns its name. If the path ends in a dangling link or if
42 * the target doesn't exist, the path is returned in any case.
43 * Intermediate symlinks in the path are not expanded -- only
47 char* FAST_FUNC xmalloc_follow_symlinks(const char *path) argument
55 buf = xstrdup(path);
89 char* FAST_FUNC xmalloc_readlink_or_warn(const char *path) argument
91 char *buf = xmalloc_readlink(path);
103 xmalloc_realpath(const char *path) argument
[all...]
H A Dpidfile.c16 void FAST_FUNC write_pidfile(const char *path) argument
23 if (!path)
26 pid_fd = open(path, O_WRONLY|O_CREAT|O_TRUNC, 0666);
30 /* path can be "/dev/null"! Test for such cases */
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.5.8/examples/libsmbclient/
H A Dtestfstatvfs.c19 char path[2048]; local
28 *path = '\0';
29 fgets(path, sizeof(path) - 1, stdin);
30 if (strlen(path) == 0)
35 p = path + strlen(path) - 1;
42 if (smbc_stat(path, &statbuf) < 0)
50 if ((fd = smbc_open(path, O_RDONLY, 0)) < 0)
58 if ((fd = smbc_opendir(path)) <
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/tools/perf/util/
H A Dabspath.c22 const char *make_nonrelative_path(const char *path) argument
26 if (is_absolute_path(path)) {
27 if (strlcpy(buf, path, PATH_MAX) >= PATH_MAX)
28 die("Too long path: %.*s", 60, path);
33 if (snprintf(buf, PATH_MAX, "%s/%s", cwd, path) >= PATH_MAX)
34 die("Too long path: %.*s", 60, path);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/tools/perf/util/
H A Dabspath.c22 const char *make_nonrelative_path(const char *path) argument
26 if (is_absolute_path(path)) {
27 if (strlcpy(buf, path, PATH_MAX) >= PATH_MAX)
28 die("Too long path: %.*s", 60, path);
33 if (snprintf(buf, PATH_MAX, "%s/%s", cwd, path) >= PATH_MAX)
34 die("Too long path: %.*s", 60, path);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/fs/nilfs2/
H A Dbtree.c36 struct nilfs_btree_path *path; local
39 path = kmem_cache_alloc(nilfs_btree_path_cache, GFP_NOFS);
40 if (path == NULL)
44 path[level].bp_bh = NULL;
45 path[level].bp_sib_bh = NULL;
46 path[level].bp_index = 0;
47 path[level].bp_oldreq.bpr_ptr = NILFS_BMAP_INVALID_PTR;
48 path[level].bp_newreq.bpr_ptr = NILFS_BMAP_INVALID_PTR;
49 path[level].bp_op = NULL;
53 return path;
56 nilfs_btree_free_path(struct nilfs_btree_path *path) argument
392 nilfs_btree_get_nonroot_node(const struct nilfs_btree_path *path, int level) argument
398 nilfs_btree_get_sib_node(const struct nilfs_btree_path *path, int level) argument
409 nilfs_btree_get_node(const struct nilfs_bmap *btree, const struct nilfs_btree_path *path, int level, int *ncmaxp) argument
505 nilfs_btree_do_lookup(const struct nilfs_bmap *btree, struct nilfs_btree_path *path, __u64 key, __u64 *ptrp, int minlevel, int readahead) argument
567 nilfs_btree_do_lookup_last(const struct nilfs_bmap *btree, struct nilfs_btree_path *path, __u64 *keyp, __u64 *ptrp) argument
609 struct nilfs_btree_path *path; local
626 struct nilfs_btree_path *path; local
707 nilfs_btree_promote_key(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, __u64 key) argument
729 nilfs_btree_do_insert(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, __u64 *keyp, __u64 *ptrp) argument
756 nilfs_btree_carry_left(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, __u64 *keyp, __u64 *ptrp) argument
802 nilfs_btree_carry_right(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, __u64 *keyp, __u64 *ptrp) argument
849 nilfs_btree_split(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, __u64 *keyp, __u64 *ptrp) argument
904 nilfs_btree_grow(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, __u64 *keyp, __u64 *ptrp) argument
933 nilfs_btree_find_near(const struct nilfs_bmap *btree, const struct nilfs_btree_path *path) argument
962 nilfs_btree_find_target_v(const struct nilfs_bmap *btree, const struct nilfs_btree_path *path, __u64 key) argument
982 nilfs_btree_prepare_insert(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int *levelp, __u64 key, __u64 ptr, struct nilfs_bmap_stats *stats) argument
1131 nilfs_btree_commit_insert(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int maxlevel, __u64 key, __u64 ptr) argument
1157 struct nilfs_btree_path *path; local
1184 nilfs_btree_do_delete(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, __u64 *keyp, __u64 *ptrp) argument
1209 nilfs_btree_borrow_left(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, __u64 *keyp, __u64 *ptrp) argument
1241 nilfs_btree_borrow_right(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, __u64 *keyp, __u64 *ptrp) argument
1274 nilfs_btree_concat_left(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, __u64 *keyp, __u64 *ptrp) argument
1300 nilfs_btree_concat_right(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, __u64 *keyp, __u64 *ptrp) argument
1325 nilfs_btree_shrink(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, __u64 *keyp, __u64 *ptrp) argument
1350 nilfs_btree_prepare_delete(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int *levelp, struct nilfs_bmap_stats *stats, struct inode *dat) argument
1475 nilfs_btree_commit_delete(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int maxlevel, struct inode *dat) argument
1493 struct nilfs_btree_path *path; local
1523 struct nilfs_btree_path *path; local
1783 nilfs_btree_propagate_p(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, struct buffer_head *bh) argument
1795 nilfs_btree_prepare_update_v(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, struct inode *dat) argument
1830 nilfs_btree_commit_update_v(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, struct inode *dat) argument
1854 nilfs_btree_abort_update_v(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, struct inode *dat) argument
1866 nilfs_btree_prepare_propagate_v(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int minlevel, int *maxlevelp, struct inode *dat) argument
1901 nilfs_btree_commit_propagate_v(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int minlevel, int maxlevel, struct buffer_head *bh, struct inode *dat) argument
1916 nilfs_btree_propagate_v(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, struct buffer_head *bh) argument
1954 struct nilfs_btree_path *path; local
2071 nilfs_btree_assign_p(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, struct buffer_head **bh, sector_t blocknr, union nilfs_binfo *binfo) argument
2112 nilfs_btree_assign_v(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, struct buffer_head **bh, sector_t blocknr, union nilfs_binfo *binfo) argument
2148 struct nilfs_btree_path *path; local
2212 struct nilfs_btree_path *path; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/fs/nilfs2/
H A Dbtree.c36 struct nilfs_btree_path *path; local
39 path = kmem_cache_alloc(nilfs_btree_path_cache, GFP_NOFS);
40 if (path == NULL)
44 path[level].bp_bh = NULL;
45 path[level].bp_sib_bh = NULL;
46 path[level].bp_index = 0;
47 path[level].bp_oldreq.bpr_ptr = NILFS_BMAP_INVALID_PTR;
48 path[level].bp_newreq.bpr_ptr = NILFS_BMAP_INVALID_PTR;
49 path[level].bp_op = NULL;
53 return path;
56 nilfs_btree_free_path(struct nilfs_btree_path *path) argument
392 nilfs_btree_get_nonroot_node(const struct nilfs_btree_path *path, int level) argument
398 nilfs_btree_get_sib_node(const struct nilfs_btree_path *path, int level) argument
409 nilfs_btree_get_node(const struct nilfs_bmap *btree, const struct nilfs_btree_path *path, int level, int *ncmaxp) argument
505 nilfs_btree_do_lookup(const struct nilfs_bmap *btree, struct nilfs_btree_path *path, __u64 key, __u64 *ptrp, int minlevel, int readahead) argument
567 nilfs_btree_do_lookup_last(const struct nilfs_bmap *btree, struct nilfs_btree_path *path, __u64 *keyp, __u64 *ptrp) argument
609 struct nilfs_btree_path *path; local
626 struct nilfs_btree_path *path; local
707 nilfs_btree_promote_key(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, __u64 key) argument
729 nilfs_btree_do_insert(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, __u64 *keyp, __u64 *ptrp) argument
756 nilfs_btree_carry_left(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, __u64 *keyp, __u64 *ptrp) argument
802 nilfs_btree_carry_right(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, __u64 *keyp, __u64 *ptrp) argument
849 nilfs_btree_split(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, __u64 *keyp, __u64 *ptrp) argument
904 nilfs_btree_grow(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, __u64 *keyp, __u64 *ptrp) argument
933 nilfs_btree_find_near(const struct nilfs_bmap *btree, const struct nilfs_btree_path *path) argument
962 nilfs_btree_find_target_v(const struct nilfs_bmap *btree, const struct nilfs_btree_path *path, __u64 key) argument
982 nilfs_btree_prepare_insert(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int *levelp, __u64 key, __u64 ptr, struct nilfs_bmap_stats *stats) argument
1131 nilfs_btree_commit_insert(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int maxlevel, __u64 key, __u64 ptr) argument
1157 struct nilfs_btree_path *path; local
1184 nilfs_btree_do_delete(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, __u64 *keyp, __u64 *ptrp) argument
1209 nilfs_btree_borrow_left(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, __u64 *keyp, __u64 *ptrp) argument
1241 nilfs_btree_borrow_right(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, __u64 *keyp, __u64 *ptrp) argument
1274 nilfs_btree_concat_left(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, __u64 *keyp, __u64 *ptrp) argument
1300 nilfs_btree_concat_right(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, __u64 *keyp, __u64 *ptrp) argument
1325 nilfs_btree_shrink(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, __u64 *keyp, __u64 *ptrp) argument
1350 nilfs_btree_prepare_delete(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int *levelp, struct nilfs_bmap_stats *stats, struct inode *dat) argument
1475 nilfs_btree_commit_delete(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int maxlevel, struct inode *dat) argument
1493 struct nilfs_btree_path *path; local
1523 struct nilfs_btree_path *path; local
1783 nilfs_btree_propagate_p(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, struct buffer_head *bh) argument
1795 nilfs_btree_prepare_update_v(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, struct inode *dat) argument
1830 nilfs_btree_commit_update_v(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, struct inode *dat) argument
1854 nilfs_btree_abort_update_v(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, struct inode *dat) argument
1866 nilfs_btree_prepare_propagate_v(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int minlevel, int *maxlevelp, struct inode *dat) argument
1901 nilfs_btree_commit_propagate_v(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int minlevel, int maxlevel, struct buffer_head *bh, struct inode *dat) argument
1916 nilfs_btree_propagate_v(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, struct buffer_head *bh) argument
1954 struct nilfs_btree_path *path; local
2071 nilfs_btree_assign_p(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, struct buffer_head **bh, sector_t blocknr, union nilfs_binfo *binfo) argument
2112 nilfs_btree_assign_v(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, struct buffer_head **bh, sector_t blocknr, union nilfs_binfo *binfo) argument
2148 struct nilfs_btree_path *path; local
2212 struct nilfs_btree_path *path; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/lzma/CPP/Common/
H A DWildcard.h10 void SplitPathToParts(const UString &path, UStringVector &pathParts);
11 void SplitPathToParts(const UString &path, UString &dirPrefix, UString &name);
12 UString ExtractDirPrefixFromPath(const UString &path);
13 UString ExtractFileNameFromPath(const UString &path);
14 bool DoesNameContainWildCard(const UString &path);
42 int FindSubNode(const UString &path) const;
45 void AddItem(bool include, const UString &path, bool recursive, bool forFile, bool forDir);
46 void AddItem2(bool include, const UString &path, bool recursive);
51 bool CheckPath(const UString &path, bool isFile, bool &include) const;
52 bool CheckPath(const UString &path, boo
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/samba-3.5.8/lib/util/
H A Dwrap_xattr.h5 ssize_t wrap_getxattr(const char *path, const char *name, void *value, size_t size);
7 int wrap_setxattr(const char *path, const char *name, void *value, size_t size, int flags);
9 int wrap_removexattr(const char *path, const char *name);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/lzma/CPP/Common/
H A DWildcard.h10 void SplitPathToParts(const UString &path, UStringVector &pathParts);
11 void SplitPathToParts(const UString &path, UString &dirPrefix, UString &name);
12 UString ExtractDirPrefixFromPath(const UString &path);
13 UString ExtractFileNameFromPath(const UString &path);
14 bool DoesNameContainWildCard(const UString &path);
42 int FindSubNode(const UString &path) const;
45 void AddItem(bool include, const UString &path, bool recursive, bool forFile, bool forDir);
46 void AddItem2(bool include, const UString &path, bool recursive);
51 bool CheckPath(const UString &path, bool isFile, bool &include) const;
52 bool CheckPath(const UString &path, boo
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/lzma/CPP/Common/
H A DWildcard.h10 void SplitPathToParts(const UString &path, UStringVector &pathParts);
11 void SplitPathToParts(const UString &path, UString &dirPrefix, UString &name);
12 UString ExtractDirPrefixFromPath(const UString &path);
13 UString ExtractFileNameFromPath(const UString &path);
14 bool DoesNameContainWildCard(const UString &path);
42 int FindSubNode(const UString &path) const;
45 void AddItem(bool include, const UString &path, bool recursive, bool forFile, bool forDir);
46 void AddItem2(bool include, const UString &path, bool recursive);
51 bool CheckPath(const UString &path, bool isFile, bool &include) const;
52 bool CheckPath(const UString &path, boo
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/busybox/libbb/
H A Dpidfile.c16 void FAST_FUNC write_pidfile(const char *path) argument
23 if (!path)
26 pid_fd = open(path, O_WRONLY|O_CREAT|O_TRUNC, 0666);
30 /* path can be "/dev/null"! Test for such cases */
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/ffmpeg/libavformat/
H A Dgopher.c40 static int gopher_connect(URLContext *h, const char *path) argument
44 if (!*path) return AVERROR(EINVAL);
45 switch (*++path) {
48 path = strchr(path, '/');
49 if (!path) return AVERROR(EINVAL);
54 *path);
59 snprintf(buffer, sizeof(buffer), "%s\r\n", path);
81 char hostname[1024], auth[1024], path[1024], buf[1024]; local
94 path, sizeo
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/samba-3.5.8/lib/util/
H A Dwrap_xattr.h5 ssize_t wrap_getxattr(const char *path, const char *name, void *value, size_t size);
7 int wrap_setxattr(const char *path, const char *name, void *value, size_t size, int flags);
9 int wrap_removexattr(const char *path, const char *name);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/ffmpeg/libavformat/
H A Dgopher.c40 static int gopher_connect(URLContext *h, const char *path) argument
44 if (!*path) return AVERROR(EINVAL);
45 switch (*++path) {
48 path = strchr(path, '/');
49 if (!path) return AVERROR(EINVAL);
54 *path);
59 snprintf(buffer, sizeof(buffer), "%s\r\n", path);
81 char hostname[1024], auth[1024], path[1024], buf[1024]; local
94 path, sizeo
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/gdb/sim/testsuite/sim/cris/c/
H A Dstat3.c13 char path[1024] = "/"; local
16 strcat (path, argv[0]);
20 if (stat (path, &buf) != 0
H A Dstat4.c15 char path[1024] = "/"; local
18 strcat (path, argv[0]);
22 if (lstat (path, &buf) != 0
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/gdb/sim/testsuite/sim/cris/c/
H A Dstat3.c13 char path[1024] = "/"; local
16 strcat (path, argv[0]);
20 if (stat (path, &buf) != 0
H A Dstat4.c15 char path[1024] = "/"; local
18 strcat (path, argv[0]);
22 if (lstat (path, &buf) != 0
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.5.8/lib/util/
H A Dwrap_xattr.h5 ssize_t wrap_getxattr(const char *path, const char *name, void *value, size_t size);
7 int wrap_setxattr(const char *path, const char *name, void *value, size_t size, int flags);
9 int wrap_removexattr(const char *path, const char *name);

Completed in 145 milliseconds

1234567891011>>