HomeSort by relevance Sort by last modified time
    Searched refs:bufID (Results 1 - 5 of 5) sorted by null

  /frameworks/base/core/jni/
android_util_Log.cpp 104 jint bufID, jint priority, jstring tagObj, jstring msgObj)
119 if (bufID < 0 || bufID >= LOG_ID_MAX) {
125 env->ThrowNew(npeClazz, "bad bufID");
133 int res = __android_log_buf_write(bufID, (android_LogPriority)priority, tag, msg);
  /system/core/liblog/
logd_write.c 162 int __android_log_buf_write(int bufID, int prio, const char *tag, const char *msg)
178 bufID = LOG_ID_RADIO;
187 return write_to_log(bufID, vec, 3);
211 int __android_log_buf_print(int bufID, int prio, const char *tag, const char *fmt, ...)
220 return __android_log_buf_write(bufID, prio, tag, buf);
  /system/core/include/cutils/
log.h 438 int __android_log_buf_write(int bufID, int prio, const char *tag, const char *text);
439 int __android_log_buf_print(int bufID, int prio, const char *tag, const char *fmt, ...);
  /frameworks/base/core/java/android/util/
Log.java 328 /** @hide */ public static native int println_native(int bufID,
  /external/webkit/WebKit/chromium/src/
GraphicsContext3D.cpp 888 GLuint bufID = EXTRACT(buffer);
890 m_boundArrayBuffer = bufID;
891 glBindBuffer(target, bufID);
    [all...]

Completed in 557 milliseconds