Searched refs:VarArgs (Results 1 - 1 of 1) sorted by relevance
/art/runtime/ | ||
H A D | check_jni.cc | 70 class VarArgs; 131 const VarArgs* va; 140 class VarArgs { class in namespace:art 142 VarArgs(jmethodID m, va_list var) : m_(m), type_(kTypeVaList), cnt_(0) { function in class:art::VarArgs 146 VarArgs(jmethodID m, const jvalue* vals) : m_(m), type_(kTypePtr), cnt_(0), ptr_(vals) {} function in class:art::VarArgs 148 ~VarArgs() { 154 VarArgs(VarArgs&& other) { function in class:art::VarArgs 166 // owned copy of the VarArgs. This is because getting the next argument from a va_list is a 167 // mutating operation. Therefore we pass around these VarArgs wit 223 VarArgs(jmethodID m, uint32_t cnt, va_list var) : m_(m), type_(kTypeVaList), cnt_(cnt) { function in class:art::VarArgs 227 VarArgs(jmethodID m, uint32_t cnt, const jvalue* vals) : m_(m), type_(kTypePtr), cnt_(cnt), ptr_(vals) {} function in class:art::VarArgs [all...] |
Completed in 23 milliseconds