Searched refs:file_name (Results 1 - 25 of 176) sorted by relevance

12345678

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/Micromax/Linux/shell/
H A Dview_pdf3 file_name=$1
9 ${VIEWER} ${file_name}
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/src/
H A Dfile-list.h32 extern string_list_ty *read_names_from_file (const char *file_name);
H A Dwrite-qt.h24 domain_name is the domain name, file_name is the desired file name.
28 const char *domain_name, const char *file_name);
H A Dwrite-resources.h29 const char *file_name);
H A Dpos.h28 char *file_name; member in struct:lex_pos_ty
H A Dopen-catalog.c47 char *file_name; local
65 file_name = concatenated_filename ("", input_name, extension[k]);
67 ret_val = fopen (file_name, "r");
71 *real_file_name_p = file_name;
75 free (file_name);
86 file_name = concatenated_filename (dir, input_name, extension[k]);
88 ret_val = fopen (file_name, "r");
91 *real_file_name_p = file_name;
95 free (file_name);
H A Dfile-list.c39 read_names_from_file (const char *file_name) argument
46 if (strcmp (file_name, "-") == 0)
50 fp = fopen (file_name, "r");
53 _("error while opening \"%s\" for reading"), file_name);
H A Dwrite-mo.h36 domain_name is the domain name, file_name is the desired file name.
41 const char *file_name);
/netgear-R7000-V1.0.7.12_1.2.5/src/router/arm-uclibc/target/www/
H A DchangeUrl.js16 function change_url(file_name)
18 alert(file_name);
20 window.location.href = "http://www.routerlogin.net" + "/" + file_name;
22 window.location.href = "http://routerlogin.com" + "/" + file_name;
24 window.location.href = "http://routerlogin.net" + "/" + file_name;
26 window.location.href = "http://www.routerlogin.com" + "/" + file_name;
28 window.location.href = "http://routerlogin.net" + "/" + file_name;
/netgear-R7000-V1.0.7.12_1.2.5/src/router/arm-uclibc/target/www/cgi-bin/
H A DchangeUrl.js16 function change_url(file_name)
20 top.location.href = "http://www.mywifiext.net" + "/" + file_name;
22 top.location.href = "http://mywifiext.com" + "/" + file_name;
24 top.location.href = "http://mywifiext.net" + "/" + file_name;
26 top.location.href = "http://www.mywifiext.com" + "/" + file_name;
28 top.location.href = file_name;
/netgear-R7000-V1.0.7.12_1.2.5/src/router/arm-uclibc/target/www/script/
H A DchangeUrl.js16 function change_url(file_name)
20 top.location.href = "http://www.mywifiext.net" + "/" + file_name;
22 top.location.href = "http://mywifiext.com" + "/" + file_name;
24 top.location.href = "http://mywifiext.net" + "/" + file_name;
26 top.location.href = "http://www.mywifiext.com" + "/" + file_name;
28 top.location.href = file_name;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libcsc-0.82.3/src/
H A Dxcsc_debug.c209 const char* file_name,
230 file_name, line_number, assert_expression
252 const char* file_name,
272 file_name, line_number, error_number
292 const char* file_name,
304 file_name, line_number
313 file_name, line_number
326 const char* file_name,
338 file_name, line_number
351 const char* file_name,
208 xcsc_assert_fail( const char* file_name, unsigned int line_number, const char* assert_expression, const char* user_string, int fail_flag ) argument
251 xcsc_assert_errno( const char* file_name, unsigned int line_number, int error_number, int fail_flag ) argument
291 xcsc_memcpy( const char* file_name, unsigned int line_number, void* dst, const void* src, size_t n ) argument
325 xcsc_memset( const char* file_name, unsigned int line_number, void* dst, int c, size_t n ) argument
350 xcsc_strcat( const char* file_name, unsigned int line_number, char* dst, const char* src ) argument
383 xcsc_strcmp( const char* file_name, unsigned int line_number, const char* str1, const char* str2 ) argument
416 xcsc_strncmp( const char* file_name, unsigned int line_number, const char* str1, const char* str2, size_t n ) argument
450 xcsc_strcpy( const char* file_name, unsigned int line_number, char* dst, const char* src ) argument
483 xcsc_strncpy( const char* file_name, unsigned int line_number, char* dst, const char* src, size_t n ) argument
517 xcsc_strlen( const char* file_name, unsigned int line_number, const char* ptr ) argument
540 xcsc_strrchr( const char* file_name, unsigned int line_number, const char* ptr, int c ) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/db/
H A DCacheFileStats.java19 private String file_name; field in class:CacheFileStats
24 return file_name;
89 + "\n file_name=" + file_name
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/src/
H A Dtool_doswin.h28 char *sanitize_dos_name(char *file_name);
H A Dtool_doswin.c88 static const char *msdosify (const char *file_name);
89 static char *rename_if_dos_device_name (char *file_name);
101 char *sanitize_dos_name(char *file_name) argument
105 if(!file_name)
108 if(strlen(file_name) >= PATH_MAX)
109 file_name[PATH_MAX-1] = '\0'; /* truncate it */
111 strcpy(new_name, msdosify(file_name));
113 Curl_safefree(file_name);
121 static const char *msdosify (const char *file_name) argument
128 const char *s = file_name;
207 rename_if_dos_device_name(char *file_name) argument
[all...]
H A Dtool_mfiles.h36 struct multi_files *AddMultiFiles(const char *file_name,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libcsc-0.82.3/include/
H A Dlibcsc_debug.h205 const char* file_name,
213 const char* file_name,
220 const char* file_name,
228 const char* file_name,
236 const char* file_name,
243 const char* file_name,
250 const char* file_name,
258 const char* file_name,
265 const char* file_name,
273 const char* file_name,
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/tools/perf/
H A Dbuiltin-kvm.c22 static const char *file_name; variable
34 OPT_STRING('i', "input", &file_name, "file",
36 OPT_STRING('o', "output", &file_name, "file",
63 rec_argv[i++] = strdup(file_name);
81 rec_argv[i++] = strdup(file_name);
99 rec_argv[i++] = strdup(file_name);
120 if (!file_name) {
127 file_name = name_buffer;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gdbm-1.8.3/
H A Dtestdbm.c78 char *file_name; local
89 file_name = argv[1];
93 file_name = "junkdbm";
99 if (dbminit (file_name) != 0)
101 sprintf (sys,"touch %s.pag %s.dir", file_name, file_name);
103 if (dbminit (file_name) != 0)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/gdbm-1.8.3/
H A Dtestdbm.c78 char *file_name; local
89 file_name = argv[1];
93 file_name = "junkdbm";
99 if (dbminit (file_name) != 0)
101 sprintf (sys,"touch %s.pag %s.dir", file_name, file_name);
103 if (dbminit (file_name) != 0)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/modules/
H A Dvfs_recycle.c411 static int recycle_unlink(vfs_handle_struct *handle, const char *file_name) argument
437 DEBUG(3, ("recycle: repository path not set, purging %s...\n", file_name));
438 rc = SMB_VFS_NEXT_UNLINK(handle, file_name);
443 if (strncmp(file_name, repository, strlen(repository)) == 0) {
445 rc = SMB_VFS_NEXT_UNLINK(handle, file_name);
449 file_size = recycle_get_file_size(handle, file_name);
454 DEBUG(3, ("recycle: File %s is empty, purging...\n", file_name));
455 rc = SMB_VFS_NEXT_UNLINK(handle,file_name);
466 DEBUG(3, ("recycle: File %s exceeds maximum recycle size, purging... \n", file_name));
467 rc = SMB_VFS_NEXT_UNLINK(handle, file_name);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dclean-temp.h112 extern int open_temp (const char *file_name, int flags, mode_t mode);
113 extern FILE * fopen_temp (const char *file_name, const char *mode);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/tiff/
H A Dtif_acorn.c157 #define xosfind_open(reason, file_name, path, file) \
159 reason, file_name, path, file)
161 #define osfind_open(reason, file_name, path) \
163 reason, file_name, path)
166 char *file_name,
170 char *file_name,
173 #define xosfind_openin(flags, file_name, path, file) \
174 xosfind_open(flags | OSFind_Openin, file_name, path, file)
176 #define osfind_openin(flags, file_name, path) \
177 osfind_open(flags | OSFind_Openin, file_name, pat
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/testsuite/libsmbclient/src/lseekdir/
H A Dlseekdir_1.c37 char *file_name; local
71 file_name = dir_url;
72 file_name += strlen(dir_url);
79 strcpy(file_name,file_url);
H A Dlseekdir_2.c37 char *file_name; local
71 file_name = dir_url;
72 file_name += strlen(dir_url);
79 strcpy(file_name,file_url);

Completed in 325 milliseconds

12345678