Searched defs:txt (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/libs/utils/
H A DTextOutput.cpp122 static void textOutputPrinter(void* cookie, const char* txt) argument
124 ((TextOutput*)cookie)->print(txt, strlen(txt));
H A DBufferedTextOutput.cpp50 status_t append(const char* txt, size_t len) { argument
56 memcpy(buffer+bufferPos, txt, len);
155 status_t BufferedTextOutput::print(const char* txt, size_t len) argument
162 const char* const end = txt+len;
166 while (txt < end) {
168 const char* first = txt;
169 while (txt < end && *txt != '\n') txt++;
172 while (txt < en
[all...]
H A DDebug.cpp41 static void defaultPrintFunc(void* cookie, const char* txt) argument
43 printf("%s", txt);
H A DResourceTypes.cpp66 static void printToLogFunc(void* cookie, const char* txt) argument
68 LOGV("%s", txt);
/frameworks/base/libs/binder/
H A DProcessState.cpp303 void ProcessState::setArgV0(const char* txt) argument
306 strncpy((char*)mArgV[0], txt, mArgLen);
307 set_process_name(txt);
/frameworks/base/libs/rs/
H A DrsProgram.cpp233 void Program::setShader(const char *txt, uint32_t len) argument
235 mUserShader.setTo(txt, len);
H A DrsProgramVertex.cpp56 static void logMatrix(const char *txt, const float *f) argument
58 LOGV("Matrix %s, %p", txt, f);
/frameworks/base/opengl/libagl/
H A Dcopybit.cpp517 int txt = max(t0.y, t2.y); local
519 (txr != max(t1.x, t3.x)) || (txt != max(t1.y, t3.y))) {
524 (txr != FIXED_ONE) || (txt != FIXED_ONE)) {
527 txl, txb, txr, txt);

Completed in 152 milliseconds