Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(19)

Side by Side Diff: runtime/vm/dart_api_impl.h

Issue 8469004: Give up on using va_copy for now and get the build working. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | runtime/vm/dart_api_impl.cc » ('j') | runtime/vm/dart_api_impl.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #ifndef VM_DART_API_IMPL_H_ 5 #ifndef VM_DART_API_IMPL_H_
6 #define VM_DART_API_IMPL_H_ 6 #define VM_DART_API_IMPL_H_
7 7
8 #include "vm/allocation.h" 8 #include "vm/allocation.h"
9 9
10 namespace dart { 10 namespace dart {
(...skipping 19 matching lines...) Expand all
30 // Validates and converts the passed in handle as a persistent handle. 30 // Validates and converts the passed in handle as a persistent handle.
31 static PersistentHandle* UnwrapAsPersistentHandle(const ApiState& state, 31 static PersistentHandle* UnwrapAsPersistentHandle(const ApiState& state,
32 Dart_Handle object); 32 Dart_Handle object);
33 33
34 // Gets the handle used to designate successful return. 34 // Gets the handle used to designate successful return.
35 static Dart_Handle Success(); 35 static Dart_Handle Success();
36 36
37 // Generates a handle used to designate an error return. 37 // Generates a handle used to designate an error return.
38 static Dart_Handle Error(const char* format, ...); 38 static Dart_Handle Error(const char* format, ...);
39 39
40 static Dart_Handle VError(const char* format, va_list args);
41
42 // Gets a handle to Null. 40 // Gets a handle to Null.
43 static Dart_Handle Null(); 41 static Dart_Handle Null();
44 42
45 // Gets a handle to True. 43 // Gets a handle to True.
46 static Dart_Handle True(); 44 static Dart_Handle True();
47 45
48 // Gets a handle to False 46 // Gets a handle to False
49 static Dart_Handle False(); 47 static Dart_Handle False();
50 48
51 // Allocates space in the local zone. 49 // Allocates space in the local zone.
52 static uword Allocate(intptr_t size); 50 static uword Allocate(intptr_t size);
53 51
54 // Reallocates space in the local zone. 52 // Reallocates space in the local zone.
55 static uword Reallocate(uword ptr, intptr_t old_size, intptr_t new_size); 53 static uword Reallocate(uword ptr, intptr_t old_size, intptr_t new_size);
56 }; 54 };
57 55
58 } // namespace dart. 56 } // namespace dart.
59 57
60 #endif // VM_DART_API_IMPL_H_ 58 #endif // VM_DART_API_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/dart_api_impl.cc » ('j') | runtime/vm/dart_api_impl.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698