Lines Matching refs:temp_buf
451 char temp_buf[CONFIG_LEN]; local
469 memcpy(temp_buf, path_buf, (count < CONFIG_LEN ? count : CONFIG_LEN));
470 print_info("[tp-gsl][%s][%s]\n", __func__, temp_buf);
472 buf[3] = char_to_int(temp_buf[14]) << 4 | char_to_int(temp_buf[15]);
473 buf[2] = char_to_int(temp_buf[16]) << 4 | char_to_int(temp_buf[17]);
474 buf[1] = char_to_int(temp_buf[18]) << 4 | char_to_int(temp_buf[19]);
475 buf[0] = char_to_int(temp_buf[20]) << 4 | char_to_int(temp_buf[21]);
477 buf[7] = char_to_int(temp_buf[5]) << 4 | char_to_int(temp_buf[6]);
478 buf[6] = char_to_int(temp_buf[7]) << 4 | char_to_int(temp_buf[8]);
479 buf[5] = char_to_int(temp_buf[9]) << 4 | char_to_int(temp_buf[10]);
480 buf[4] = char_to_int(temp_buf[11]) << 4 | char_to_int(temp_buf[12]);
481 if ('v' == temp_buf[0] && 's' == temp_buf[1]) {
482 memcpy(gsl_read, temp_buf, 4);
483 } else if ('s' == temp_buf[0] && 't' == temp_buf[1]) {
486 } else if ('e' == temp_buf[0] && 'n' == temp_buf[1]) {
491 } else if ('r' == temp_buf[0] && 'e' == temp_buf[1]) {
492 memcpy(gsl_read, temp_buf, 4);
494 } else if ('w' == temp_buf[0] && 'r' == temp_buf[1]) {
498 else if ('i' == temp_buf[0] && 'd' == temp_buf[1]) {