Searched refs:line (Results 1 - 25 of 564) sorted by relevance

1234567891011>>

/asus-wl-520gu-7.0.1.45/src/router/samba/source/smbwrapper/
H A Dsmbsh.c40 pstring line, wd; local
86 u = fgets_slash(line, sizeof(line)-1, x_stdin);
99 slprintf(line,sizeof(line)-1,"PWD_%d", (int)getpid());
101 smbw_setshared(line, wd);
103 slprintf(line,sizeof(line)-1,"%s/smbwrapper.so", libd);
104 setenv("LD_PRELOAD", line, 1);
106 slprintf(line,sizeo
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/pci/
H A Dgen-devlist.c32 char line[1024], *c, *bra, vend[8]; local
46 while (fgets(line, sizeof(line)-1, stdin)) {
48 if ((c = strchr(line, '\n')))
50 if (!line[0] || line[0] == '#')
52 if (line[1] == ' ') {
53 if (line[0] == 'C' && strlen(line) > 4 && line[
[all...]
/asus-wl-520gu-7.0.1.45/src/router/samba/source/aparser/
H A Dtemplate.awk4 LOCAL, i, pat, line)
8 while ((getline line < tplname) > 0) {
9 while ((i = match(line,"@[a-zA-Z_]*@")) != 0) {
10 pat=substr(line,i+1,RLENGTH-2);
12 gsub("@"pat"@", v[pat], line);
15 xprintf(f, "%s\n", line);
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/zorro/
H A Dgen-devlist.c31 char line[1024], *c, *bra, manuf[8]; local
44 while (fgets(line, sizeof(line)-1, stdin)) {
46 if ((c = strchr(line, '\n')))
48 if (!line[0] || line[0] == '#')
50 if (line[0] == '\t') {
53 if (strlen(line) > 5 && line[5] == ' ') {
54 c = line
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/x86_64/lib/
H A Diodebug.c3 void * __io_virt_debug(unsigned long x, const char *file, int line) argument
6 printk("io mapaddr 0x%05lx not valid at %s:%d!\n", x, file, line);
12 unsigned long __io_phys_debug(unsigned long x, const char *file, int line) argument
15 printk("io mapaddr 0x%05lx not valid at %s:%d!\n", x, file, line);
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/i386/lib/
H A Diodebug.c3 void * __io_virt_debug(unsigned long x, const char *file, int line) argument
6 printk("io mapaddr 0x%05lx not valid at %s:%d!\n", x, file, line);
12 unsigned long __io_phys_debug(unsigned long x, const char *file, int line) argument
15 printk("io mapaddr 0x%05lx not valid at %s:%d!\n", x, file, line);
/asus-wl-520gu-7.0.1.45/src/include/
H A Dsbhndmips.h30 #define _PADLINE(line) pad ## line
31 #define _XSTR(line) _PADLINE(line)
H A Dsbgige.h24 #define _PADLINE(line) pad ## line
25 #define _XSTR(line) _PADLINE(line)
/asus-wl-520gu-7.0.1.45/src/router/samba/source/printing/
H A Dpcap.c45 * line is a continuation line so that a set of lines can be read as one
48 * A line stating with a hash '#' is assumed to be a comment and is ignored
85 /*DEBUG(3,(" strlocate %s in line '%s',ret=%d\n",xpS,xpLine,iRet));*/
98 char *line,*p; local
100 line = NULL;
112 for (;(line = fgets_slash(NULL,sizeof(pstring),pfile)); safe_free(line))
114 if (*line == '*' || *line
168 char *line; local
246 char *line=NULL; local
325 char *line; local
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/arm/mach-footbridge/
H A Dpersonal-pci.c23 unsigned char line; local
25 pci_read_config_byte(dev, PCI_INTERRUPT_LINE, &line);
27 if (line > 0x40 && line <= 0x5f) {
28 /* line corresponds to the bit controlling this interrupt
32 return irqmap_personal_server[(line & 0x1f) - 8];
33 } else if (line == 0) {
37 return irqmap_personal_server[(line - 1) & 3];
/asus-wl-520gu-7.0.1.45/src/router/samba/source/popt/
H A Dpoptconfig.c8 static void configLine(poptContext con, char * line) { argument
16 if (strncmp(line, con->appName, nameLength)) return;
17 line += nameLength;
18 if (!*line || !isspace(*line)) return;
19 while (*line && isspace(*line)) line++;
20 entryType = line;
22 while (!*line || !isspac
[all...]
/asus-wl-520gu-7.0.1.45/src/router/wanduck/
H A Dwget.c54 char *host = url, *path = "", auth[128], line[PATH_MAX]; local
115 memset(line, 0, PATH_MAX);
116 sprintf(line, "GET /%s HTTP/1.0\r\n", path);
117 sprintf(line, "%sUser-Agent: wget\r\n", line);
118 sprintf(line, "%sHost: %s\r\n", line, host);
119 sprintf(line, "%sAccept: */*\r\n", line);
121 sprintf(line, "
[all...]
/asus-wl-520gu-7.0.1.45/src/router/busybox/tests/
H A Dtester.sh9 # set up defaults (can be changed with cmd-line options)
97 # go through each line in the testcase file
98 cat $TESTCASES | while read line
100 #echo $line
102 if [ "$line" ]
104 if [ `echo "$line" | cut -c1` != "#" ]
108 # (this only tests the applet at the beginning of the line)
109 #applet=`echo $line | cut -d' ' -f1`
110 applet=`echo $line | sed 's/\(^[^ ;]*\)[ ;].*/\1/'`
117 # execute line usin
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/linux/
H A Ddevpts_fs.h50 devpts_pty_new(int line, kdev_t device) argument
53 return devpts_upcall_new(line,device);
57 devpts_pty_kill(int line) argument
60 return devpts_upcall_kill(line);
67 devpts_pty_new(int line, kdev_t device) { } argument
70 devpts_pty_kill(int line) { } argument
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/linux/
H A Ddevpts_fs.h50 devpts_pty_new(int line, kdev_t device) argument
53 return devpts_upcall_new(line,device);
57 devpts_pty_kill(int line) argument
60 return devpts_upcall_kill(line);
67 devpts_pty_new(int line, kdev_t device) { } argument
70 devpts_pty_kill(int line) { } argument
/asus-wl-520gu-7.0.1.45/src/router/LPRng/UTILS/
H A Dtest_rw_pipe.c10 char line[4]; local
28 i = read( fds[0], line, sizeof(line) );
30 line[i] = 0;
31 if( strcmp( line, m2 ) ) exit(1);
37 i = read( fds[1], line, sizeof(line) );
39 line[i] = 0;
40 if( strcmp( line, m1 ) ) exit(1);
/asus-wl-520gu-7.0.1.45/src/router/udhcpd/
H A Dfiles.h7 int (*handler)(char *line, void *var);
/asus-wl-520gu-7.0.1.45/src/router/samba/source/smbd/
H A Dsrvstr.c27 size_t srvstr_push_fn(const char *function, unsigned int line, argument
37 return push_string_fn(function, line, base_ptr, dest, src, -1, flags);
39 return push_string_fn(function, line, base_ptr, dest, src, max_send - buf_used, flags);
43 return push_string_fn(function, line, base_ptr, dest, src, dest_len, flags);
/asus-wl-520gu-7.0.1.45/src/cfe/cfe/main/
H A Dcfe_ldr_srec.c137 * Read a line of text from a file using our crude file stream
142 * buffer - will receive line of text
193 * getbyte(line)
198 * line - pointer to pointer to characters (updated on exit)
204 static int getbyte(char **line) argument
209 c1 = getxdigit(*(*(line)+0));
212 c2 = getxdigit(*(*(line)+1));
216 (*line) += 2;
223 * procsrec(line,loadaddr,blklen,data)
229 * line
238 procsrec(char *line, unsigned int *loadaddr, unsigned int *blklen, unsigned char *data) argument
410 char line[256]; local
[all...]
/asus-wl-520gu-7.0.1.45/src/router/rp-l2tp/
H A Doptions.c158 * line -- the input line
161 * Updated value of line
163 * Chomps a word from line
166 l2tp_chomp_word(char const *line, char *word) argument
171 while(*line && isspace(*line)) line++;
173 if (*line != '"') {
175 while (*line
214 split_line_into_words(char const *line, char *name, char *value) argument
351 char *line; local
[all...]
/asus-wl-520gu-7.0.1.45/src/router/config/
H A Dconf.c33 static char line[128]; variable
83 line[0] = '\n';
84 line[1] = 0;
101 fgets(line, 128, stdin);
122 line[0] = 'y';
123 line[1] = '\n';
124 line[2] = 0;
130 line[0] = 'm';
131 line[1] = '\n';
132 line[
[all...]
/asus-wl-520gu-7.0.1.45/src/router/samba/source/lib/
H A Dclobber.c42 void clobber_region(const char *fn, unsigned int line, char *dest, size_t len) argument
46 global_clobber_region_line = line;
/asus-wl-520gu-7.0.1.45/src/router/dproxy/
H A Dcache.c72 char line[BUF_SIZE]; local
81 while( fgets(line, BUF_SIZE, fp) ){
82 token = strtok( line, " ");
98 char line[BUF_SIZE]; local
107 while( fgets(line, BUF_SIZE, fp) ){
108 strtok( line, " ");
111 while( isalnum(line[i]) || (line[i]=='.') )result[i] = line[i++];
166 char line[BUF_SIZ local
224 char line[BUF_SIZE]; local
290 char line[BUF_SIZE]; local
[all...]
/asus-wl-520gu-7.0.1.45/src/router/rc/
H A Dhttp_ex.c86 char *host = url, *path = "", auth[128] = { 0 }, line[1024]; local
142 sprintf(line, "%s /%s HTTP/1.1\r\n", method == METHOD_POST?"POST":"GET", path);
143 sprintf(line, "%sHost: %s\r\n", line, host);
144 sprintf(line, "%sUser-Agent: wget\r\n", line);
146 sprintf(line, "%sAuthorization: Basic %s\r\n", line, auth);
148 sprintf(line, "%sRange: bytes=%ld-\r\n", line, offse
[all...]
/asus-wl-520gu-7.0.1.45/src/router/rc.orig/
H A Dhttp_ex.c86 char *host = url, *path = "", auth[128] = { 0 }, line[1024]; local
142 sprintf(line, "%s /%s HTTP/1.1\r\n", method == METHOD_POST?"POST":"GET", path);
143 sprintf(line, "%sHost: %s\r\n", line, host);
144 sprintf(line, "%sUser-Agent: wget\r\n", line);
146 sprintf(line, "%sAuthorization: Basic %s\r\n", line, auth);
148 sprintf(line, "%sRange: bytes=%ld-\r\n", line, offse
[all...]

Completed in 212 milliseconds

1234567891011>>