Home
last modified time | relevance | path

Searched refs:parser (Results 1 – 6 of 6) sorted by relevance

/bionic/libc/unistd/
Dsysconf.c366 LineParser parser[1]; in __get_nproc_conf() local
370 if (line_parser_init(parser, "/proc/cpuinfo") < 0) in __get_nproc_conf()
373 while ((p = line_parser_gets(parser))) { in __get_nproc_conf()
384 LineParser parser[1]; in __get_nproc_onln() local
388 if (line_parser_init(parser, "/proc/stat") < 0) in __get_nproc_onln()
391 while ((p = line_parser_gets(parser))) { in __get_nproc_onln()
401 LineParser parser[1]; in __get_phys_pages() local
404 if (line_parser_init(parser, "/proc/meminfo") < 0) in __get_phys_pages()
407 while ((p = line_parser_gets(parser))) { in __get_phys_pages()
410 line_parser_done(parser); in __get_phys_pages()
[all …]
/bionic/libc/kernel/tools/
Dfind_users.py48 def parse_file(path, parser): argument
49 parser.parseFile(path)
Dfind_headers.py120 def parse_file(path, parser): argument
122 parser.parseFile(path)
/bionic/libc/tools/
Dchecksyscalls.py65 parser = SysCallsTxtParser() variable
66 parser.parse_file(syscalls_file)
67 syscalls = parser.syscalls
Dgensyscalls.py353 parser = SysCallsTxtParser()
354 parser.parse_file(input)
355 self.syscalls = parser.syscalls
356 parser = None
/bionic/libc/docs/
DCHANGES.TXT42 /proc line parser.