HomeSort by relevance Sort by last modified time
    Searched defs:receiver (Results 126 - 150 of 652) sorted by null

1 2 3 4 56 7 8 91011>>

  /cts/tests/netlegacy22.api/src/android/net/cts/legacy/api22/
ConnectivityManagerLegacyTest.java 223 BroadcastReceiver receiver = new BroadcastReceiver() { local
236 mContext.registerReceiver(receiver, filter);
244 mContext.unregisterReceiver(receiver);
  /development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/
WiFiServiceDiscoveryActivity.java 66 private BroadcastReceiver receiver = null; field in class:WiFiServiceDiscoveryActivity
299 receiver = new WiFiDirectBroadcastReceiver(manager, channel, this);
300 registerReceiver(receiver, intentFilter);
306 unregisterReceiver(receiver);
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
BluetoothConnectionFacade.java 305 ConnectStateChangeReceiver receiver = new ConnectStateChangeReceiver(deviceID); local
306 mService.registerReceiver(receiver, mA2dpStateChangeFilter);
307 listeningDevices.put("A2dpConnecting" + deviceID, receiver);
319 ConnectStateChangeReceiver receiver = new ConnectStateChangeReceiver(deviceID); local
320 mService.registerReceiver(receiver, mA2dpSinkStateChangeFilter);
321 listeningDevices.put("A2dpSinkConnecting" + deviceID, receiver);
333 ConnectStateChangeReceiver receiver = new ConnectStateChangeReceiver(deviceID); local
334 mService.registerReceiver(receiver, mHidStateChangeFilter);
335 listeningDevices.put("HidConnecting" + deviceID, receiver);
345 ConnectStateChangeReceiver receiver = new ConnectStateChangeReceiver(deviceID) local
357 ConnectStateChangeReceiver receiver = new ConnectStateChangeReceiver(deviceID); local
369 ConnectStateChangeReceiver receiver = new ConnectStateChangeReceiver(deviceID); local
434 DiscoverConnectReceiver receiver = new DiscoverConnectReceiver(deviceID); local
456 DiscoverBondReceiver receiver = new DiscoverBondReceiver(deviceID); local
    [all...]
  /external/v8/src/ic/arm/
ic-arm.cc 26 // type: holds the receiver instance type on entry.
45 // The generated code assumes that the receiver has slow properties,
87 // The generated code assumes that the receiver has slow properties,
130 // Checks the receiver for special cases (value type, slow case bits).
133 Register receiver, Register map,
137 __ JumpIfSmi(receiver, slow);
138 // Get the map of the receiver.
139 __ ldr(map, FieldMemOperand(receiver, HeapObject::kMapOffset));
157 static void GenerateFastArrayLoad(MacroAssembler* masm, Register receiver,
163 // receiver - holds the receiver on entry
285 Register receiver = LoadDescriptor::ReceiverRegister(); local
349 Register receiver = LoadDescriptor::ReceiverRegister(); local
614 Register receiver = StoreDescriptor::ReceiverRegister(); local
747 Register receiver = StoreDescriptor::ReceiverRegister(); local
    [all...]
  /external/v8/src/ic/arm64/
ic-arm64.cc 39 // The generated code assumes that the receiver has slow properties,
79 // The generated code assumes that the receiver has slow properties,
120 // Checks the receiver for special cases (value type, slow case bits).
122 // receiver in 'map_scratch' if the receiver is not a SMI.
124 Register receiver,
131 __ JumpIfSmi(receiver, slow);
132 // Get the map of the receiver.
133 __ Ldr(map_scratch, FieldMemOperand(receiver, HeapObject::kMapOffset));
152 // receiver - holds the receiver on entry
422 Register receiver = LoadDescriptor::ReceiverRegister(); local
612 Register receiver = StoreDescriptor::ReceiverRegister(); local
738 Register receiver = StoreDescriptor::ReceiverRegister(); local
    [all...]
  /external/v8/src/ic/ia32/
handler-compiler-ia32.cc 22 MacroAssembler* masm, Handle<Map> map, Register receiver, Register holder,
32 DCHECK(!receiver.is(scratch));
33 // Call the JavaScript getter with the receiver on the stack.
35 // Swap in the global receiver.
37 FieldOperand(receiver, JSGlobalObject::kGlobalProxyOffset));
38 receiver = scratch;
40 __ push(receiver);
82 MacroAssembler* masm, Label* miss_label, Register receiver,
85 DCHECK(!receiver.is(scratch0));
90 __ mov(scratch0, FieldOperand(receiver, HeapObject::kMapOffset))
320 Register receiver = StoreDescriptor::ReceiverRegister(); local
    [all...]
ic-ia32.cc 25 // type: holds the receiver instance type on entry.
38 // case. The generated code assumes that the receiver has slow
86 // that case. The generated code assumes that the receiver has slow
136 // Checks the receiver for special cases (value type, slow case bits).
139 Register receiver, Register map,
142 // receiver - holds the receiver and is unchanged.
144 // map - used to hold the map of the receiver.
147 __ JumpIfSmi(receiver, slow);
149 // Get the map of the receiver
266 Register receiver = LoadDescriptor::ReceiverRegister(); local
375 Register receiver = StoreDescriptor::ReceiverRegister(); local
513 Register receiver = StoreDescriptor::ReceiverRegister(); local
644 Register receiver = LoadDescriptor::ReceiverRegister(); local
672 Register receiver = LoadDescriptor::ReceiverRegister(); local
698 Register receiver = LoadDescriptor::ReceiverRegister(); local
712 Register receiver = StoreDescriptor::ReceiverRegister(); local
738 Register receiver = StoreDescriptor::ReceiverRegister(); local
    [all...]
  /external/v8/src/ic/mips/
ic-mips.cc 26 // type: holds the receiver instance type on entry.
43 // The generated code assumes that the receiver has slow properties,
88 // The generated code assumes that the receiver has slow properties,
133 // Checks the receiver for special cases (value type, slow case bits).
136 Register receiver, Register map,
140 __ JumpIfSmi(receiver, slow);
141 // Get the map of the receiver.
142 __ lw(map, FieldMemOperand(receiver, HeapObject::kMapOffset));
159 static void GenerateFastArrayLoad(MacroAssembler* masm, Register receiver,
165 // receiver - holds the receiver on entry
291 Register receiver = LoadDescriptor::ReceiverRegister(); local
354 Register receiver = LoadDescriptor::ReceiverRegister(); local
606 Register receiver = StoreDescriptor::ReceiverRegister(); local
740 Register receiver = StoreDescriptor::ReceiverRegister(); local
    [all...]
  /external/v8/src/ic/mips64/
ic-mips64.cc 26 // type: holds the receiver instance type on entry.
43 // The generated code assumes that the receiver has slow properties,
88 // The generated code assumes that the receiver has slow properties,
132 // Checks the receiver for special cases (value type, slow case bits).
135 Register receiver, Register map,
139 __ JumpIfSmi(receiver, slow);
140 // Get the map of the receiver.
141 __ ld(map, FieldMemOperand(receiver, HeapObject::kMapOffset));
158 static void GenerateFastArrayLoad(MacroAssembler* masm, Register receiver,
164 // receiver - holds the receiver on entry
290 Register receiver = LoadDescriptor::ReceiverRegister(); local
353 Register receiver = LoadDescriptor::ReceiverRegister(); local
612 Register receiver = StoreDescriptor::ReceiverRegister(); local
744 Register receiver = StoreDescriptor::ReceiverRegister(); local
    [all...]
  /external/v8/src/ic/ppc/
ic-ppc.cc 26 // type: holds the receiver instance type on entry.
45 // The generated code assumes that the receiver has slow properties,
90 // The generated code assumes that the receiver has slow properties,
135 // Checks the receiver for special cases (value type, slow case bits).
138 Register receiver, Register map,
142 __ JumpIfSmi(receiver, slow);
143 // Get the map of the receiver.
144 __ LoadP(map, FieldMemOperand(receiver, HeapObject::kMapOffset));
163 static void GenerateFastArrayLoad(MacroAssembler* masm, Register receiver,
169 // receiver - holds the receiver on entry
295 Register receiver = LoadDescriptor::ReceiverRegister(); local
358 Register receiver = LoadDescriptor::ReceiverRegister(); local
627 Register receiver = StoreDescriptor::ReceiverRegister(); local
750 Register receiver = StoreDescriptor::ReceiverRegister(); local
    [all...]
  /external/v8/src/ic/s390/
ic-s390.cc 24 // type: holds the receiver instance type on entry.
42 // The generated code assumes that the receiver has slow properties,
86 // The generated code assumes that the receiver has slow properties,
130 // Checks the receiver for special cases (value type, slow case bits).
133 Register receiver, Register map,
137 __ JumpIfSmi(receiver, slow);
138 // Get the map of the receiver.
139 __ LoadP(map, FieldMemOperand(receiver, HeapObject::kMapOffset));
158 static void GenerateFastArrayLoad(MacroAssembler* masm, Register receiver,
164 // receiver - holds the receiver on entry
287 Register receiver = LoadDescriptor::ReceiverRegister(); local
348 Register receiver = LoadDescriptor::ReceiverRegister(); local
613 Register receiver = StoreDescriptor::ReceiverRegister(); local
731 Register receiver = StoreDescriptor::ReceiverRegister(); local
    [all...]
  /external/v8/src/ic/x64/
handler-compiler-x64.cc 43 MacroAssembler* masm, Label* miss_label, Register receiver,
46 DCHECK(!receiver.is(scratch0));
51 __ movp(scratch0, FieldOperand(receiver, HeapObject::kMapOffset));
56 // Bail out if the receiver has a named interceptor or requires access checks.
61 // Check that receiver is a JSObject.
67 __ movp(properties, FieldOperand(receiver, JSObject::kPropertiesOffset));
94 MacroAssembler* masm, Register receiver, Register result, Register scratch,
96 __ TryGetFunctionPrototype(receiver, result, miss_label);
102 static void PushInterceptorArguments(MacroAssembler* masm, Register receiver,
110 __ Push(receiver);
325 Register receiver = StoreDescriptor::ReceiverRegister(); local
    [all...]
ic-x64.cc 25 // type: holds the receiver instance type on entry.
38 // The generated code assumes that the receiver has slow properties,
86 // in that case. The generated code assumes that the receiver has slow
137 // Checks the receiver for special cases (value type, slow case bits).
140 Register receiver, Register map,
143 // receiver - holds the receiver and is unchanged.
145 // map - used to hold the map of the receiver.
148 __ JumpIfSmi(receiver, slow);
155 __ CmpObjectType(receiver, JS_OBJECT_TYPE, map)
277 Register receiver = LoadDescriptor::ReceiverRegister(); local
376 Register receiver = StoreDescriptor::ReceiverRegister(); local
513 Register receiver = StoreDescriptor::ReceiverRegister(); local
641 Register receiver = LoadDescriptor::ReceiverRegister(); local
671 Register receiver = LoadDescriptor::ReceiverRegister(); local
699 Register receiver = LoadDescriptor::ReceiverRegister(); local
714 Register receiver = StoreDescriptor::ReceiverRegister(); local
743 Register receiver = StoreDescriptor::ReceiverRegister(); local
    [all...]
  /external/v8/src/ic/x87/
handler-compiler-x87.cc 22 MacroAssembler* masm, Handle<Map> map, Register receiver, Register holder,
32 DCHECK(!receiver.is(scratch));
33 // Call the JavaScript getter with the receiver on the stack.
35 // Swap in the global receiver.
37 FieldOperand(receiver, JSGlobalObject::kGlobalProxyOffset));
38 receiver = scratch;
40 __ push(receiver);
82 MacroAssembler* masm, Label* miss_label, Register receiver,
85 DCHECK(!receiver.is(scratch0));
90 __ mov(scratch0, FieldOperand(receiver, HeapObject::kMapOffset))
320 Register receiver = StoreDescriptor::ReceiverRegister(); local
    [all...]
ic-x87.cc 25 // type: holds the receiver instance type on entry.
38 // case. The generated code assumes that the receiver has slow
86 // that case. The generated code assumes that the receiver has slow
136 // Checks the receiver for special cases (value type, slow case bits).
139 Register receiver, Register map,
142 // receiver - holds the receiver and is unchanged.
144 // map - used to hold the map of the receiver.
147 __ JumpIfSmi(receiver, slow);
149 // Get the map of the receiver
266 Register receiver = LoadDescriptor::ReceiverRegister(); local
375 Register receiver = StoreDescriptor::ReceiverRegister(); local
513 Register receiver = StoreDescriptor::ReceiverRegister(); local
644 Register receiver = LoadDescriptor::ReceiverRegister(); local
672 Register receiver = LoadDescriptor::ReceiverRegister(); local
698 Register receiver = LoadDescriptor::ReceiverRegister(); local
712 Register receiver = StoreDescriptor::ReceiverRegister(); local
738 Register receiver = StoreDescriptor::ReceiverRegister(); local
    [all...]
  /external/v8/src/
lookup.cc 19 Handle<Object> receiver,
26 return LookupIterator(isolate, receiver, index, configuration);
34 return LookupIterator(receiver, isolate->factory()->empty_string());
38 LookupIterator it(isolate, receiver, index, configuration);
45 return LookupIterator(receiver, name, configuration);
121 Isolate* isolate, Handle<Object> receiver, uint32_t index) {
124 if (index != kMaxUInt32 && receiver->IsString() &&
125 index < static_cast<uint32_t>(String::cast(*receiver)->length())) {
130 Handle<JSValue>::cast(result)->set_value(*receiver);
133 auto root = handle(receiver->GetRootMap(isolate)->prototype(), isolate)
380 Handle<JSObject> receiver = GetStoreTarget(); local
441 Handle<JSObject> receiver = GetStoreTarget(); local
    [all...]
  /external/v8/src/runtime/
runtime-scopes.cc 357 // Skip the receiver.
872 // receiver is the global object; see ECMA-262, 3rd., 10.1.6 and 10.2.3.
873 Handle<Object> receiver = isolate->factory()->undefined_value(); local
950 Handle<Object> receiver; local
    [all...]
  /external/v8/test/cctest/
types-fuzz.h 191 Type* Function0(Type* result, Type* receiver) {
192 return Type::Function(result, receiver, 0, zone_);
195 Type* Function1(Type* result, Type* receiver, Type* arg) {
196 Type* type = Type::Function(result, receiver, 1, zone_);
271 Type* receiver = Fuzz(depth / 2); local
273 Type* type = Type::Function(result, receiver, arity, zone_);
  /external/v8/test/unittests/compiler/
instruction-selector-unittest.cc 361 Node* receiver = m.Parameter(1); local
383 Node* args[] = {receiver, m.UndefinedConstant(), m.Int32Constant(1), context};
413 Node* receiver = m.Parameter(1); local
440 Node* args[] = {function_node, receiver, context};
514 Node* receiver = m.Parameter(1); local
553 Node* args[] = {function_node, receiver, context2};
  /frameworks/base/core/jni/
android_hardware_SensorManager.cpp 248 class Receiver : public LooperCallback {
255 Receiver(const sp<SensorEventQueue>& sensorQueue,
266 ~Receiver() {
391 sp<Receiver> receiver = new Receiver(queue, messageQueue, eventQWeak); local
392 receiver->incStrong((void*)nativeInitSensorEventQueue);
393 return jlong(receiver.get());
398 sp<Receiver> receiver(reinterpret_cast<Receiver *>(eventQ))
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
BroadcastRecord.java 60 final int[] delivery; // delivery state of each receiver
65 long receiverTime; // when current receiver started for timeouts.
71 int nextReceiver; // next receiver to be executed.
72 IBinder receiver; // who is currently running, null if none. field in class:BroadcastRecord
90 // The following are set when we are calling a receiver (one that
94 // The following are set only when we are launching a receiver (one
96 ProcessRecord curApp; // hosting application of current receiver.
97 ComponentName curComponent; // the receiver class that is currently running.
98 ActivityInfo curReceiver; // info about the receiver that is currently running.
160 if (nextReceiver != 0 || receiver != null)
    [all...]
  /frameworks/base/services/core/java/com/android/server/telecom/
TelecomLoaderService.java 315 BroadcastReceiver receiver = new BroadcastReceiver() { local
326 mContext.registerReceiverAsUser(receiver, UserHandle.ALL,
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin-core/1.0.0-beta-1103/
kotlin-gradle-plugin-core-1.0.0-beta-1103.jar 
  /frameworks/base/core/java/android/app/
LoadedApk.java 1087 final BroadcastReceiver receiver = mReceiver; local
    [all...]
  /art/runtime/interpreter/
interpreter_common.h 227 mirror::Object* receiver = nullptr; // Always static. (see 'kStatic') local
230 method_idx, &receiver, sf_method, self);
632 Object* receiver = (type == kStatic) ? nullptr : shadow_frame.GetVRegReference(vregC); local
635 method_idx, &receiver, sf_method, self);
650 self, receiver, sf_method, shadow_frame.GetDexPC(), called_method);
659 self, receiver, sf_method, shadow_frame.GetDexPC(), called_method);
674 Object* const receiver = shadow_frame.GetVRegReference(vregC); local
675 if (UNLIKELY(receiver == nullptr)) {
682 CHECK(receiver->GetClass()->ShouldHaveEmbeddedVTable());
683 ArtMethod* const called_method = receiver->GetClass()->GetEmbeddedVTableEntry
    [all...]

Completed in 2322 milliseconds

1 2 3 4 56 7 8 91011>>