blob: d7cd18dc9c944792a8c5553d12d20564e6cb0c6a [file] [log] [blame]
Brian Carlstrom395520e2011-09-25 19:35:00 -07001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Elliott Hughes07ed66b2012-12-12 18:34:25 -080017#include "base/logging.h"
Elliott Hughes872d4ec2011-10-21 17:07:15 -070018#include "debugger.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070019#include "scoped_thread_state_change.h"
Elliott Hughes7756d542012-05-24 21:56:51 -070020#include "ScopedPrimitiveArray.h"
Brian Carlstrom395520e2011-09-25 19:35:00 -070021
22namespace art {
23
Brian Carlstrom395520e2011-09-25 19:35:00 -070024static void DdmServer_nativeSendChunk(JNIEnv* env, jclass, jint type,
Elliott Hughesb25c3f62012-03-26 16:35:06 -070025 jbyteArray javaData, jint offset, jint length) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -070026 ScopedObjectAccess soa(env);
Brian Carlstrom395520e2011-09-25 19:35:00 -070027 ScopedByteArrayRO data(env, javaData);
28 DCHECK_LE(offset + length, static_cast<int32_t>(data.size()));
Elliott Hughes872d4ec2011-10-21 17:07:15 -070029 Dbg::DdmSendChunk(type, length, reinterpret_cast<const uint8_t*>(&data[offset]));
Brian Carlstrom395520e2011-09-25 19:35:00 -070030}
31
32static JNINativeMethod gMethods[] = {
33 NATIVE_METHOD(DdmServer, nativeSendChunk, "(I[BII)V"),
34};
35
Brian Carlstrom395520e2011-09-25 19:35:00 -070036void register_org_apache_harmony_dalvik_ddmc_DdmServer(JNIEnv* env) {
Elliott Hughes7756d542012-05-24 21:56:51 -070037 REGISTER_NATIVE_METHODS("org/apache/harmony/dalvik/ddmc/DdmServer");
Brian Carlstrom395520e2011-09-25 19:35:00 -070038}
39
40} // namespace art