Home
last modified time | relevance | path

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

/external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/tools/
Dlist_ports_linux.py42 def read_line(filename): function
68 snr = read_line(sysfs_path+'/serial')
74 read_line(sysfs_path+'/idVendor'),
75 read_line(sysfs_path+'/idProduct'),
83 dev = int(read_line(os.path.join(sysfs_path, 'devnum')))
112 return read_line(sys_dev_path)
119 return read_line(product_name_file)
130 return read_line(sys_id_path)
/external/chromium-trace/catapult/telemetry/third_party/pyserial/
Dlinux-product_info.patch8 return read_line(sys_dev_path)
15 + return read_line(product_name_file)
/external/toybox/toys/pending/
Dmodprobe.c170 static int read_line(FILE *fl, char **li) in read_line() function
231 for (line = linecp = NULL; read_line(fc, &line) > 0; in config_action()
293 while (read_line(fe, &line) > 0) { in depmode_read_entry()
321 for (; read_line(fe, &line) > 0; free(line)) { in find_dep()
519 while (read_line(fs, &procline) > 0) { in modprobe_main()
/external/e2fsprogs/ext2ed/
Dmain.c267 void read_line(char * foo) { in read_line() function
318 read_line(command_line); in parser()
/external/dbus/tools/
Ddbus-launch.c227 read_line (int fd, in read_line() function
1187 switch (read_line (bus_address_to_launcher_pipe[READ_END], in main()
1207 switch (read_line (bus_pid_to_launcher_pipe[READ_END], buf, MAX_PID_LEN)) in main()
/external/javasqlite/src/main/java/SQLite/
DShell.java461 String read_line(BufferedReader is, String prompt) { in read_line() method in Shell
477 while ((line = read_line(is, prompt)) != null) { in do_input()