HomeSort by relevance Sort by last modified time
    Searched refs:PlatformFile (Results 1 - 20 of 20) sorted by null

  /external/webrtc/webrtc/base/
platform_file.h 23 typedef HANDLE PlatformFile;
25 typedef int PlatformFile;
30 extern const PlatformFile kInvalidPlatformFileValue;
32 // Associates a standard FILE stream with an existing PlatformFile.
34 // the PlatformFile should no longer be used.
35 FILE* FdopenPlatformFileForWriting(PlatformFile file);
37 // Closes a PlatformFile.
40 bool ClosePlatformFile(PlatformFile file);
platform_file.cc 22 const PlatformFile kInvalidPlatformFileValue = INVALID_HANDLE_VALUE;
24 FILE* FdopenPlatformFileForWriting(PlatformFile file) {
34 bool ClosePlatformFile(PlatformFile file) {
38 const PlatformFile kInvalidPlatformFileValue = -1;
40 FILE* FdopenPlatformFileForWriting(PlatformFile file) {
44 bool ClosePlatformFile(PlatformFile file) {
  /external/libchrome/base/files/
file.h 32 typedef HANDLE PlatformFile;
34 typedef int PlatformFile;
165 explicit File(PlatformFile platform_file);
175 static File CreateForAsyncHandle(PlatformFile platform_file);
199 PlatformFile GetPlatformFile() const;
200 PlatformFile TakePlatformFile();
316 void SetPlatformFile(PlatformFile file);
file_posix.cc 48 bool IsOpenAppend(PlatformFile file) {
52 int CallFtruncate(PlatformFile file, int64_t length) {
56 int CallFutimes(PlatformFile file, const struct timeval times[2]) {
73 File::Error CallFcntlFlock(PlatformFile file, bool do_lock) {
85 bool IsOpenAppend(PlatformFile file) {
92 int CallFtruncate(PlatformFile file, int64_t length) {
97 int CallFutimes(PlatformFile file, const struct timeval times[2]) {
102 File::Error CallFcntlFlock(PlatformFile file, bool do_lock) {
165 PlatformFile File::GetPlatformFile() const {
169 PlatformFile File::TakePlatformFile()
    [all...]
file.cc 36 File::File(PlatformFile platform_file)
65 File File::CreateForAsyncHandle(PlatformFile platform_file) {
145 UMA_HISTOGRAM_TIMES("PlatformFile.FlushTime", timer.Elapsed());
  /external/webrtc/talk/media/base/
mediaengine.h 106 virtual bool StartAecDump(rtc::PlatformFile file) = 0;
112 virtual bool StartRtcEventLog(rtc::PlatformFile file) = 0;
188 virtual bool StartAecDump(rtc::PlatformFile file) {
196 virtual bool StartRtcEventLog(rtc::PlatformFile file) {
fakemediaengine.h 765 bool StartAecDump(rtc::PlatformFile file) { return false; }
769 bool StartRtcEventLog(rtc::PlatformFile file) { return false; }
  /external/webrtc/webrtc/call/
rtc_event_log.h 51 // rtc::PlatformFile.
52 virtual bool StartLogging(rtc::PlatformFile log_file) = 0;
rtc_event_log.cc 44 bool StartLogging(rtc::PlatformFile log_file) override { return false; }
72 bool StartLogging(rtc::PlatformFile log_file) override;
110 rtc::PlatformFile platform_file_ GUARDED_BY(crit_) =
204 bool RtcEventLogImpl::StartLogging(rtc::PlatformFile log_file) {
  /external/webrtc/talk/app/webrtc/
peerconnectionfactoryproxy.h 65 PROXY_METHOD1(bool, StartAecDump, rtc::PlatformFile)
67 PROXY_METHOD1(bool, StartRtcEventLog, rtc::PlatformFile)
peerconnectionfactory.h 85 bool StartAecDump(rtc::PlatformFile file) override;
87 bool StartRtcEventLog(rtc::PlatformFile file) override;
peerconnectionfactory.cc 228 bool PeerConnectionFactory::StartAecDump(rtc::PlatformFile file) {
238 bool PeerConnectionFactory::StartRtcEventLog(rtc::PlatformFile file) {
peerconnectioninterface.h 566 virtual bool StartAecDump(rtc::PlatformFile file) = 0;
582 virtual bool StartRtcEventLog(rtc::PlatformFile file) = 0;
  /external/webrtc/talk/session/media/
channelmanager.h 166 bool StartAecDump(rtc::PlatformFile file);
172 bool StartRtcEventLog(rtc::PlatformFile file);
channelmanager.cc 553 bool ChannelManager::StartAecDump(rtc::PlatformFile file) {
563 bool ChannelManager::StartRtcEventLog(rtc::PlatformFile file) {
  /external/webrtc/talk/media/webrtc/
webrtcvoiceengine.h 98 bool StartAecDump(rtc::PlatformFile file);
105 bool StartRtcEventLog(rtc::PlatformFile file);
webrtcvoiceengine.cc     [all...]
  /external/webrtc/webrtc/modules/audio_processing/
audio_processing_impl.h 62 int StartDebugRecordingForPlatformFile(rtc::PlatformFile handle) override;
audio_processing_impl.cc     [all...]
  /external/webrtc/webrtc/modules/audio_processing/include/
audio_processing.h 426 // Same as above but uses an existing PlatformFile handle. Takes ownership
429 virtual int StartDebugRecordingForPlatformFile(rtc::PlatformFile handle) {
    [all...]

Completed in 478 milliseconds