Lines Matching defs:actual
1126 * Try to find the actual program which is running in the child process.
3465 * Enum corresponding to the actual OSC codes rather than the internal
7496 char *actual = argv[my_index];
7503 TRACE(("...actual %s\n", actual));
7504 if (IsEmpty(actual))
7516 if (strlen(expect) >= strlen(actual))
7518 if (strncmp(expect, actual, strlen(expect)))
7521 if (strcmp(actual, expect))
8251 int actual = (value <= 0) ? pushed : (value - 1);
8253 TRACE(("xtermPushColors %d:%d\n", actual, pushed));
8254 if (actual < MAX_SAVED_SGR && actual >= 0) {
8258 if ((palette = allocColorSlot(xw, actual)) != NULL) {
8282 int actual = (value <= 0) ? popped : (value - 1);
8284 TRACE(("xtermPopColors %d:%d\n", actual, popped));
8285 if (actual < MAX_SAVED_SGR && actual >= 0) {
8289 if ((palette = s->palettes[actual]) != NULL) {
8297 s->used = actual;