Searched refs:streamObj (Results 1 – 2 of 2) sorted by relevance
/external/conscrypt/common/src/jni/main/cpp/ |
D | NativeCrypto.cpp | 3473 jobject streamObj, in NativeCrypto_create_BIO_InputStream() argument 3475 JNI_TRACE("create_BIO_InputStream(%p)", streamObj); in NativeCrypto_create_BIO_InputStream() 3477 if (streamObj == nullptr) { in NativeCrypto_create_BIO_InputStream() 3487 bio_stream_assign(bio.get(), new BioInputStream(streamObj, isFinite == JNI_TRUE)); in NativeCrypto_create_BIO_InputStream() 3489 JNI_TRACE("create_BIO_InputStream(%p) => %p", streamObj, bio.get()); in NativeCrypto_create_BIO_InputStream() 3493 static jlong NativeCrypto_create_BIO_OutputStream(JNIEnv* env, jclass, jobject streamObj) { in NativeCrypto_create_BIO_OutputStream() argument 3494 JNI_TRACE("create_BIO_OutputStream(%p)", streamObj); in NativeCrypto_create_BIO_OutputStream() 3496 if (streamObj == nullptr) { in NativeCrypto_create_BIO_OutputStream() 3506 bio_stream_assign(bio.get(), new BioOutputStream(streamObj)); in NativeCrypto_create_BIO_OutputStream() 3508 JNI_TRACE("create_BIO_OutputStream(%p) => %p", streamObj, bio.get()); in NativeCrypto_create_BIO_OutputStream()
|
/external/v8/tools/profviz/ |
D | gnuplot-4.6.3-emscripten.js | 2176 var streamObj = FS.streams[stream]; 2178 if (streamObj) streamObj.error = true; 2181 if (bytesRead < bytesToRead) streamObj.eof = true; 2376 var streamObj = FS.streams[stream]; 2377 if (streamObj.eof || streamObj.error) return -1; 2380 streamObj.eof = true; 2383 streamObj.error = true; 2392 var streamObj = FS.streams[stream]; 2393 if (streamObj.error || streamObj.eof) return 0; 2398 if (streamObj.error || (streamObj.eof && i == 0)) return 0; [all …]
|