Searched refs:object (Results 1 - 25 of 3487) sorted by last modified time

1234567891011>>

/external/zlib/src/contrib/delphi/
H A DZLib.pas37 AppData: Pointer; // private data object passed to zalloc and zfree
/external/zlib/src/contrib/inflate86/
H A Dinffast.S33 * inffast.obj generates a COFF object which can then be linked with MSVC++
65 #define GAS_COFF /* windows object format */
213 .type inflate_fast_use_mmx,@object
/external/zlib/src/contrib/masmx86/
H A Dinffas32.asm155 ; GLOBAL inflate_fast_use_mmx:object
/external/zlib/src/contrib/pascal/
H A Dzlibpas.pas42 opaque: Pointer; (* private data object passed to zalloc and zfree *)
/external/wpa_supplicant_8/wpa_supplicant/hidl/1.0/
H A Dhidl_manager.cpp59 * corresponding hidl object reference.
68 #if 0 // TODO(b/31632518): HIDL object death notifications.
74 // NOTE: This may cause an immediate callback if the object is already
81 "supplicant callback object");
88 #endif // TODO(b/31632518): HIDL object death notifications.
95 const std::string &key, const android::sp<ObjectType> object,
98 // Return failure if we already have an object for that |key|.
101 object_map[key] = object;
112 // Return failure if we dont have an object for that |key|.
176 #if 0 // TODO(b/31632518): HIDL object deat
94 addHidlObjectToMap( const std::string &key, const android::sp<ObjectType> object, std::map<const std::string, android::sp<ObjectType>> &object_map) argument
[all...]
/external/webrtc/webrtc/system_wrappers/source/
H A Dscoped_vector_unittest.cc58 // Because we wish to watch the life cycle of an object being constructed and
60 // object, we cannot save state in that object itself. Instead, we use this
61 // pairing of the watcher, which observes the object and notifies of
63 // things not getting freed, this class also acts like a scoping object and
76 void OnLifeCycleConstruct(LifeCycleObject* object) override {
80 constructed_life_cycle_object_.reset(object);
83 // Assert CONSTRUCTED -> DESTROYED and the |object| being destroyed is the
85 void OnLifeCycleDestroy(LifeCycleObject* object) override {
89 ASSERT_EQ(constructed_life_cycle_object, object);
116 LifeCycleObject* object = watcher.NewLifeCycleObject(); local
[all...]
/external/webrtc/webrtc/video/
H A Dfull_stack_plot.py91 class PlotLine(object):
100 class Data(object):
210 class PlotConfig(object):
/external/webrtc/webrtc/voice_engine/
H A Dtransmit_mixer.cc1060 VoEMediaProcess* object,
1066 if (!object) {
1070 // Store the callback object according to the processing type.
1072 external_postproc_ptr_ = object;
1074 external_preproc_ptr_ = object;
1059 RegisterExternalMediaProcessing( VoEMediaProcess* object, ProcessingTypes type) argument
H A Dtransmit_mixer.h82 int RegisterExternalMediaProcessing(VoEMediaProcess* object,
/external/webrtc/webrtc/modules/desktop_capture/win/
H A Dscoped_gdi_object.h27 explicit ScopedGDIObject(T object) : handle_(object) {} argument
37 void Set(T object) { argument
38 if (handle_ && object != handle_)
40 handle_ = object;
43 ScopedGDIObject& operator=(T object) { argument
44 Set(object);
49 T object = handle_; local
51 return object;
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
H A Dplot_dynamics.py23 class Variable(object):
/external/webrtc/webrtc/modules/utility/include/
H A Djvm_android.h39 // the actual Java object handle (jobject) on which we can call methods from
44 GlobalRef(JNIEnv* jni, jobject object);
56 // Wraps the jclass object on which we can call GetMethodId() functions to
88 // NativeRegistration object given name of a Java class and a list of native
153 // used to create a valid JNIEnvironment object or to get a JavaClass object.
156 // Creates a JNIEnvironment object.
161 // Returns a JavaClass object given class |name|.
/external/webrtc/webrtc/modules/utility/source/
H A Djvm_android.cc94 GlobalRef::GlobalRef(JNIEnv* jni, jobject object) argument
95 : jni_(jni), j_object_(NewGlobalRef(jni, object)) {
/external/webrtc/webrtc/modules/video_capture/ios/
H A Drtc_video_capture_ios_objc.mm90 object:_captureSession];
94 object:nil];
/external/webrtc/webrtc/modules/audio_device/ios/
H A Daudio_device_ios.mm33 // Counts number of users (=instances of this object) who needs an active
220 // The system provides an audio session object upon launch of an
223 // a reference to the AVAudioSession object.
238 // If more than one object is using the audio session, ensure that only the
239 // last object deactivates. Apple recommends: "activate your audio session
638 object:nil
644 object:nil
973 // this object is the only user.
/external/webrtc/third_party/gtest-parallel/
H A Dgtest-parallel30 # An object that catches SIGINT sent to the Python process and notices
39 class SigintHandler(object):
96 class Outputter(object):
190 class TestTimes(object):
192 "Create new object seeded with saved test times from the given file."
/external/webrtc/tools/cpu/
H A Dcpu_mon.py19 class CpuSnapshot(object):
/external/webrtc/tools/network_emulator/
H A Dconfig.py13 class ConnectionConfig(object):
H A Dnetwork_emulator.py40 class NetworkEmulator(object):
47 connection_config: A config.ConnectionConfig object containing the
/external/webrtc/tools/python_charts/webrtc/
H A Ddata_helper.py12 class DataHelper(object):
/external/webrtc/webrtc/api/objc/
H A DRTCEAGLVideoView.m147 object:nil];
151 object:nil];
/external/webrtc/webrtc/base/
H A Dbind.h19 // objects (aka functors). The method object is captured as a scoped_refptr<> if
22 // object. Care should be taken about the lifetime of objects captured by
24 // ref-counted method object or any arguments passed by pointer, and calling the
25 // functor with a destroyed object will surely do bad things.
50 // // The functor passed to AsyncInvoke() will keep this object alive.
137 MethodFunctor0(MethodT method, ObjectT* object) argument
138 : method_(method), object_(object) {}
162 Bind(FP_T(method), ObjectT* object) {
164 method, object);
172 Bind(FP_T(method), const ObjectT* object) {
203 MethodFunctor1(MethodT method, ObjectT* object, P1 p1) argument
235 Bind(FP_T(method), ObjectT* object, member in namespace:rtc
247 Bind(FP_T(method), const ObjectT* object, member in namespace:rtc
259 Bind(FP_T(method), const scoped_refptr<ObjectT>& object, member in namespace:rtc
284 MethodFunctor2(MethodT method, ObjectT* object, P1 p1, P2 p2) argument
323 Bind(FP_T(method), ObjectT* object, member in namespace:rtc
337 Bind(FP_T(method), const ObjectT* object, member in namespace:rtc
351 Bind(FP_T(method), const scoped_refptr<ObjectT>& object, member in namespace:rtc
380 MethodFunctor3(MethodT method, ObjectT* object, P1 p1, P2 p2, P3 p3) argument
426 Bind(FP_T(method), ObjectT* object, member in namespace:rtc
442 Bind(FP_T(method), const ObjectT* object, member in namespace:rtc
458 Bind(FP_T(method), const scoped_refptr<ObjectT>& object, member in namespace:rtc
491 MethodFunctor4(MethodT method, ObjectT* object, P1 p1, P2 p2, P3 p3, P4 p4) argument
544 Bind(FP_T(method), ObjectT* object, member in namespace:rtc
562 Bind(FP_T(method), const ObjectT* object, member in namespace:rtc
580 Bind(FP_T(method), const scoped_refptr<ObjectT>& object, member in namespace:rtc
617 MethodFunctor5(MethodT method, ObjectT* object, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) argument
677 Bind(FP_T(method), ObjectT* object, member in namespace:rtc
697 Bind(FP_T(method), const ObjectT* object, member in namespace:rtc
717 Bind(FP_T(method), const scoped_refptr<ObjectT>& object, member in namespace:rtc
758 MethodFunctor6(MethodT method, ObjectT* object, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6) argument
825 Bind(FP_T(method), ObjectT* object, member in namespace:rtc
847 Bind(FP_T(method), const ObjectT* object, member in namespace:rtc
869 Bind(FP_T(method), const scoped_refptr<ObjectT>& object, member in namespace:rtc
916 MethodFunctor7(MethodT method, ObjectT* object, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6, P7 p7) argument
1003 ObjectT* object, member in namespace:rtc
1029 const ObjectT* object, member in namespace:rtc
1055 const scoped_refptr<ObjectT>& object, member in namespace:rtc
1106 MethodFunctor8(MethodT method, ObjectT* object, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6, P7 p7, P8 p8) argument
1203 ObjectT* object, member in namespace:rtc
1231 const ObjectT* object, member in namespace:rtc
1259 const scoped_refptr<ObjectT>& object, member in namespace:rtc
1315 MethodFunctor9(MethodT method, ObjectT* object, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6, P7 p7, P8 p8, P9 p9) argument
1420 ObjectT* object, member in namespace:rtc
1462 const ObjectT* object, member in namespace:rtc
1493 const scoped_refptr<ObjectT>& object, member in namespace:rtc
[all...]
H A Dbind.h.pump15 // objects (aka functors). The method object is captured as a scoped_refptr<> if
18 // object. Care should be taken about the lifetime of objects captured by
20 // ref-counted method object or any arguments passed by pointer, and calling the
21 // functor with a destroyed object will surely do bad things.
46 // // The functor passed to AsyncInvoke() will keep this object alive.
139 MethodFunctor$i(MethodT method, ObjectT* object$for j [[,
141 : method_(method), object_(object)$for j [[,
176 Bind(FP_T(method), ObjectT* object$for j [[,
179 method, object$for j [[, p$j]]);
188 Bind(FP_T(method), const ObjectT* object
[all...]
H A Dbind_unittest.cc37 void RefArgument(const scoped_refptr<LifeTimeCheck>& object) { argument
38 EXPECT_TRUE(object.get() != nullptr);
120 MethodBindTester object = {0}; local
121 EXPECT_EQ(0, object.call_count);
122 Bind(&MethodBindTester::NullaryVoid, &object)();
123 EXPECT_EQ(1, object.call_count);
124 EXPECT_EQ(1, Bind(&MethodBindTester::NullaryInt, &object)());
125 EXPECT_EQ(2, object.call_count);
127 static_cast<const MethodBindTester*>(&object))());
128 EXPECT_EQ(3, object
163 LifeTimeCheck object; local
179 LifeTimeCheck object; local
195 LifeTimeCheck object; local
207 LifeTimeCheck object; local
[all...]
H A Dkeep_ref_until_done.h23 static inline void DoNothing(const scoped_refptr<T>& object) {} argument
26 // KeepRefUntilDone keeps a reference to |object| until the returned
30 static inline Callback0<void> KeepRefUntilDone(ObjectT* object) { argument
31 return rtc::Bind(&impl::DoNothing<ObjectT>, scoped_refptr<ObjectT>(object));
36 const scoped_refptr<ObjectT>& object) {
37 return rtc::Bind(&impl::DoNothing<ObjectT>, object);
35 KeepRefUntilDone( const scoped_refptr<ObjectT>& object) argument

Completed in 386 milliseconds

1234567891011>>