Home
last modified time | relevance | path

Searched refs:platform_file (Results 1 – 25 of 29) sorted by relevance

12

/external/libchrome/base/files/
Dfile.cc39 File::File(PlatformFile platform_file) : File(platform_file, false) {} in File() argument
41 File::File(PlatformFile platform_file, bool async) in File() argument
42 : file_(platform_file), in File()
47 DCHECK_GE(platform_file, -1); in File()
Dfile.h157 explicit File(PlatformFile platform_file);
162 File(PlatformFile platform_file, bool async);
/external/libchrome/ipc/
Dipc_platform_file.cc25 const PlatformFileForTransit& platform_file) const { in operator ==()
26 return handle_ == platform_file.handle_; in operator ==()
30 const PlatformFileForTransit& platform_file) const { in operator !=()
31 return !(*this == platform_file); in operator !=()
Dipc_platform_file.h34 bool operator==(const PlatformFileForTransit& platform_file) const;
35 bool operator!=(const PlatformFileForTransit& platform_file) const;
/external/llvm-project/lldb/source/Plugins/Platform/MacOSX/
DPlatformRemoteMacOSX.cpp159 const lldb_private::FileSpec &platform_file, in GetFileWithUUID() argument
170 local_file = platform_file; in GetFileWithUUID()
175 std::string module_path(platform_file.GetPath()); in GetFileWithUUID()
190 err = GetFile(platform_file, module_cache_spec); in GetFileWithUUID()
200 local_file = platform_file; in GetFileWithUUID()
DPlatformRemoteDarwinDevice.cpp440 Status PlatformRemoteDarwinDevice::GetSymbolFile(const FileSpec &platform_file, in GetSymbolFile() argument
446 if (platform_file.GetPath(platform_file_path, sizeof(platform_file_path))) { in GetSymbolFile()
487 local_file = platform_file; in GetSymbolFile()
507 const FileSpec &platform_file = module_spec.GetFileSpec(); in GetSharedModule() local
513 if (platform_file.GetPath(platform_file_path, sizeof(platform_file_path))) { in GetSharedModule()
524 LLDB_LOGV(log, "Searching for {0} in sdk path {1}", platform_file, in GetSharedModule()
541 LLDB_LOGV(log, "Searching for {0} in sdk path {1}", platform_file, in GetSharedModule()
563 LLDB_LOGV(log, "Searching for {0} in sdk path {1}", platform_file, in GetSharedModule()
583 LLDB_LOGV(log, "Searching for {0} in sdk path {1}", platform_file, in GetSharedModule()
627 module_sp->SetPlatformFileSpec(platform_file); in GetSharedModule()
DPlatformRemoteDarwinDevice.h33 GetSymbolFile(const lldb_private::FileSpec &platform_file,
91 uint32_t FindFileInAllSDKs(const lldb_private::FileSpec &platform_file,
DPlatformAppleSimulator.cpp428 Status PlatformAppleSimulator::GetSymbolFile(const FileSpec &platform_file, in GetSymbolFile() argument
433 if (platform_file.GetPath(platform_file_path, sizeof(platform_file_path))) { in GetSymbolFile()
471 const FileSpec &platform_file = module_spec.GetFileSpec(); in GetSharedModule() local
472 error = GetSymbolFile(platform_file, module_spec.GetUUIDPtr(), in GetSharedModule()
484 module_sp->SetPlatformFileSpec(platform_file); in GetSharedModule()
DPlatformRemoteMacOSX.h45 GetFileWithUUID(const lldb_private::FileSpec &platform_file,
DPlatformDarwin.cpp389 const FileSpec &platform_file = module_spec.GetFileSpec(); in GetSharedModule() local
390 if (!module_sp && module_search_paths_ptr && platform_file) { in GetSharedModule()
394 if (Host::GetBundleDirectory(platform_file, bundle_directory)) { in GetSharedModule()
395 if (platform_file == bundle_directory) { in GetSharedModule()
409 platform_file.GetPath(platform_path, sizeof(platform_path)); in GetSharedModule()
1732 const FileSpec &platform_file = module_spec.GetFileSpec(); in FindBundleBinaryInExecSearchPaths() local
1735 if (!module_sp && module_search_paths_ptr && platform_file) { in FindBundleBinaryInExecSearchPaths()
1744 FileSpec platform_pull_upart(platform_file); in FindBundleBinaryInExecSearchPaths()
DPlatformDarwinKernel.cpp734 const FileSpec &platform_file = module_spec.GetFileSpec(); in GetSharedModule() local
738 std::string kext_bundle_id = platform_file.GetPath(); in GetSharedModule()
765 const FileSpec &platform_file = module_spec.GetFileSpec(); in GetSharedModuleKext() local
769 ConstString kext_bundle(platform_file.GetPath().c_str()); in GetSharedModuleKext()
DPlatformAppleSimulator.h120 GetSymbolFile(const lldb_private::FileSpec &platform_file,
/external/llvm-project/lldb/source/Target/
DRemoteAwarePlatform.cpp315 Status RemoteAwarePlatform::GetFileWithUUID(const FileSpec &platform_file, in GetFileWithUUID() argument
319 return m_remote_platform_sp->GetFileWithUUID(platform_file, uuid_ptr, in GetFileWithUUID()
323 local_file = platform_file; in GetFileWithUUID()
/external/zlib/google/
Dzip_reader_unittest.cc59 base::PlatformFile platform_file() { return file_.GetPlatformFile(); } in platform_file() function in __anon37bf8b5c0111::FileWrapper
229 ASSERT_TRUE(reader.OpenFromPlatformFile(zip_fd_wrapper.platform_file())); in TEST_F()
266 ASSERT_TRUE(reader.OpenFromPlatformFile(zip_fd_wrapper.platform_file())); in TEST_F()
572 ASSERT_TRUE(reader.OpenFromPlatformFile(zip_fd_wrapper.platform_file())); in TEST_F()
/external/angle/third_party/zlib/google/
Dzip_reader_unittest.cc59 base::PlatformFile platform_file() { return file_.GetPlatformFile(); } in platform_file() function in __anonaa7dc4cb0111::FileWrapper
229 ASSERT_TRUE(reader.OpenFromPlatformFile(zip_fd_wrapper.platform_file())); in TEST_F()
266 ASSERT_TRUE(reader.OpenFromPlatformFile(zip_fd_wrapper.platform_file())); in TEST_F()
572 ASSERT_TRUE(reader.OpenFromPlatformFile(zip_fd_wrapper.platform_file())); in TEST_F()
/external/libchrome/mojo/public/cpp/system/
Dplatform_handle.h90 ScopedHandle WrapPlatformFile(base::PlatformFile platform_file);
Dplatform_handle.cc205 ScopedHandle WrapPlatformFile(base::PlatformFile platform_file) { in WrapPlatformFile() argument
209 platform_handle.value = PlatformHandleValueFromPlatformFile(platform_file); in WrapPlatformFile()
/external/llvm-project/lldb/include/lldb/API/
DSBModule.h65 bool SetPlatformFileSpec(const lldb::SBFileSpec &platform_file);
/external/llvm-project/lldb/include/lldb/Target/
DRemoteAwarePlatform.h63 Status GetFileWithUUID(const FileSpec &platform_file, const UUID *uuid,
DPlatform.h293 virtual Status GetFileWithUUID(const FileSpec &platform_file,
/external/llvm-project/lldb/bindings/interface/
DSBModule.i170 SetPlatformFileSpec (const lldb::SBFileSpec &platform_file);
562platform_file = property(GetPlatformFileSpec, None, doc='''A read only property that returns an ll…
/external/llvm-project/lldb/source/API/
DSBModule.cpp119 bool SBModule::SetPlatformFileSpec(const lldb::SBFileSpec &platform_file) { in SetPlatformFileSpec() argument
121 (const lldb::SBFileSpec &), platform_file); in SetPlatformFileSpec()
127 module_sp->SetPlatformFileSpec(*platform_file); in SetPlatformFileSpec()
/external/llvm-project/lldb/source/Plugins/Platform/gdb-server/
DPlatformRemoteGDBServer.h54 Status GetFileWithUUID(const FileSpec &platform_file, const UUID *uuid_ptr,
DPlatformRemoteGDBServer.cpp194 Status PlatformRemoteGDBServer::GetFileWithUUID(const FileSpec &platform_file, in GetFileWithUUID() argument
198 local_file = platform_file; in GetFileWithUUID()
/external/pigweed/pw_arduino_build/py/pw_arduino_build/
Dbuilder.py343 platform_file = pfile.read()
344 platform_var_matches = self.VARIABLE_REGEX.finditer(platform_file)

12