Searched defs:err (Results 1 - 5 of 5) sorted by relevance

/art/runtime/jdwp/
H A Djdwp_handler.cc127 JdwpError err = Dbg::InvokeMethod(thread_id, object_id, class_id, method_id, arg_count, argValues.get(), argTypes.get(), options, &resultTag, &resultValue, &exceptObjId); local
128 if (err != ERR_NONE) {
129 return err;
132 if (err == ERR_NONE) {
166 return err;
1365 JdwpError err = state->RegisterEvent(pEvent); local
1366 if (err != ERR_NONE) {
1371 return err;
/art/runtime/
H A Djni_internal_test.cc1683 jint err = vm_->DetachCurrentThread(); local
1684 EXPECT_EQ(JNI_ERR, err);
H A Dprofiler.cc284 int err = flock(fd, LOCK_EX); local
285 if (err < 0) {
313 err = flock(fd, LOCK_UN);
314 if (err < 0) {
801 int err = stat(fileName.c_str(), &st); local
802 if (err == -1) {
/art/patchoat/
H A Dpatchoat.cc423 int err = errno; local
425 << " error(" << err << "): " << strerror(err);
1205 int err = errno; local
1207 << ": " << strerror(err) << "(" << err << ")";
1224 int err = errno; local
1226 << ": " << strerror(err) << "(" << err << ")";
/art/runtime/hprof/
H A Dhprof.cc227 int err = GuaranteeRecordAppend(1); local
228 if (UNLIKELY(err != 0)) {
229 return err;
270 int err = GuaranteeRecordAppend(numValues); local
271 if (UNLIKELY(err != 0)) {
272 return err;
281 int err = GuaranteeRecordAppend(numValues * 2); local
282 if (UNLIKELY(err != 0)) {
283 return err;
296 int err local
315 int err = GuaranteeRecordAppend(numValues * 8); local
333 int err = AddObjectId(values->GetWithoutChecks(i)); local
535 int err = current_record_.StartNewRecord(header_fp_, HPROF_TAG_LOAD_CLASS, HPROF_TIME); local
561 int err = current_record_.StartNewRecord(header_fp_, HPROF_TAG_STRING, HPROF_TIME); local
[all...]

Completed in 133 milliseconds