Searched defs:is_hit (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/chrome/renderer/pepper/
H A Dpnacl_translation_resource_host.h33 PP_Bool* is_hit,
54 PP_Bool* is_hit; member in class:PnaclTranslationResourceHost::CacheRequestInfo
74 PP_Bool* is_hit,
83 bool is_hit,
H A Dpnacl_translation_resource_host.cc19 : is_hit(hit), file_handle(handle), callback(cb) {}
65 PP_Bool* is_hit,
77 is_hit,
87 PP_Bool* is_hit,
101 instance, CacheRequestInfo(is_hit, file_handle, callback)));
133 bool is_hit,
142 *it->second.is_hit = PP_FromBool(is_hit);
61 RequestNexeFd( int render_view_id, PP_Instance instance, const nacl::PnaclCacheInfo& cache_info, PP_Bool* is_hit, PP_FileHandle* file_handle, scoped_refptr<TrackedCallback> callback) argument
83 SendRequestNexeFd( int render_view_id, PP_Instance instance, const nacl::PnaclCacheInfo& cache_info, PP_Bool* is_hit, PP_FileHandle* file_handle, scoped_refptr<TrackedCallback> callback) argument
131 OnNexeTempFileReply( PP_Instance instance, bool is_hit, IPC::PlatformFileForTransit file) argument
H A Dppb_nacl_private_impl.cc259 PP_Bool* is_hit,
265 if (!pexe_url || !last_modified || !etag || !is_hit || !handle)
286 is_hit, local
253 GetNexeFd(PP_Instance instance, const char* pexe_url, uint32_t abi_version, uint32_t opt_level, const char* last_modified, const char* etag, PP_Bool* is_hit, PP_FileHandle* handle, struct PP_CompletionCallback callback) argument
/external/chromium_org/chrome/browser/nacl_host/
H A Dpnacl_host_unittest.cc59 void CallbackExpectMiss(base::PlatformFile fd, bool is_hit) { argument
60 EXPECT_FALSE(is_hit);
72 void CallbackExpectHit(base::PlatformFile fd, bool is_hit) { argument
73 EXPECT_TRUE(is_hit);
H A Dnacl_host_message_filter.cc160 bool is_hit) {
163 is_hit,
157 AsyncReturnTemporaryFile( int pp_instance, base::PlatformFile fd, bool is_hit) argument
/external/chromium_org/chrome/browser/predictors/
H A Dautocomplete_action_predictor.cc354 const bool is_hit = (*url_it == opened_url); local
363 row.number_of_hits = is_hit ? 1 : 0;
364 row.number_of_misses = is_hit ? 0 : 1;
370 row.number_of_hits = it->second.number_of_hits + (is_hit ? 1 : 0);
371 row.number_of_misses = it->second.number_of_misses + (is_hit ? 0 : 1);
/external/chromium_org/ppapi/native_client/src/untrusted/pnacl_irt_shim/
H A Dpnacl_shim.c2852 static int32_t Pnacl_M13_PPB_NaCl_Private_GetNexeFd(PP_Instance instance, const char* pexe_url, uint32_t abi_version, uint32_t opt_level, const char* last_modified, const char* etag, PP_Bool* is_hit, PP_FileHandle* nexe_handle, struct PP_CompletionCallback* callback) { argument
2854 return iface->GetNexeFd(instance, pexe_url, abi_version, opt_level, last_modified, etag, is_hit, nexe_handle, *callback);
4666 .GetNexeFd = (int32_t (*)(PP_Instance instance, const char* pexe_url, uint32_t abi_version, uint32_t opt_level, const char* last_modified, const char* etag, PP_Bool* is_hit, PP_FileHandle* nexe_handle, struct PP_CompletionCallback callback))&Pnacl_M13_PPB_NaCl_Private_GetNexeFd,

Completed in 113 milliseconds