Home
last modified time | relevance | path

Searched refs:idtype (Results 1 – 7 of 7) sorted by relevance

/third_party/ltp/testcases/kernel/syscalls/waitid/
Dwaitid02.c56 idtype_t idtype; member
81 .idtype = P_ALL,
89 .idtype = P_ALL,
97 .idtype = P_ALL,
106 .idtype = P_PGID,
113 .idtype = P_PID,
120 .idtype = P_PID,
128 .idtype = P_PID,
136 .idtype = P_PID,
259 tst_resm(TINFO, "(%d) waitid(%d, %d, %p, %d)", getpid(), t->idtype, in test_waitid()
[all …]
/third_party/openssl/crypto/cms/
Dcms_env.c132 int idtype; in cms_RecipientInfo_ktri_init() local
143 idtype = CMS_RECIPINFO_KEYIDENTIFIER; in cms_RecipientInfo_ktri_init()
146 idtype = CMS_RECIPINFO_ISSUER_SERIAL; in cms_RecipientInfo_ktri_init()
154 if (!cms_set1_SignerIdentifier(ktri->rid, recip, idtype)) in cms_RecipientInfo_ktri_init()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_peer/
Deap_eke.c230 u8 idtype; in eap_eke_process_id() local
307 idtype = *pos++; in eap_eke_process_id()
308 wpa_printf(MSG_DEBUG, "EAP-EKE: Server IDType %u", idtype); in eap_eke_process_id()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_peer/
Deap_eke.c230 u8 idtype; in eap_eke_process_id() local
307 idtype = *pos++; in eap_eke_process_id()
308 wpa_printf(MSG_DEBUG, "EAP-EKE: Server IDType %u", idtype); in eap_eke_process_id()
/third_party/python/Modules/clinic/
Dposixmodule.c.h3969 os_waitid_impl(PyObject *module, idtype_t idtype, id_t id, int options);
3975 idtype_t idtype; in os_waitid() local
3980 &idtype, &id, &options)) { in os_waitid()
3983 return_value = os_waitid_impl(module, idtype, id, options); in os_waitid()
/third_party/python/Doc/library/
Dos.rst4287 .. function:: waitid(idtype, id, options)
4290 *idtype* can be :data:`P_PID`, :data:`P_PGID`, :data:`P_ALL`, or
4309 These are the possible values for *idtype* in :func:`waitid`. They affect
4318 This is a Linux-specific *idtype* that indicates that *id* is a file
/third_party/python/Modules/
Dposixmodule.c8352 os_waitid_impl(PyObject *module, idtype_t idtype, id_t id, int options) in os_waitid_impl() argument
8363 res = waitid(idtype, id, &si, options); in os_waitid_impl()