Lines Matching refs:temp
830 char temp[ MAX_PATH ]; in start_logging() local
834 GetTempPath( sizeof(temp) - 8, temp ); in start_logging()
835 strcat( temp, "adb.log" ); in start_logging()
842 flog = fopen( temp, "at" ); in start_logging()
974 char temp[3]; in launch_server() local
977 ret = ReadFile( pipe_read, temp, 3, &count, NULL ); in launch_server()
983 if (count != 3 || temp[0] != 'O' || temp[1] != 'K' || temp[2] != '\n') { in launch_server()
1018 char temp[3]; in launch_server()
1020 temp[0] = 'A'; temp[1] = 'B'; temp[2] = 'C'; in launch_server()
1023 int ret = adb_read(fd[0], temp, 3); in launch_server()
1030 if (ret != 3 || temp[0] != 'O' || temp[1] != 'K' || temp[2] != '\n') { in launch_server()