OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:lenptr
(Results
1 - 3
of
3
) sorted by null
/external/pcre/
pcre_newline.c
69
lenptr
where to return the length
76
_pcre_is_newline(USPTR ptr, int type, USPTR endptr, int *
lenptr
, BOOL utf8)
83
case 0x000a: *
lenptr
= 1; return TRUE; /* LF */
84
case 0x000d: *
lenptr
= (ptr < endptr - 1 && ptr[1] == 0x0a)? 2 : 1;
95
case 0x000c: *
lenptr
= 1; return TRUE; /* FF */
96
case 0x000d: *
lenptr
= (ptr < endptr - 1 && ptr[1] == 0x0a)? 2 : 1;
98
case 0x0085: *
lenptr
= utf8? 2 : 1; return TRUE; /* NEL */
100
case 0x2029: *
lenptr
= 3; return TRUE; /* PS */
118
lenptr
where to return the length
125
_pcre_was_newline(USPTR ptr, int type, USPTR startptr, int *
lenptr
, BOOL utf8
[
all
...]
pcregrep.c
629
/* The length of the endline sequence that is found is set via
lenptr
. This may
635
lenptr
where to put the length of the eol sequence
641
end_of_line(char *p, char *endptr, int *
lenptr
)
650
*
lenptr
= 1;
653
*
lenptr
= 0;
660
*
lenptr
= 1;
663
*
lenptr
= 0;
672
*
lenptr
= 0;
677
*
lenptr
= 2;
707
*
lenptr
= 1
[
all
...]
/external/ppp/pppd/plugins/radius/
sendserver.c
40
unsigned char *buf, *vector, *
lenptr
;
local
51
lenptr
= buf++;
66
*
lenptr
= length + 8;
75
*
lenptr
= length + 8;
Completed in 880 milliseconds