Lines Matching refs:temp
917 char temp[ MAX_PATH ];
921 GetTempPath( sizeof(temp) - 8, temp );
922 strcat( temp, "adb.log" );
929 flog = fopen( temp, "at" );
1109 char temp[3];
1112 ret = ReadFile( pipe_read, temp, 3, &count, NULL );
1118 if (count != 3 || temp[0] != 'O' || temp[1] != 'K' || temp[2] != '\n') {
1155 char temp[3];
1157 temp[0] = 'A'; temp[1] = 'B'; temp[2] = 'C';
1160 int ret = adb_read(fd[0], temp, 3);
1167 if (ret != 3 || temp[0] != 'O' || temp[1] != 'K' || temp[2] != '\n') {