HomeSort by relevance Sort by last modified time
    Searched refs:descriptor (Results 226 - 250 of 525) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/compile/libbcc/runtime/BlocksRuntime/
runtime.c 315 struct Block_layout *result = malloc(aBlock->descriptor->size);
317 memmove(result, aBlock, aBlock->descriptor->size); // bitcopy first
323 //printf("calling block copy helper %p(%p, %p)...\n", aBlock->descriptor->copy, result, aBlock);
324 (*aBlock->descriptor->copy)(result, aBlock); // do fixup
333 struct Block_layout *result = _Block_allocator(aBlock->descriptor->size, wantsOne, hasCTOR);
335 memmove(result, aBlock, aBlock->descriptor->size); // bitcopy first
346 (*aBlock->descriptor->copy)(result, aBlock); // do fixup
474 if (aBlock->flags & BLOCK_HAS_COPY_DISPOSE)(*aBlock->descriptor->dispose)(aBlock);
515 return ((struct Block_layout *)arg)->descriptor->size;
674 struct Block_descriptor *dp = closure->descriptor;
    [all...]
  /dalvik/vm/analysis/
RegisterMap.cpp 245 vdata->method->clazz->descriptor, vdata->method->name,
298 vdata->method->clazz->descriptor,
306 vdata->method->clazz->descriptor,
320 vdata->method->clazz->descriptor,
328 vdata->method->clazz->descriptor,
477 if (strcmp(vdata->method->clazz->descriptor, cd) == 0 &&
482 LOGI("Map for %s.%s %s", vdata->method->clazz->descriptor,
613 meth->clazz->descriptor, meth->name);
647 LOGE("Too many methods in %s", clazz->descriptor);
756 LOGVV("Size %s (%d+%d methods): %d", clazz->descriptor,
    [all...]
  /external/emma/core/java12/com/vladium/emma/data/
MethodDescriptor.java 34 public MethodDescriptor (final String name, final String descriptor, final int status,
39 if (descriptor == null)
40 throw new IllegalArgumentException ("null input: descriptor");
88 m_descriptor = descriptor;
194 StringBuffer s = new StringBuffer (indent + "method [" + m_name + "] descriptor:");
244 final String descriptor = in.readUTF (); local
276 return new MethodDescriptor (name, descriptor, status, blockSizes, blockMap, firstLine);
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_helpers.cc 115 string ClassName(const Descriptor* descriptor, bool qualified) {
117 // Find "outer", the descriptor of the top-level message in which
118 // "descriptor" is embedded.
119 const Descriptor* outer = descriptor;
123 string inner_name = descriptor->full_name().substr(outer_name.size());
148 string SuperClassName(const Descriptor* descriptor) {
149 return HasDescriptorMethods(descriptor->file())
    [all...]
cpp_enum.cc 48 EnumGenerator::EnumGenerator(const EnumDescriptor* descriptor,
50 : descriptor_(descriptor),
51 classname_(ClassName(descriptor, false)),
  /external/protobuf/src/google/protobuf/
message_unittest.cc 51 #include <google/protobuf/descriptor.h>
52 #include <google/protobuf/descriptor.pb.h>
263 protobuf_unittest::TestAllTypes::descriptor()),
268 // Construct a new descriptor.
273 const Descriptor* descriptor = pool.BuildFile(file)->message_type(0); local
277 MessageFactory::generated_factory()->GetPrototype(descriptor) == NULL);
  /frameworks/base/core/java/android/os/
Binder.java 163 * descriptor is requested.
165 public void attachInterface(IInterface owner, String descriptor) {
167 mDescriptor = descriptor;
198 * descriptor.
200 public IInterface queryLocalInterface(String descriptor) {
201 if (mDescriptor.equals(descriptor)) {
279 * @param fd The raw file descriptor that the dump is being sent to.
360 public IInterface queryLocalInterface(String descriptor) {
ParcelFileDescriptor.java 123 * new file descriptor shared state such as file position with the
124 * original file descriptor.
134 * new file descriptor shared state such as file position with the
135 * original file descriptor.
156 // Extracts the file descriptor from the specified socket and returns it untouched
174 // Extracts the file descriptor from the specified socket and returns it untouched
226 * Gets a file descriptor for a read-only copy of the given data.
229 * @param name Name for the shared memory area that may back the file descriptor.
315 // If this is a proxy to another file descriptor, just call through to its
385 public ParcelFileDescriptor(ParcelFileDescriptor descriptor) {
    [all...]
  /frameworks/base/core/jni/android/graphics/
BitmapRegionDecoder.cpp 112 jint descriptor = jniGetFDFromFileDescriptor(env, fileDescriptor); local
116 if (fstat(descriptor, &fdStat) == -1) {
117 doThrowIOE(env, "broken file descriptor");
123 (newFD = ::dup(descriptor)) != -1) {
132 with the same descriptor. This is only required if we didn't dup the
133 file descriptor, but it is OK to do it all the time.
135 AutoFDSeek as(descriptor);
137 SkFDStream* fdStream = new SkFDStream(descriptor, false);
  /development/host/windows/usb/api/
adb_helper_routines.cpp 262 USB_DEVICE_DESCRIPTOR descriptor; local
266 &descriptor,
267 sizeof(descriptor),
  /external/antlr/src/org/antlr/runtime/debug/
Profiler.java 223 DecisionDescriptor descriptor = decisions.get(g, decisionNumber); local
224 if ( descriptor == null ) {
225 descriptor = new DecisionDescriptor();
226 decisions.put(g, decisionNumber, descriptor);
227 descriptor.decision = decisionNumber;
228 descriptor.fileName = (String)currentGrammarFileName.peek();
229 descriptor.ruleName = (String)currentRuleName.peek();
230 descriptor.line = (Integer)currentLine.peek();
231 descriptor.pos = (Integer)currentPos.peek();
232 descriptor.couldBacktrack = couldBacktrack
    [all...]
  /external/bluetooth/bluez/tools/
csr_usb.c 70 if (dev->descriptor.bDeviceClass == USB_CLASS_HUB)
73 if (dev->descriptor.idVendor != 0x0a12 ||
74 dev->descriptor.idProduct != 0x0001)
  /external/emma/core/java12/com/vladium/jcd/cls/
ClassDef.java 331 // c. The descriptor of the field in UTF encoding
364 // c. The descriptor of the method, ()V, in UTF encoding.
368 // c. The descriptor of the method in UTF encoding.
372 // c. The descriptor of the method in UTF encoding.
375 // descriptor separators (this is done for methods only, not for fields)
539 public int addField (final String name, final String descriptor, final int access_flags)
545 final int descriptor_index = addCONSTANT_Utf8 (descriptor, true);
556 public int addField (final String name, final String descriptor, final int access_flags,
563 final int descriptor_index = addCONSTANT_Utf8 (descriptor, true);
573 public Method_info newEmptyMethod (final String name, final String descriptor, final int access_flags
    [all...]
  /external/protobuf/src/google/protobuf/compiler/java/
java_enum.cc 41 #include <google/protobuf/descriptor.pb.h>
49 EnumGenerator::EnumGenerator(const EnumDescriptor* descriptor)
50 : descriptor_(descriptor) {
164 // at module init time because it wouldn't work with descriptor.proto, but
  /external/valgrind/main/exp-ptrcheck/tests/
syscall.stderr.exp 2 Warning: invalid file descriptor -1 in syscall write()
14 Warning: invalid file descriptor -1 in syscall write()
27 Warning: invalid file descriptor -1 in syscall write()
66 Warning: invalid file descriptor -1 in syscall write()
78 Warning: invalid file descriptor -1 in syscall write()
91 Warning: invalid file descriptor -1 in syscall write()
mm.stderr.exp 9 Warning: invalid file descriptor -1 in syscall write()
10 Warning: invalid file descriptor -1 in syscall write()
40 Warning: invalid file descriptor -1 in syscall write()
51 Warning: invalid file descriptor -1 in syscall write()
  /frameworks/base/include/media/
AudioEffect.h 74 * Returns an effect descriptor during effect
79 * descriptor: address where the effect descriptor should be returned.
85 * BAD_VALUE invalid descriptor pointer or index
89 * *descriptor: updated with effect descriptor
91 static status_t queryEffect(uint32_t index, effect_descriptor_t *descriptor);
95 * Returns the descriptor for the specified effect uuid.
99 * descriptor: address where the effect descriptor should be returned
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
JSString.cpp 292 bool JSString::getStringPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
295 descriptor.setDescriptor(jsNumber(m_length), DontEnum | DontDelete | ReadOnly);
302 descriptor.setDescriptor(getIndex(exec, i), DontDelete | ReadOnly);
309 bool JSString::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
311 if (getStringPropertyDescriptor(exec, propertyName, descriptor))
315 descriptor.setDescriptor(exec->lexicalGlobalObject()->stringPrototype(), DontEnum);
NumberConstructor.cpp 74 bool NumberConstructor::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
76 return getStaticValueDescriptor<NumberConstructor, InternalFunction>(exec, ExecState::numberTable(exec), this, propertyName, descriptor);
  /external/webkit/Source/WebCore/bindings/js/
JSLocationCustom.cpp 89 bool JSLocation::getOwnPropertyDescriptorDelegate(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
93 descriptor.setUndefined();
107 descriptor.setDescriptor(slot.getValue(exec, propertyName), entry->attributes());
111 descriptor.setDescriptor(slot.getValue(exec, propertyName), entry->attributes());
115 descriptor.setDescriptor(slot.getValue(exec, propertyName), entry->attributes());
124 descriptor.setUndefined();
JSWorkerContextCustom.cpp 78 bool JSWorkerContext::getOwnPropertyDescriptorDelegate(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
81 if (JSGlobalObject::getOwnPropertyDescriptor(exec, propertyName, descriptor))
  /development/tools/mkstubs/src/com/android/mkstubs/sourcer/
SignatureSourcer.java 30 * Terminology: a "signature" is a type descriptor for generics. There are different types
206 public void visitBaseType(final char descriptor) {
207 getBuf().append(Type.getType(Character.toString(descriptor)).getClassName());
  /external/proguard/src/proguard/gui/
MemberSpecificationDialog.java 324 String descriptor = memberSpecification.descriptor; local
347 typeTextField .setText(descriptor == null ? "***" : ClassUtil.externalType(descriptor));
351 typeTextField .setText(descriptor == null ? "***" : ClassUtil.externalMethodReturnType(descriptor));
352 argumentTypesTextField.setText(descriptor == null ? "..." : ClassUtil.externalMethodArguments(descriptor));
  /external/protobuf/src/google/protobuf/compiler/
importer.h 44 #include <google/protobuf/descriptor.h>
120 const Message* descriptor,
  /external/webkit/Source/JavaScriptCore/debugger/
DebuggerActivation.cpp 79 bool DebuggerActivation::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
81 return m_activation->getOwnPropertyDescriptor(exec, propertyName, descriptor);

Completed in 2024 milliseconds

1 2 3 4 5 6 7 8 91011>>