Searched refs:tmp_command (Results 1 - 2 of 2) sorted by relevance

/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Dcompleter.c1337 char *tmp_command;
1340 /* Pointer within tmp_command which corresponds to text. */
1356 tmp_command = (char *) alloca (point + 1);
1357 p = tmp_command;
1362 strncpy (tmp_command, line_buffer, point);
1363 tmp_command[point] = '\0';
1372 to point, we can find the equivalent position in tmp_command
1373 by subtracting that many characters from the end of tmp_command. */
1374 word = tmp_command + point - strlen (text);
1398 tracker.advance_custom_word_point_by (p - tmp_command);
1336 char *tmp_command; local
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/
H A Dcompleter.c1239 char *tmp_command;
1242 /* Pointer within tmp_command which corresponds to text. */
1258 tmp_command = (char *) alloca (point + 1);
1259 p = tmp_command;
1264 strncpy (tmp_command, line_buffer, point);
1265 tmp_command[point] = '\0';
1274 to point, we can find the equivalent position in tmp_command
1275 by subtracting that many characters from the end of tmp_command. */
1276 word = tmp_command + point - strlen (text);
1299 tracker.advance_custom_word_point_by (p - tmp_command);
1238 char *tmp_command; local
[all...]

Completed in 179 milliseconds