Lines Matching defs:at
6 * You may obtain a copy of the License at
38 * If "mode" is kHexDumpLocal, we start at offset zero, and show a full
115 * We can overrun logcat easily by writing at full speed. On the
251 // At this point, 'c' is a string of the form "fully/qualified/Type;"
325 size_t at = strlen(str);
328 if ((at >= 2) && (str[0] == 'L') && (str[at - 1] == ';')) {
329 at -= 2; /* Two fewer chars to copy. */
333 newStr = (char*)malloc(at + 1); /* Add one for the '\0'. */
337 newStr[at] = '\0';
339 while (at > 0) {
340 at--;
341 newStr[at] = (str[at] == '/') ? '.' : str[at];
360 char* at;
367 newStr = at = (char*)malloc(length + 1); /* + 1 for the '\0' */
374 *(at++) = 'L';
382 *(at++) = c;
386 *(at++) = ';';
389 *at = '\0';
540 * at iteration==1 is actually (minSleep * 2).