OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:_deviceUniqueId
(Results
1 - 6
of
6
) sorted by null
/external/webrtc/webrtc/modules/video_capture/ios/
video_capture_ios.mm
56
capture_module->
_deviceUniqueId
= new char[name_length + 1];
57
strncpy(capture_module->
_deviceUniqueId
, deviceUniqueIdUTF8, name_length + 1);
58
capture_module->
_deviceUniqueId
[name_length] = '\0';
/external/webrtc/webrtc/modules/video_capture/mac/qtkit/
video_capture_qtkit.mm
71
_deviceUniqueId
= new char[nameLength+1];
72
memcpy(
_deviceUniqueId
, iDeviceUniqueIdUTF8,nameLength+1);
149
strcpy((char*)
_deviceUniqueId
, (char*)deviceUniqueIdUTF8);
/external/webrtc/webrtc/modules/video_capture/
video_capture_impl.cc
42
return
_deviceUniqueId
;
145
_deviceUniqueId
(NULL),
176
if (
_deviceUniqueId
)
177
delete[]
_deviceUniqueId
;
video_capture_impl.h
110
char*
_deviceUniqueId
; // current Device unique name;
/external/webrtc/webrtc/modules/video_capture/windows/
video_capture_ds.cc
71
_deviceUniqueId
= new (std::nothrow) char[nameLength + 1];
72
memcpy(
_deviceUniqueId
, deviceUniqueIdUTF8, nameLength + 1);
222
if ((capabilityIndex = _dsInfo.GetBestMatchedCapability(
_deviceUniqueId
,
/external/webrtc/webrtc/modules/video_capture/linux/
video_capture_linux.cc
66
_deviceUniqueId
= new (std::nothrow) char[len + 1];
67
if (
_deviceUniqueId
)
69
memcpy(
_deviceUniqueId
, deviceUniqueIdUTF8, len + 1);
Completed in 95 milliseconds