summaryrefslogtreecommitdiffstats
path: root/src/oat/runtime
diff options
context:
space:
mode:
Diffstat (limited to 'src/oat/runtime')
-rw-r--r--src/oat/runtime/arm/runtime_support_arm.S16
-rw-r--r--src/oat/runtime/callee_save_frame.h2
-rw-r--r--src/oat/runtime/mips/runtime_support_mips.S16
-rw-r--r--src/oat/runtime/support_jni.cc2
-rw-r--r--src/oat/runtime/support_math.cc2
-rw-r--r--src/oat/runtime/support_proxy.cc2
-rw-r--r--src/oat/runtime/support_stubs.cc2
-rw-r--r--src/oat/runtime/support_thread.cc2
-rw-r--r--src/oat/runtime/support_throw.cc2
-rw-r--r--src/oat/runtime/support_trace.cc2
-rw-r--r--src/oat/runtime/x86/runtime_support_x86.S16
11 files changed, 56 insertions, 8 deletions
diff --git a/src/oat/runtime/arm/runtime_support_arm.S b/src/oat/runtime/arm/runtime_support_arm.S
index 5446919..045feac 100644
--- a/src/oat/runtime/arm/runtime_support_arm.S
+++ b/src/oat/runtime/arm/runtime_support_arm.S
@@ -1,3 +1,19 @@
+/*
+ * Copyright (C) 2012 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
#include "asm_support.h"
/* Deliver the given exception */
diff --git a/src/oat/runtime/callee_save_frame.h b/src/oat/runtime/callee_save_frame.h
index 96811ce..1509553 100644
--- a/src/oat/runtime/callee_save_frame.h
+++ b/src/oat/runtime/callee_save_frame.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2012 Google Inc. All Rights Reserved.
+ * Copyright (C) 2012 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/src/oat/runtime/mips/runtime_support_mips.S b/src/oat/runtime/mips/runtime_support_mips.S
index 65431e3..12cebfd 100644
--- a/src/oat/runtime/mips/runtime_support_mips.S
+++ b/src/oat/runtime/mips/runtime_support_mips.S
@@ -1,3 +1,19 @@
+/*
+ * Copyright (C) 2012 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
#include "asm_support.h"
.balign 4
diff --git a/src/oat/runtime/support_jni.cc b/src/oat/runtime/support_jni.cc
index d74f78f..7324cf4 100644
--- a/src/oat/runtime/support_jni.cc
+++ b/src/oat/runtime/support_jni.cc
@@ -1,5 +1,5 @@
/*
- * Copyright 2012 Google Inc. All Rights Reserved.
+ * Copyright (C) 2012 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/src/oat/runtime/support_math.cc b/src/oat/runtime/support_math.cc
index cb5f705..adef64a 100644
--- a/src/oat/runtime/support_math.cc
+++ b/src/oat/runtime/support_math.cc
@@ -1,5 +1,5 @@
/*
- * Copyright 2012 Google Inc. All Rights Reserved.
+ * Copyright (C) 2012 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/src/oat/runtime/support_proxy.cc b/src/oat/runtime/support_proxy.cc
index a9c7ebe..dd92fb1 100644
--- a/src/oat/runtime/support_proxy.cc
+++ b/src/oat/runtime/support_proxy.cc
@@ -1,5 +1,5 @@
/*
- * Copyright 2012 Google Inc. All Rights Reserved.
+ * Copyright (C) 2012 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/src/oat/runtime/support_stubs.cc b/src/oat/runtime/support_stubs.cc
index cb224e8..8727a5d 100644
--- a/src/oat/runtime/support_stubs.cc
+++ b/src/oat/runtime/support_stubs.cc
@@ -1,5 +1,5 @@
/*
- * Copyright 2012 Google Inc. All Rights Reserved.
+ * Copyright (C) 2012 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/src/oat/runtime/support_thread.cc b/src/oat/runtime/support_thread.cc
index ed04673..6cd595b 100644
--- a/src/oat/runtime/support_thread.cc
+++ b/src/oat/runtime/support_thread.cc
@@ -1,5 +1,5 @@
/*
- * Copyright 2012 Google Inc. All Rights Reserved.
+ * Copyright (C) 2012 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/src/oat/runtime/support_throw.cc b/src/oat/runtime/support_throw.cc
index 9f46b2b..e2e5c94 100644
--- a/src/oat/runtime/support_throw.cc
+++ b/src/oat/runtime/support_throw.cc
@@ -1,5 +1,5 @@
/*
- * Copyright 2012 Google Inc. All Rights Reserved.
+ * Copyright (C) 2012 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/src/oat/runtime/support_trace.cc b/src/oat/runtime/support_trace.cc
index 5c6a46e..c6fbfef 100644
--- a/src/oat/runtime/support_trace.cc
+++ b/src/oat/runtime/support_trace.cc
@@ -1,5 +1,5 @@
/*
- * Copyright 2012 Google Inc. All Rights Reserved.
+ * Copyright (C) 2012 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/src/oat/runtime/x86/runtime_support_x86.S b/src/oat/runtime/x86/runtime_support_x86.S
index 8f7177c..3333469 100644
--- a/src/oat/runtime/x86/runtime_support_x86.S
+++ b/src/oat/runtime/x86/runtime_support_x86.S
@@ -1,3 +1,19 @@
+/*
+ * Copyright (C) 2012 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
#include "asm_support.h"
#if defined(__APPLE__)