Searched refs:fp (Results 251 - 275 of 3199) sorted by relevance

<<11121314151617181920>>

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/openssl/ms/
H A Dapplink.c47 static int app_feof(FILE *fp) argument
49 return feof(fp);
52 static int app_ferror(FILE *fp) argument
54 return ferror(fp);
57 static void app_clearerr(FILE *fp) argument
59 clearerr(fp);
62 static int app_fileno(FILE *fp) argument
64 return _fileno(fp);
67 static int app_fsetmod(FILE *fp, char mod) argument
69 return _setmode(_fileno(fp), mo
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/openssl-1.0.0q/ms/
H A Dapplink.c35 static int app_feof(FILE *fp) { return feof(fp); } argument
36 static int app_ferror(FILE *fp) { return ferror(fp); } argument
37 static void app_clearerr(FILE *fp) { clearerr(fp); } argument
38 static int app_fileno(FILE *fp) { return _fileno(fp); } argument
39 static int app_fsetmod(FILE *fp,char mod) argument
40 { return _setmode (_fileno(fp),mo
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/ez-ipupdate/
H A Dcache_file.c64 FILE *fp = NULL; local
91 if((fp=fopen(file, "r")) == NULL)
96 if(fgets(buf, BUFSIZ, fp) != NULL)
127 fclose(fp);
133 if(fp) { fclose(fp); }
139 FILE *fp = NULL; local
141 if((fp=fopen(file, "w")) == NULL)
146 fprintf(fp, "%ld,%s\n", date, ipaddr);
148 fclose(fp);
[all...]
H A Dpid_file.c24 FILE* fp = NULL; local
42 if((fp=fopen(pid_file, "r")) != NULL)
45 if(fgets(buf, sizeof(buf), fp) == NULL)
50 fclose(fp);
63 if((fp=fopen(pid_file, "w")) == NULL)
70 fprintf(fp, "%d\n", (int)mypid);
71 fclose(fp);
84 if(fp) { fclose(fp); fp
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/gdb/readline/examples/
H A Drlcat.c130 fcopy(fp)
131 FILE *fp;
136 while ((c = getc(fp)) != EOF)
157 FILE *fp; local
165 fp = stdin;
168 fp = fopen (argv[i], "r");
169 if (fp == 0)
175 r = fcopy (fp);
176 if (fp != stdin)
177 fclose(fp);
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/sound/usb/
H A Dquirks.c127 struct audioformat *fp; local
132 fp = kmemdup(quirk->data, sizeof(*fp), GFP_KERNEL);
133 if (! fp) {
137 if (fp->nr_rates > 0) {
138 rate_table = kmalloc(sizeof(int) * fp->nr_rates, GFP_KERNEL);
140 kfree(fp);
143 memcpy(rate_table, fp->rate_table, sizeof(int) * fp->nr_rates);
144 fp
189 struct audioformat *fp; local
519 snd_usb_is_big_endian_format(struct snd_usb_audio *chip, struct audioformat *fp) argument
[all...]
H A Dendpoint.c48 struct audioformat *fp = list_entry(p, struct audioformat, list); local
49 kfree(fp->rate_table);
50 kfree(fp);
82 int snd_usb_add_audio_endpoint(struct snd_usb_audio *chip, int stream, struct audioformat *fp) argument
92 if (as->fmt_type != fp->fmt_type)
97 if (subs->endpoint == fp->endpoint) {
98 list_add_tail(&fp->list, &subs->fmt_list);
100 subs->formats |= fp->formats;
107 if (as->fmt_type != fp->fmt_type)
115 snd_usb_init_substream(as, stream, fp);
234 struct audioformat *fp = NULL; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/sound/usb/
H A Dquirks.c127 struct audioformat *fp; local
132 fp = kmemdup(quirk->data, sizeof(*fp), GFP_KERNEL);
133 if (! fp) {
137 if (fp->nr_rates > 0) {
138 rate_table = kmalloc(sizeof(int) * fp->nr_rates, GFP_KERNEL);
140 kfree(fp);
143 memcpy(rate_table, fp->rate_table, sizeof(int) * fp->nr_rates);
144 fp
189 struct audioformat *fp; local
519 snd_usb_is_big_endian_format(struct snd_usb_audio *chip, struct audioformat *fp) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/samba/source/lib/
H A Dutil_file.c119 FILE *fp = NULL; local
128 fp = sys_fopen(pfile, update ? "r+b" : "rb");
130 if (fp == NULL) {
136 setvbuf(fp, s_readbuf, _IOFBF, bufsize);
138 if (!file_lock(fileno(fp), (update ? F_WRLCK : F_RDLCK), 5, file_lock_depth))
141 fclose(fp);
149 return (void *)fp;
157 FILE *fp = (FILE *)vp; local
159 file_unlock(fileno(fp), file_lock_depth);
160 fclose(fp);
190 FILE *fp = (FILE *)vp; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/samba/source/lib/
H A Dutil_file.c119 FILE *fp = NULL; local
128 fp = sys_fopen(pfile, update ? "r+b" : "rb");
130 if (fp == NULL) {
136 setvbuf(fp, s_readbuf, _IOFBF, bufsize);
138 if (!file_lock(fileno(fp), (update ? F_WRLCK : F_RDLCK), 5, file_lock_depth))
141 fclose(fp);
149 return (void *)fp;
157 FILE *fp = (FILE *)vp; local
159 file_unlock(fileno(fp), file_lock_depth);
160 fclose(fp);
190 FILE *fp = (FILE *)vp; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba/source/lib/
H A Dutil_file.c119 FILE *fp = NULL; local
128 fp = sys_fopen(pfile, update ? "r+b" : "rb");
130 if (fp == NULL) {
136 setvbuf(fp, s_readbuf, _IOFBF, bufsize);
138 if (!file_lock(fileno(fp), (update ? F_WRLCK : F_RDLCK), 5, file_lock_depth))
141 fclose(fp);
149 return (void *)fp;
157 FILE *fp = (FILE *)vp; local
159 file_unlock(fileno(fp), file_lock_depth);
160 fclose(fp);
190 FILE *fp = (FILE *)vp; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/rc/sysdeps/ralink/
H A Dralink.c679 FILE *fp; local
710 if (!(fp=fopen("/etc/Wireless/RT2860/RT2860.dat", "w+")))
717 if (!(fp=fopen("/etc/Wireless/iNIC/iNIC_ap.dat", "w+")))
721 fprintf(fp, "#The word of \"Default\" must not be removed\n");
722 fprintf(fp, "Default\n");
732 fprintf(fp, "CountryRegion=%d\n", region);
738 fprintf(fp, "CountryRegion=%d\n", 5);
752 fprintf(fp, "CountryRegionABand=%d\n", region);
757 fprintf(fp, "CountryRegionABand=%d\n", 7);
770 fprintf(fp, "CountryCod
3254 FILE *fp; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/rc/sysdeps/ralink/
H A Dralink.c679 FILE *fp; local
710 if (!(fp=fopen("/etc/Wireless/RT2860/RT2860.dat", "w+")))
717 if (!(fp=fopen("/etc/Wireless/iNIC/iNIC_ap.dat", "w+")))
721 fprintf(fp, "#The word of \"Default\" must not be removed\n");
722 fprintf(fp, "Default\n");
732 fprintf(fp, "CountryRegion=%d\n", region);
738 fprintf(fp, "CountryRegion=%d\n", 5);
752 fprintf(fp, "CountryRegionABand=%d\n", region);
757 fprintf(fp, "CountryRegionABand=%d\n", 7);
770 fprintf(fp, "CountryCod
3254 FILE *fp; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/rc/sysdeps/ralink/
H A Dralink.c679 FILE *fp; local
710 if (!(fp=fopen("/etc/Wireless/RT2860/RT2860.dat", "w+")))
717 if (!(fp=fopen("/etc/Wireless/iNIC/iNIC_ap.dat", "w+")))
721 fprintf(fp, "#The word of \"Default\" must not be removed\n");
722 fprintf(fp, "Default\n");
732 fprintf(fp, "CountryRegion=%d\n", region);
738 fprintf(fp, "CountryRegion=%d\n", 5);
752 fprintf(fp, "CountryRegionABand=%d\n", region);
757 fprintf(fp, "CountryRegionABand=%d\n", 7);
770 fprintf(fp, "CountryCod
3254 FILE *fp; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/drivers/net/skfp/
H A Dfplustm.c158 smc->hw.fp.fifo.rbc_ram_start = 0 ;
159 smc->hw.fp.fifo.rbc_ram_end =
160 smc->hw.fp.fifo.rbc_ram_start + RBC_MEM_SIZE ;
162 MARW(smc->hw.fp.fifo.rbc_ram_start) ;
163 for (i = smc->hw.fp.fifo.rbc_ram_start;
164 i < (u_short) (smc->hw.fp.fifo.rbc_ram_end-1); i++)
178 outpw(FM_A(FM_RPR1),smc->hw.fp.fifo.rx1_fifo_start) ; /* RPR1 */
179 outpw(FM_A(FM_SWPR1),smc->hw.fp.fifo.rx1_fifo_start) ; /* SWPR1 */
180 outpw(FM_A(FM_WPR1),smc->hw.fp.fifo.rx1_fifo_start) ; /* WPR1 */
181 outpw(FM_A(FM_EARV1),smc->hw.fp
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/drivers/net/skfp/
H A Dfplustm.c158 smc->hw.fp.fifo.rbc_ram_start = 0 ;
159 smc->hw.fp.fifo.rbc_ram_end =
160 smc->hw.fp.fifo.rbc_ram_start + RBC_MEM_SIZE ;
162 MARW(smc->hw.fp.fifo.rbc_ram_start) ;
163 for (i = smc->hw.fp.fifo.rbc_ram_start;
164 i < (u_short) (smc->hw.fp.fifo.rbc_ram_end-1); i++)
178 outpw(FM_A(FM_RPR1),smc->hw.fp.fifo.rx1_fifo_start) ; /* RPR1 */
179 outpw(FM_A(FM_SWPR1),smc->hw.fp.fifo.rx1_fifo_start) ; /* SWPR1 */
180 outpw(FM_A(FM_WPR1),smc->hw.fp.fifo.rx1_fifo_start) ; /* WPR1 */
181 outpw(FM_A(FM_EARV1),smc->hw.fp
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/iproute2/ip/
H A Dipntable.c354 FILE *fp = (FILE*)arg; local
400 fprintf(fp, "inet ");
402 fprintf(fp, "inet6 ");
404 fprintf(fp, "dnet ");
406 fprintf(fp, "(%d) ", ndtm->ndtm_family);
410 fprintf(fp, "%s ", name);
413 fprintf(fp, "%s", _SL_);
418 fprintf(fp, " ");
422 fprintf(fp, "thresh1 %u ", thresh1);
426 fprintf(fp, "thresh
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/iproute2-3.x/ip/
H A Dipntable.c354 FILE *fp = (FILE*)arg; local
400 fprintf(fp, "inet ");
402 fprintf(fp, "inet6 ");
404 fprintf(fp, "dnet ");
406 fprintf(fp, "(%d) ", ndtm->ndtm_family);
410 fprintf(fp, "%s ", name);
413 fprintf(fp, "%s", _SL_);
418 fprintf(fp, " ");
422 fprintf(fp, "thresh1 %u ", thresh1);
426 fprintf(fp, "thresh
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/iproute2/ip/
H A Dipntable.c354 FILE *fp = (FILE*)arg; local
400 fprintf(fp, "inet ");
402 fprintf(fp, "inet6 ");
404 fprintf(fp, "dnet ");
406 fprintf(fp, "(%d) ", ndtm->ndtm_family);
410 fprintf(fp, "%s ", name);
413 fprintf(fp, "%s", _SL_);
418 fprintf(fp, " ");
422 fprintf(fp, "thresh1 %u ", thresh1);
426 fprintf(fp, "thresh
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/iproute2-3.x/ip/
H A Dipntable.c354 FILE *fp = (FILE*)arg; local
400 fprintf(fp, "inet ");
402 fprintf(fp, "inet6 ");
404 fprintf(fp, "dnet ");
406 fprintf(fp, "(%d) ", ndtm->ndtm_family);
410 fprintf(fp, "%s ", name);
413 fprintf(fp, "%s", _SL_);
418 fprintf(fp, " ");
422 fprintf(fp, "thresh1 %u ", thresh1);
426 fprintf(fp, "thresh
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/iproute2/ip/
H A Dipntable.c354 FILE *fp = (FILE*)arg; local
400 fprintf(fp, "inet ");
402 fprintf(fp, "inet6 ");
404 fprintf(fp, "dnet ");
406 fprintf(fp, "(%d) ", ndtm->ndtm_family);
410 fprintf(fp, "%s ", name);
413 fprintf(fp, "%s", _SL_);
418 fprintf(fp, " ");
422 fprintf(fp, "thresh1 %u ", thresh1);
426 fprintf(fp, "thresh
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/iproute2-3.x/ip/
H A Dipntable.c354 FILE *fp = (FILE*)arg; local
400 fprintf(fp, "inet ");
402 fprintf(fp, "inet6 ");
404 fprintf(fp, "dnet ");
406 fprintf(fp, "(%d) ", ndtm->ndtm_family);
410 fprintf(fp, "%s ", name);
413 fprintf(fp, "%s", _SL_);
418 fprintf(fp, " ");
422 fprintf(fp, "thresh1 %u ", thresh1);
426 fprintf(fp, "thresh
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/rc/
H A Dopenvpn.c50 FILE *fp; local
189 fp = fopen(&buffer[0], "w");
191 fprintf(fp, "# Automatically generated configuration\n");
192 fprintf(fp, "daemon\n");
194 fprintf(fp, "client\n");
195 fprintf(fp, "dev %s\n", &iface[0]);
197 fprintf(fp, "proto %s\n", nvram_safe_get(&buffer[0]));
199 fprintf(fp, "remote %s ", nvram_safe_get(&buffer[0]));
201 fprintf(fp, "%d\n", nvram_get_int(&buffer[0]));
207 fprintf(fp, "ifconfi
566 FILE *fp, *ccd, *fp_client; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/rc/
H A Dopenvpn.c50 FILE *fp; local
189 fp = fopen(&buffer[0], "w");
191 fprintf(fp, "# Automatically generated configuration\n");
192 fprintf(fp, "daemon\n");
194 fprintf(fp, "client\n");
195 fprintf(fp, "dev %s\n", &iface[0]);
197 fprintf(fp, "proto %s\n", nvram_safe_get(&buffer[0]));
199 fprintf(fp, "remote %s ", nvram_safe_get(&buffer[0]));
201 fprintf(fp, "%d\n", nvram_get_int(&buffer[0]));
207 fprintf(fp, "ifconfi
566 FILE *fp, *ccd, *fp_client; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/rc/
H A Dopenvpn.c50 FILE *fp; local
189 fp = fopen(&buffer[0], "w");
191 fprintf(fp, "# Automatically generated configuration\n");
192 fprintf(fp, "daemon\n");
194 fprintf(fp, "client\n");
195 fprintf(fp, "dev %s\n", &iface[0]);
197 fprintf(fp, "proto %s\n", nvram_safe_get(&buffer[0]));
199 fprintf(fp, "remote %s ", nvram_safe_get(&buffer[0]));
201 fprintf(fp, "%d\n", nvram_get_int(&buffer[0]));
207 fprintf(fp, "ifconfi
566 FILE *fp, *ccd, *fp_client; local
[all...]

Completed in 367 milliseconds

<<11121314151617181920>>