Searched defs:vec (Results 1 - 2 of 2) sorted by relevance

/art/runtime/native/
H A Ddalvik_system_DexFile.cc79 std::vector<std::unique_ptr<const DexFile>>& vec) {
81 jlongArray long_array = env->NewLongArray(static_cast<jsize>(kDexFileIndexStart + vec.size()));
93 for (size_t i = 0; i < vec.size(); ++i) {
94 long_data[kDexFileIndexStart + i] = reinterpret_cast<uintptr_t>(vec[i].get());
103 for (auto& dex_file : vec) {
77 ConvertDexFilesToJavaArray(JNIEnv* env, const OatFile* oat_file, std::vector<std::unique_ptr<const DexFile>>& vec) argument
/art/runtime/
H A Ddebugger.cc4394 iovec vec[1]; local
4395 vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(buf));
4396 vec[0].iov_len = byte_count;
4397 Dbg::DdmSendChunkV(type, vec, 1);

Completed in 102 milliseconds