Searched refs:linebuf (Results 1 – 3 of 3) sorted by relevance
/system/extras/perfprofd/ |
D | perfprofdcore.cc | 337 char *linebuf = NULL; in readFile() local 340 getline(&linebuf, &line_length, fp) != -1; in readFile() 346 if (linebuf[0] == '#') { in readFile() 351 if (isblank(linebuf)) { in readFile() 356 eq = strchr(linebuf, '='); in readFile() 363 key = linebuf; in readFile() 370 free(linebuf); in readFile()
|
/system/bt/btif/src/ |
D | btif_storage.c | 1613 char linebuf[BTIF_STORAGE_MAX_LINE_SZ+20]; in btif_storage_add_device_to_autopair_blacklist() local 1620 int line_size = sizeof(linebuf); in btif_storage_add_device_to_autopair_blacklist() 1622 BTIF_STORAGE_KEY_AUTOPAIR_DYNAMIC_BLACKLIST_ADDR, linebuf, &line_size)) in btif_storage_add_device_to_autopair_blacklist() 1625 strncat (linebuf, input_value, BTIF_STORAGE_MAX_LINE_SZ); in btif_storage_add_device_to_autopair_blacklist() 1629 strncpy( linebuf,input_value, BTIF_STORAGE_MAX_LINE_SZ); in btif_storage_add_device_to_autopair_blacklist() 1634 BTIF_STORAGE_KEY_AUTOPAIR_DYNAMIC_BLACKLIST_ADDR, linebuf); in btif_storage_add_device_to_autopair_blacklist() 1652 char linebuf[BTIF_STORAGE_MAX_LINE_SZ]; in btif_storage_is_fixed_pin_zeros_keyboard() local 1659 int line_size = sizeof(linebuf); in btif_storage_is_fixed_pin_zeros_keyboard() 1661 BTIF_STORAGE_KEY_AUTOPAIR_FIXPIN_KBLIST, linebuf, &line_size)) in btif_storage_is_fixed_pin_zeros_keyboard() 1663 if (strcasestr(linebuf,bdstr) != NULL) in btif_storage_is_fixed_pin_zeros_keyboard()
|
/system/core/logwrapper/ |
D | logwrap.c | 101 static void add_line_to_abbr_buf(struct abbr_buf *a_buf, char *linebuf, int linelen); 239 static void add_line_to_abbr_buf(struct abbr_buf *a_buf, char *linebuf, int linelen) { in add_line_to_abbr_buf() argument 242 add_line_to_linear_buf(&a_buf->b_buf, linebuf, linelen); in add_line_to_abbr_buf() 245 add_line_to_circular_buf(&a_buf->e_buf, linebuf, linelen); in add_line_to_abbr_buf()
|