blob: 0ab29799a0499be6924a9e5b4fb611ec49f55c4a [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
Andreas Gampe277ccbd2014-11-03 21:36:10 -080017#include "org_apache_harmony_dalvik_ddmc_DdmServer.h"
18
Elliott Hughes07ed66b2012-12-12 18:34:25 -080019#include "base/logging.h"
Elliott Hughes872d4ec2011-10-21 17:07:15 -070020#include "debugger.h"
Ian Rogers68d8b422014-07-17 11:09:10 -070021#include "jni_internal.h"
Ian Rogers1eb512d2013-10-18 15:42:20 -070022#include "scoped_fast_native_object_access.h"
Elliott Hughes7756d542012-05-24 21:56:51 -070023#include "ScopedPrimitiveArray.h"
Brian Carlstrom395520e2011-09-25 19:35:00 -070024
25namespace art {
26
Brian Carlstrom395520e2011-09-25 19:35:00 -070027static void DdmServer_nativeSendChunk(JNIEnv* env, jclass, jint type,
Elliott Hughesb25c3f62012-03-26 16:35:06 -070028 jbyteArray javaData, jint offset, jint length) {
Ian Rogers1eb512d2013-10-18 15:42:20 -070029 ScopedFastNativeObjectAccess soa(env);
Brian Carlstrom395520e2011-09-25 19:35:00 -070030 ScopedByteArrayRO data(env, javaData);
31 DCHECK_LE(offset + length, static_cast<int32_t>(data.size()));
Elliott Hughes872d4ec2011-10-21 17:07:15 -070032 Dbg::DdmSendChunk(type, length, reinterpret_cast<const uint8_t*>(&data[offset]));
Brian Carlstrom395520e2011-09-25 19:35:00 -070033}
34
35static JNINativeMethod gMethods[] = {
Ian Rogers1eb512d2013-10-18 15:42:20 -070036 NATIVE_METHOD(DdmServer, nativeSendChunk, "!(I[BII)V"),
Brian Carlstrom395520e2011-09-25 19:35:00 -070037};
38
Brian Carlstrom395520e2011-09-25 19:35:00 -070039void register_org_apache_harmony_dalvik_ddmc_DdmServer(JNIEnv* env) {
Elliott Hughes7756d542012-05-24 21:56:51 -070040 REGISTER_NATIVE_METHODS("org/apache/harmony/dalvik/ddmc/DdmServer");
Brian Carlstrom395520e2011-09-25 19:35:00 -070041}
42
43} // namespace art