Home
last modified time | relevance | path

Searched refs:aid (Results 1 – 25 of 242) sorted by relevance

12345678910

/third_party/mindspore/mindspore/core/mindrt/include/async/
Ddefer.h37 friend Deferred<void()> Defer(const AID &aid, void (T::*method)());
40 friend Deferred<Future<R>()> Defer(const AID &aid, Future<R> (T::*method)());
43 friend Deferred<Future<R>()> Defer(const AID &aid, R (T::*method)());
53 DeferredHelper(const AID &id, F &&function) : aid(id), f(std::forward<F>(function)) {} in DeferredHelper()
60 if (aid.IsNone()) {
64 Option<AID> optionAid = aid;
71 if (aid.IsNone()) {
75 Option<AID> optionAid = aid;
83 if (aid.IsNone()) {
87 Option<AID> optionAid = aid;
[all …]
Dasync.h53 void operator()(const AID &aid, F &&f) {
57 (void)ActorMgr::GetActorMgrRef()->Send(aid, std::move(msg));
64 Future<R> operator()(const AID &aid, F &&f) {
73 (void)ActorMgr::GetActorMgrRef()->Send(aid, std::move(msg));
81 Future<R> operator()(const AID &aid, F &&f) {
89 (void)ActorMgr::GetActorMgrRef()->Send(aid, std::move(msg));
98 void Async(const AID &aid, void (T::*method)()) {
107 (void)ActorMgr::GetActorMgrRef()->Send(aid, std::move(msg));
111 void Async(const AID &aid, void (T::*method)(Arg0), Arg1 &&arg) {
120 (void)ActorMgr::GetActorMgrRef()->Send(aid, std::move(msg));
[all …]
/third_party/mindspore/mindspore/core/mindrt/src/async/
Dfuture.cc21 void Waitf(const AID &aid) { in Waitf() argument
22 mindspore::Terminate(aid); in Waitf()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/
Dpcsc_funcs.c254 sim_types sim_type, unsigned char *aid,
401 static int scard_get_aid(struct scard_data *scard, unsigned char *aid, in scard_get_aid() argument
496 os_memcpy(aid, aid_pos, aid_len); in scard_get_aid()
657 unsigned char aid[32]; in scard_init() local
660 aid_len = scard_get_aid(scard, aid, sizeof(aid)); in scard_init()
664 os_memcpy(aid, "\xa0\x00\x00\x00\x87", 5); in scard_init()
667 wpa_hexdump(MSG_DEBUG, "SCARD: 3G USIM AID", aid, aid_len); in scard_init()
673 aid, aid_len)) { in scard_init()
677 aid, aid_len); in scard_init()
808 sim_types sim_type, unsigned char *aid, in _scard_select_file() argument
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/
Dpcsc_funcs.c254 sim_types sim_type, unsigned char *aid,
401 static int scard_get_aid(struct scard_data *scard, unsigned char *aid, in scard_get_aid() argument
496 os_memcpy(aid, aid_pos, aid_len); in scard_get_aid()
657 unsigned char aid[32]; in scard_init() local
660 aid_len = scard_get_aid(scard, aid, sizeof(aid)); in scard_init()
664 os_memcpy(aid, "\xa0\x00\x00\x00\x87", 5); in scard_init()
667 wpa_hexdump(MSG_DEBUG, "SCARD: 3G USIM AID", aid, aid_len); in scard_init()
673 aid, aid_len)) { in scard_init()
677 aid, aid_len); in scard_init()
808 sim_types sim_type, unsigned char *aid, in _scard_select_file() argument
[all …]
/third_party/mindspore/mindspore/core/mindrt/include/actor/
Daid.h83 inline std::ostream &operator<<(std::ostream &os, const AID &aid) {
84 os << aid.Name() << "@" << aid.Url();
/third_party/ltp/lib/newlib_tests/
Dtest15.c52 static void *worker_load_store(void *aid) in worker_load_store() argument
54 int id = (intptr_t)aid, i; in worker_load_store()
/third_party/boost/libs/regex/doc/
Dcaptures.qbk138 "now is the time for all good men to come to the aid of the party");
181 Text: "now is the time for all good men to come to the aid of the party"
184 $0 = "now is the time for all good men to come to the aid of the party"
187 $0 = { "now is the time for all good men to come to the aid of the party" }
189 "come", "to", "the", "aid", "of", "the", "party" }
/third_party/mesa3d/src/mesa/state_tracker/
Dst_glsl_to_tgsi_array_merge.h47 array_live_range(unsigned aid, unsigned alength);
48 array_live_range(unsigned aid, unsigned alength, int first_access,
Dst_glsl_to_tgsi_array_merge.cpp167 array_live_range::array_live_range(unsigned aid, unsigned alength): in array_live_range() argument
168 id(aid), in array_live_range()
179 array_live_range::array_live_range(unsigned aid, unsigned alength, int begin, in array_live_range() argument
181 id(aid), in array_live_range()
/third_party/mesa3d/src/gallium/drivers/r600/sfn/
Dsfn_liverange.h220 array_live_range(unsigned aid, unsigned alength);
221 array_live_range(unsigned aid, unsigned alength, int first_access,
/third_party/libwebsockets/lib/jose/jwe/
Djwe.c215 const char *aid; in lws_jwa_concat_kdf() local
238 aid = direct ? jwe->jose.enc_alg->alg : jwe->jose.alg->alg; in lws_jwa_concat_kdf()
239 aidlen = (int)strlen(aid); in lws_jwa_concat_kdf()
287 lws_genhash_update(&hash_ctx, be32((uint32_t)strlen(aid), &t), 4) || in lws_jwa_concat_kdf()
288 lws_genhash_update(&hash_ctx, aid, (unsigned int)aidlen) || in lws_jwa_concat_kdf()
/third_party/skia/third_party/externals/imgui/misc/debuggers/
Dimgui.gdb1 # GDB configuration to aid debugging experience
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
Dmesh_mpm.c282 wpabuf_put_le16(buf, sta->aid); in mesh_mpm_send_plink_action()
770 params.aid = sta->aid; in mesh_mpm_add_peer()
1122 u16 plid = 0, llid = 0, aid = 0; in mesh_mpm_action_rx() local
1160 aid = WPA_GET_LE16(ies); in mesh_mpm_action_rx()
1161 wpa_printf(MSG_DEBUG, "MPM: AID 0x%x", aid); in mesh_mpm_action_rx()
1346 sta->peer_aid = aid; in mesh_mpm_action_rx()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
Dmesh_mpm.c283 wpabuf_put_le16(buf, sta->aid); in mesh_mpm_send_plink_action()
774 params.aid = sta->aid; in mesh_mpm_add_peer()
1130 u16 plid = 0, llid = 0, aid = 0; in mesh_mpm_action_rx() local
1168 aid = WPA_GET_LE16(ies); in mesh_mpm_action_rx()
1169 wpa_printf(MSG_DEBUG, "MPM: AID 0x%x", aid); in mesh_mpm_action_rx()
1354 sta->peer_aid = aid; in mesh_mpm_action_rx()
/third_party/boost/libs/math/doc/roots/
Droots_overview.qbk2 Several tools are provided to aid finding minima and roots of functions.
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/rsn_supp/
Dwpa_ie.h49 u16 aid; member
/third_party/node/tools/node-lint-md-cli-rollup/src/
Dcli-entry.mjs1 // To aid in future maintenance, this layout closely matches remark-cli/cli.js.
/third_party/mindspore/mindspore/core/mindrt/
DBUILD.gn21 "src/actor/aid.cc",
/third_party/flutter/skia/third_party/externals/sdl/premake/patches/
D709.patch24 -- https://sourceforge.net/tracker/?func=detail&aid=3430158&group_id=71616&atid=531880
/third_party/ffmpeg/doc/
Dlibavutil.texi16 The libavutil library is a utility library to aid portable
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/
Dap_drv_ops.c332 const u8 *addr, int aid, int val) in hostapd_set_wds_sta() argument
342 return hapd->driver->set_wds_sta(hapd->drv_priv, addr, aid, val, in hostapd_set_wds_sta()
411 const u8 *addr, u16 aid, u16 capability, in hostapd_sta_add() argument
430 params.aid = aid; in hostapd_sta_add()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/drivers/
Ddriver_hostap.h158 u16 aid; member
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/drivers/
Ddriver_hostap.h156 u16 aid; member
/third_party/node/deps/npm/node_modules/is-callable/
DCHANGELOG.md44 * Refactor to aid optimization of non-try/catch code.

12345678910