Lines Matching defs:line
346 #define MAXLINE 80 /* maximum processed size of a line */
348 #define LINESZ 120 /* maximum useful size of a mapping line */
2036 * Check whether a line looks like an hex dump
2039 static BOOL ishexdump(const char *line, int first, int lth)
2047 b = line[first + i];
2072 char line[MAXLINE+1];
2094 /* input a (partial) line without displaying */
2105 line[lth++] = c;
2108 isdump = ishexdump(line, first, lth);
2109 if (isdump) off = getmsbhex(&line[first]);
2110 /* line is not an hexadecimal dump */
2156 /* line looks like an hexadecimal dump */
2161 v = getlsbhex(&line[i]);
2166 /* display (full) current line */
2169 c = line[i];
2276 char line[MAXFILENAME+25];
2308 /* input a (partial) line without processing */
2319 line[lth++] = c;
2322 isdump = ishexdump(line, first, lth);
2323 if (isdump) off = getmsbhex(&line[first]);
2324 /* line is not an hexadecimal dump */
2347 /* line looks like an hexadecimal dump */
2352 v = getlsbhex(&line[i]);
2357 /* display (full) current line unless dump or verbose */
2361 c = line[i];
2374 line[lth] = 0;
2376 && ((line[lth-1] == '\n') || (line[lth-1] == '\r')))
2377 line[--lth] = 0;
2378 if (!strncmp(line,"Computed hash : 0x",18))
2379 oldhash = getmsbhex(&line[18]);
2380 if (!strncmp(line,"Security key : 0x",17))
2381 key = getmsbhex(&line[17]);
2382 if (!strncmp(line,"Windows attrib : 0x",19))
2383 attrib = getmsbhex(&line[19]);
2385 || !strncmp(line,"File ",5)
2386 || !strncmp(line,"Directory ",10)) {
2416 if (!strncmp(line,"File ",5))
2417 strcpy(fullname,&line[5]);
2419 strcpy(fullname,&line[10]);
6121 * Parse the command-line options