Searched defs:update_func (Results 1 - 2 of 2) sorted by relevance

/external/autotest/server/
H A Dserver_job.py1211 def _update_uncollected_logs_list(self, update_func):
1214 @param update_func - a function that updates the list of uncollected
1226 update_func(uncollected_logs)
1244 def update_func(logs_list): function in function:server_job.add_client_log
1246 self._update_uncollected_logs_list(update_func)
1257 def update_func(logs_list): function in function:server_job.remove_client_log
1259 self._update_uncollected_logs_list(update_func)
/external/conscrypt/common/src/jni/main/cpp/conscrypt/
H A Dnative_crypto.cc2629 const char* jniName, int (*update_func)(EVP_MD_CTX*, const void*, size_t)) {
2643 if (!update_func(mdCtx, p, static_cast<std::size_t>(inLength))) {
2654 int (*update_func)(EVP_MD_CTX*, const void*, size_t)) {
2688 update_func_result = update_func(mdCtx, reinterpret_cast<const unsigned char*>(buf),
2691 // For large chunk, allocate a 64 kB buffer and stream the chunk into update_func
2692 // through the buffer, stopping as soon as update_func fails.
2704 update_func(mdCtx, reinterpret_cast<const unsigned char*>(buf.get()),
2707 // update_func failed. This will be handled later in this method.
2724 update_func_result = update_func(mdCtx, buf + in_offset, static_cast<size_t>(in_size));
2628 evpUpdate(JNIEnv* env, jobject evpMdCtxRef, jlong inPtr, jint inLength, const char* jniName, int (*update_func)(EVP_MD_CTX*, const void*, size_t)) argument
2652 evpUpdate(JNIEnv* env, jobject evpMdCtxRef, jbyteArray inJavaBytes, jint inOffset, jint inLength, const char* jniName, int (*update_func)(EVP_MD_CTX*, const void*, size_t)) argument

Completed in 139 milliseconds