Home
last modified time | relevance | path

Searched refs:requested_id (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Objects/
Dinterpreteridobject.c281 _PyInterpreterID_LookUp(PyObject *requested_id) in _PyInterpreterID_LookUp() argument
284 if (!interp_id_converter(requested_id, &id)) { in _PyInterpreterID_LookUp()
/external/openscreen/cast/common/discovery/e2e_test/
Dtests.cc58 bool IsInstanceIdClaimed(const std::string& requested_id) { in IsInstanceIdClaimed() argument
60 std::find(instance_ids_.begin(), instance_ids_.end(), requested_id); in IsInstanceIdClaimed()
66 void OnInstanceClaimed(const std::string& requested_id) override { in OnInstanceClaimed() argument
67 instance_ids_.push_back(requested_id); in OnInstanceClaimed()
/external/python/cpython3/Python/
Dpystate.c445 interp_look_up_id(_PyRuntimeState *runtime, int64_t requested_id) in interp_look_up_id() argument
453 if (requested_id == id) { in interp_look_up_id()
462 _PyInterpreterState_LookUpID(int64_t requested_id) in _PyInterpreterState_LookUpID() argument
465 if (requested_id >= 0) { in _PyInterpreterState_LookUpID()
468 interp = interp_look_up_id(runtime, requested_id); in _PyInterpreterState_LookUpID()
473 "unrecognized interpreter ID %lld", requested_id); in _PyInterpreterState_LookUpID()