Searched refs:pathname (Results 1 - 25 of 106) sorted by relevance

12345

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/pptp/
H A Ddirutil.h9 char *basenamex(char *pathname);
12 char *dirname(char *pathname);
14 char *stripslash(char *pathname);
H A Ddirutil.c16 char *basenamex(char *pathname) argument
18 char *dup = strdup(pathname);
28 char *dirname(char *pathname) argument
30 char *dup = strdup(pathname);
41 char *stripslash(char *pathname) { argument
42 int len = strlen(pathname);
43 while (len > 1 && pathname[len - 1] == '/')
44 pathname[--len] = '\0';
45 return pathname;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-runtime/gnulib-lib/
H A Drelocatable.h43 Relocation simply replaces a pathname starting with the original prefix
44 by the corresponding pathname with the current prefix instead. Both
51 /* Returns the pathname, relocated according to the current installation
53 extern const char * relocate (const char *pathname);
56 a fresh pathname. If this is a problem because your program calls
62 file, and the current pathname of this file. Returns NULL upon failure. */
70 #define relocate(pathname) (pathname)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-runtime/intl/
H A Drelocatable.h43 Relocation simply replaces a pathname starting with the original prefix
44 by the corresponding pathname with the current prefix instead. Both
51 /* Returns the pathname, relocated according to the current installation
53 extern const char * relocate (const char *pathname);
56 a fresh pathname. If this is a problem because your program calls
62 file, and the current pathname of this file. Returns NULL upon failure. */
70 #define relocate(pathname) (pathname)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Drelocatable.h43 Relocation simply replaces a pathname starting with the original prefix
44 by the corresponding pathname with the current prefix instead. Both
51 /* Returns the pathname, relocated according to the current installation
53 extern const char * relocate (const char *pathname);
56 a fresh pathname. If this is a problem because your program calls
62 file, and the current pathname of this file. Returns NULL upon failure. */
70 #define relocate(pathname) (pathname)
H A Djavaversion.c30 # define relocate(pathname) (pathname)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/libgettextpo/
H A Drelocatable.h43 Relocation simply replaces a pathname starting with the original prefix
44 by the corresponding pathname with the current prefix instead. Both
51 /* Returns the pathname, relocated according to the current installation
53 extern const char * relocate (const char *pathname);
56 a fresh pathname. If this is a problem because your program calls
62 file, and the current pathname of this file. Returns NULL upon failure. */
70 #define relocate(pathname) (pathname)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libiconv-1.11/lib/
H A Drelocatable.h43 Relocation simply replaces a pathname starting with the original prefix
44 by the corresponding pathname with the current prefix instead. Both
51 /* Returns the pathname, relocated according to the current installation
53 extern const char * relocate (const char *pathname);
56 a fresh pathname. If this is a problem because your program calls
62 file, and the current pathname of this file. Returns NULL upon failure. */
70 #define relocate(pathname) (pathname)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libiconv-1.11/libcharset/lib/
H A Drelocatable.h43 Relocation simply replaces a pathname starting with the original prefix
44 by the corresponding pathname with the current prefix instead. Both
51 /* Returns the pathname, relocated according to the current installation
53 extern const char * relocate (const char *pathname);
56 a fresh pathname. If this is a problem because your program calls
62 file, and the current pathname of this file. Returns NULL upon failure. */
70 #define relocate(pathname) (pathname)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libiconv-1.11/srclib/
H A Drelocatable.h43 Relocation simply replaces a pathname starting with the original prefix
44 by the corresponding pathname with the current prefix instead. Both
51 /* Returns the pathname, relocated according to the current installation
53 extern const char * relocate (const char *pathname);
56 a fresh pathname. If this is a problem because your program calls
62 file, and the current pathname of this file. Returns NULL upon failure. */
70 #define relocate(pathname) (pathname)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/expat-2.0.1/conftools/
H A DPrintPath6 # Do not print out full pathname. (silent)
22 pathname=$PATH
37 -p* ) pathname="`echo $args | sed 's/^..//'`" ;;
58 pathname=`echo -E $pathname |
67 pathname=`echo $pathname |
93 for path in $pathname
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/mtools-4.0.10/
H A Dunixdir.c35 char *pathname; member in struct:Dir_t
64 Free(This->pathname);
98 chdir(This->pathname);
106 newName = malloc(strlen(This->pathname) + 1 +
112 strcpy(newName, This->pathname);
140 This->pathname = malloc(strlen(filename)+1);
141 if(This->pathname == NULL) {
145 strcpy(This->pathname, filename);
148 Free(This->pathname);
155 Free(This->pathname);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/squashfs/
H A Dsort.h28 char *pathname; member in struct:dir_info
41 char *pathname; member in struct:dir_ent
H A Dunsquashfs.c80 int (*create_inode)(char *pathname, unsigned int start_block, unsigned int offset);
278 int set_attributes(char *pathname, unsigned int mode, unsigned int uid, argument
283 if(utime(pathname, &times) == -1) {
284 ERROR("set_attributes: failed to set time on %s, because %s\n", pathname, strerror(errno));
292 if(chown(pathname, uid_value, guid_value) == -1) {
293 ERROR("set_attributes: failed to change uid and gids on %s, because %s\n", pathname, strerror(errno));
299 if((set_mode || (mode & 07000)) && chmod(pathname, (mode_t) mode) == -1) {
300 ERROR("set_attributes: failed to change mode %s, because %s\n", pathname, strerror(errno));
445 int write_file(char *pathname, unsigned int fragment, unsigned int frag_bytes, argument
466 if((file_fd = open(pathname, O_CREA
509 create_inode(char *pathname, unsigned int start_block, unsigned int offset) argument
713 create_inode_2(char *pathname, unsigned int start_block, unsigned int offset) argument
1195 char *name, pathname[1024]; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/acpi/
H A Dpci_bind.c115 char *pathname = NULL; local
125 pathname = kzalloc(ACPI_PATHNAME_MAX, GFP_KERNEL);
126 if (!pathname)
129 buffer.pointer = pathname;
133 kfree(pathname);
139 pathname));
263 kfree(pathname);
275 char *pathname = NULL; local
282 pathname = kzalloc(ACPI_PATHNAME_MAX, GFP_KERNEL);
283 if (!pathname)
328 char *pathname = NULL; local
[all...]
H A Dutils.c254 acpi_string pathname,
271 status = acpi_evaluate_object(handle, pathname, arguments, &buffer);
273 acpi_util_eval_error(handle, pathname, status);
279 acpi_util_eval_error(handle, pathname, AE_BAD_DATA);
297 acpi_string pathname,
314 status = acpi_evaluate_object(handle, pathname, arguments, &buffer);
324 acpi_util_eval_error(handle, pathname, status);
331 acpi_util_eval_error(handle, pathname, status);
338 acpi_util_eval_error(handle, pathname, status);
358 acpi_util_eval_error(handle, pathname, statu
253 acpi_evaluate_integer(acpi_handle handle, acpi_string pathname, struct acpi_object_list *arguments, unsigned long *data) argument
296 acpi_evaluate_reference(acpi_handle handle, acpi_string pathname, struct acpi_object_list *arguments, struct acpi_handle_list *list) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/ext2fs/
H A Dnamei.c25 const char *pathname, size_t pathlen, int follow,
32 char *pathname; local
60 pathname = buffer;
62 pathname = (char *)&(ei.i_block[0]);
63 retval = open_namei(fs, root, dir, pathname, ei.i_size, 1,
70 * This routine interprets a pathname in the context of the current
73 * (pointing into the pathname) and the length of the filename.
76 const char *pathname, int pathlen,
87 if ((c = *pathname) == '/') {
89 pathname
75 dir_namei(ext2_filsys fs, ext2_ino_t root, ext2_ino_t dir, const char *pathname, int pathlen, int link_count, char *buf, const char **name, int *namelen, ext2_ino_t *res_inode) argument
113 open_namei(ext2_filsys fs, ext2_ino_t root, ext2_ino_t base, const char *pathname, size_t pathlen, int follow, int link_count, char *buf, ext2_ino_t *res_inode) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/acpi/namespace/
H A Dnseval.c99 status = acpi_ns_get_node(info->prefix_node, info->pathname,
116 ACPI_DEBUG_PRINT((ACPI_DB_NAMES, "%s [%p] Value %p\n", info->pathname,
226 info->pathname));
H A Dnsxfname.c70 acpi_string pathname, acpi_handle * ret_handle)
80 if (!ret_handle || !pathname) {
95 * 1) Fully qualified pathname
96 * 2) Parent + Relative pathname
100 if (acpi_ns_valid_root_prefix(pathname[0])) {
106 if (!ACPI_STRCMP(pathname, ACPI_NS_ROOT_PATH)) {
121 acpi_ns_get_node(prefix_node, pathname, ACPI_NS_NO_UPSEARCH, &node);
135 * PARAMETERS: Handle - Handle to be converted to a pathname
136 * name_type - Full pathname or single segment
165 /* Get the full pathname (Fro
69 acpi_get_handle(acpi_handle parent, acpi_string pathname, acpi_handle * ret_handle) argument
[all...]
H A Dnsxfeval.c57 * Pathname - Object pathname (optional)
74 acpi_string pathname,
97 acpi_evaluate_object(handle, pathname, external_params,
150 * Pathname - Object pathname (optional)
166 acpi_string pathname,
184 info->pathname = pathname;
230 * 1) Fully qualified pathname
231 * 2) No handle, not fully qualified pathname (error)
234 if ((pathname)
73 acpi_evaluate_object_typed(acpi_handle handle, acpi_string pathname, struct acpi_object_list *external_params, struct acpi_buffer *return_buffer, acpi_object_type return_type) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/smbd/
H A Dmsdfs.c28 Parse the pathname of the form \hostname\service\reqpath
32 static BOOL parse_dfs_path(char* pathname, struct dfs_path* pdp) argument
37 pstrcpy(pathname_local,pathname);
74 Parse the pathname of the form /hostname/service/reqpath
78 static BOOL parse_processed_dfs_path(char* pathname, struct dfs_path* pdp) argument
83 pstrcpy(pathname_local,pathname);
337 DFS pathname passed to use to remove the last
365 Decides if a dfs pathname should be redirected or not.
366 If not, the pathname is converted to a tcon-relative local unix path
369 BOOL dfs_redirect(pstring pathname, connection_struc argument
410 self_ref(char *pathname, struct junction_map *jucn, int *consumedcntp, BOOL *self_referralp) argument
439 get_referred_path(char *pathname, struct junction_map *jucn, int *consumedcntp, BOOL *self_referralp) argument
552 setup_ver2_dfs_referral(char* pathname, char** ppdata, struct junction_map* junction, int consumedcnt, BOOL self_referral) argument
648 setup_ver3_dfs_referral(char* pathname, char** ppdata, struct junction_map* junction, int consumedcnt, BOOL self_referral) argument
731 setup_dfs_referral(connection_struct *orig_conn, char *pathname, int max_referral_level, char** ppdata) argument
805 create_junction(char* pathname, struct junction_map* jucn) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/libbb/
H A Dxfuncs.c114 int xopen3(const char *pathname, int flags, int mode) argument
118 ret = open(pathname, flags, mode);
120 bb_perror_msg_and_die("can't open '%s'", pathname);
126 int xopen(const char *pathname, int flags) argument
128 return xopen3(pathname, flags, 0666);
132 int open3_or_warn(const char *pathname, int flags, int mode) argument
136 ret = open(pathname, flags, mode);
138 bb_perror_msg("can't open '%s'", pathname);
144 int open_or_warn(const char *pathname, int flags) argument
146 return open3_or_warn(pathname, flag
155 xunlink(const char *pathname) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/contrib/minizip/
H A Dzip.h114 extern zipFile ZEXPORT zipOpen OF((const char *pathname, int append));
117 pathname contain on Windows XP a filename like "c:\\zlib\\zlib113.zip" or on
119 if the file pathname exist and append==APPEND_STATUS_CREATEAFTER, the zip
122 if the file pathname exist and append==APPEND_STATUS_ADDINZIP, we will
134 extern zipFile ZEXPORT zipOpen2 OF((const char *pathname,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/platforms/cell/spufs/
H A Dsyscalls.c79 asmlinkage long sys_spu_create(const char __user *pathname, argument
85 tmp = getname(pathname);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/contrib/minizip/
H A Dzip.h114 extern zipFile ZEXPORT zipOpen OF((const char *pathname, int append));
117 pathname contain on Windows XP a filename like "c:\\zlib\\zlib113.zip" or on
119 if the file pathname exist and append==APPEND_STATUS_CREATEAFTER, the zip
122 if the file pathname exist and append==APPEND_STATUS_ADDINZIP, we will
134 extern zipFile ZEXPORT zipOpen2 OF((const char *pathname,

Completed in 123 milliseconds

12345