/external/webrtc/src/modules/audio_processing/ |
high_pass_filter_impl.h | 40 virtual void* CreateHandle() const;
|
level_estimator_impl.h | 41 virtual void* CreateHandle() const;
|
noise_suppression_impl.h | 42 virtual void* CreateHandle() const;
|
processing_component.h | 39 virtual void* CreateHandle() const = 0;
|
voice_detection_impl.h | 47 virtual void* CreateHandle() const;
|
echo_cancellation_impl.h | 57 virtual void* CreateHandle() const;
|
echo_control_mobile_impl.h | 48 virtual void* CreateHandle() const;
|
gain_control_impl.h | 59 virtual void* CreateHandle() const;
|
processing_component.cc | 81 handles_[i] = CreateHandle();
|
/development/host/windows/usb/api/ |
adb_legacy_endpoint_object.h | 116 virtual ADBAPIHANDLE CreateHandle(const wchar_t* item_path,
124 in CreateHandle method of this class.
|
adb_legacy_interface.h | 61 virtual ADBAPIHANDLE CreateHandle();
148 This method is called from CreateHandle method to cache some interface
158 This method is called from CreateHandle method to cache some interface
168 This method is called from CreateHandle method to cache some interface
|
adb_object_handle.h | 55 1. When CreateHandle() method is called on an object, a handle (ADBAPIHANDLE
119 virtual ADBAPIHANDLE CreateHandle();
|
adb_legacy_endpoint_object.cpp | 76 ADBAPIHANDLE ret = adb_io_completion->CreateHandle();
191 ADBAPIHANDLE AdbLegacyEndpointObject::CreateHandle(
217 ADBAPIHANDLE ret = AdbObjectHandle::CreateHandle();
|
adb_object_handle.cpp | 64 ADBAPIHANDLE AdbObjectHandle::CreateHandle() {
|
adb_legacy_interface.cpp | 38 ADBAPIHANDLE AdbLegacyInterfaceObject::CreateHandle() {
100 return AdbObjectHandle::CreateHandle();
272 ADBAPIHANDLE ret = adb_endpoint->CreateHandle(endpoint_path.c_str(),
|
/development/host/windows/usb/winusb/ |
adb_winusb_interface.h | 80 virtual ADBAPIHANDLE CreateHandle();
85 this method in order close WinUsb handle created in CreateHandle method
|
adb_winusb_interface.cpp | 54 ADBAPIHANDLE AdbWinUsbInterfaceObject::CreateHandle() {
126 return AdbInterfaceObject::CreateHandle();
335 ADBAPIHANDLE ret = adb_endpoint->CreateHandle();
|
/external/chromium_org/mojo/apps/js/bindings/gl/ |
opaque.cc | 17 return gin::CreateHandle(isolate, new Opaque(value));
|
context.cc | 22 return gin::CreateHandle(isolate, new Context(encoded, width, height));
|
/external/v8/src/ |
handles-inl.h | 51 location_ = HandleScope::CreateHandle(obj, GetIsolateForHandle(obj)); 58 location_ = HandleScope::CreateHandle(obj, isolate); 121 Handle<T> result(CreateHandle<T>(value, isolate_)); 132 T** HandleScope::CreateHandle(T* value, Isolate* isolate) {
|
/external/chromium_org/content/browser/streams/ |
stream.h | 80 scoped_ptr<StreamHandle> CreateHandle(const GURL& original_url,
|
/external/chromium_org/content/renderer/ |
gin_browsertest.cc | 26 return gin::CreateHandle(isolate, new TestGinObject(alive));
|
/external/chromium_org/gin/ |
handle.h | 62 gin::Handle<T> CreateHandle(v8::Isolate* isolate, T* object) {
|
/external/chromium_org/v8/src/ |
handles-inl.h | 44 location_ = HandleScope::CreateHandle(obj->GetIsolate(), obj); 51 location_ = HandleScope::CreateHandle(isolate, obj); 157 Handle<T> result(CreateHandle<T>(isolate_, value)); 168 T** HandleScope::CreateHandle(Isolate* isolate, T* value) {
|
/external/chromium_org/mojo/apps/js/bindings/ |
waiting_callback.cc | 37 return gin::CreateHandle(isolate, new WaitingCallback(isolate, callback));
|