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

  /frameworks/base/core/jni/
android_util_Log.cpp 85 jint bufID, jint priority, jstring tagObj, jstring msgObj)
95 if (bufID < 0 || bufID >= LOG_ID_MAX) {
96 jniThrowNullPointerException(env, "bad bufID");
104 int res = __android_log_buf_write(bufID, (android_LogPriority)priority, tag, msg);
  /frameworks/base/tools/layoutlib/bridge/src/android/util/
Log_Delegate.java 43 static int println_native(int bufID, int priority, String tag, String msgs) {
  /frameworks/base/core/java/android/util/
Log.java 369 /** @hide */ public static native int println_native(int bufID,
384 public static int printlns(int bufID, int priority, String tag, String msg,
386 ImmediateLogWriter logWriter = new ImmediateLogWriter(bufID, priority, tag);
442 private int bufID;
452 public ImmediateLogWriter(int bufID, int priority, String tag) {
453 this.bufID = bufID;
467 written += println_native(bufID, priority, tag, new String(cbuf, off, len));
  /system/core/liblog/
logger_write.c 353 LIBLOG_ABI_PUBLIC int __android_log_buf_write(int bufID, int prio,
363 if ((bufID != LOG_ID_RADIO) &&
373 bufID = LOG_ID_RADIO;
392 return write_to_log(bufID, vec, 3);
418 LIBLOG_ABI_PUBLIC int __android_log_buf_print(int bufID, int prio,
429 return __android_log_buf_write(bufID, prio, tag, buf);
  /external/curl/lib/
setup-os400.h 81 GSK_BUF_ID bufID,
102 GSK_BUF_ID bufID,
  /libcore/ojluni/src/main/native/
java_util_zip_Deflater.c 49 static jfieldID bufID, offID, lenID;
58 bufID = (*env)->GetFieldID(env, cls, "buf", "[B");
125 jarray this_buf = (*env)->GetObjectField(env, this, bufID);
java_util_zip_Inflater.c 49 static jfieldID bufID, offID, lenID;
55 bufID = (*env)->GetFieldID(env, cls, "buf", "[B");
114 jarray this_buf = (jarray)(*env)->GetObjectField(env, this, bufID);
  /frameworks/multidex/library/test/src/android/util/
Log.java 221 public static int println(int bufID,
  /system/core/include/log/
log.h 688 int __android_log_buf_write(int bufID, int prio, const char *tag, const char *text);
689 int __android_log_buf_print(int bufID, int prio, const char *tag, const char *fmt, ...)
  /external/curl/packages/OS400/
os400sys.c 506 Curl_gsk_attribute_set_buffer_a(gsk_handle my_gsk_handle, GSK_BUF_ID bufID,
527 rc = gsk_attribute_set_buffer(p->h, bufID, ebcdicbuf, bufSize);
608 Curl_gsk_attribute_get_buffer_a(gsk_handle my_gsk_handle, GSK_BUF_ID bufID,
622 if((rc = gsk_attribute_get_buffer(p->h, bufID, &mybuf, &mylen)) != GSK_OK)

Completed in 500 milliseconds