Home
last modified time | relevance | path

Searched refs:id_hash (Results 1 – 5 of 5) sorted by relevance

/external/wpa_supplicant_8/hs20/server/www/
Dspp.php89 $id_hash = $_GET["hotspot2dot0-mobile-identifier-hash"]; variable
90 $id_hash = PREG_REPLACE("/[^0-9a-h]/i", '', $id_hash); variable
99 "WHERE mobile_identifier_hash='$id_hash'")->fetch();
121 putenv("HS20IDHASH=$id_hash");
/external/wpa_supplicant_8/hs20/server/
Dhs20_spp_server.c101 ctx->id_hash = getenv("HS20IDHASH"); in process()
102 if (ctx->id_hash) in process()
103 debug_print(ctx, 1, "ID-HASH %s", ctx->id_hash); in process()
Dspp_server.h22 const char *id_hash; member
Dspp_server.c252 const char *id_hash) in db_add_session_id_hash() argument
257 id_hash, sessionid); in db_add_session_id_hash()
2035 if (ctx->id_hash) in hs20_sim_provisioning()
2036 db_add_session_id_hash(ctx, session_id, ctx->id_hash); in hs20_sim_provisioning()
/external/tensorflow/tensorflow/contrib/factorization/kernels/
Dwals_solver_ops.cc217 const size_t id_hash = std::hash<std::thread::id>()(thread_id); in Compute() local
226 const auto key_count = factor_batch_map.count(id_hash); in Compute()
231 std::piecewise_construct, std::forward_as_tuple(id_hash), in Compute()
236 auto& factor_batch = factor_batch_map[id_hash]; in Compute()