/external/elfutils/backends/ |
sh_init.c | 1 /* Initialization of SH specific backend library. 31 #define BACKEND sh_
|
/external/iptables/extensions/ |
libxt_NFLOG.man | 3 logging backend to log the packet. This is usually used in combination 4 with nfnetlink_log as logging backend, which will multicast the packet
|
/external/llvm/lib/Target/CppBackend/ |
CPPTargetMachine.h | 1 //===-- CPPTargetMachine.h - TargetMachine for the C++ backend --*- C++ -*-===// 10 // This file declares the TargetMachine that is used by the C++ backend.
|
/external/llvm/lib/Target/R600/TargetInfo/ |
AMDGPUTargetInfo.cpp | 19 /// \brief The target for the AMDGPU backend 22 /// \brief Extern function to initialize the targets for the AMDGPU backend
|
/external/mesa3d/src/gallium/drivers/radeon/TargetInfo/ |
AMDGPUTargetInfo.cpp | 19 /// The target for the AMDGPU backend 22 /// Extern function to initialize the targets for the AMDGPU backend
|
/external/chromium_org/content/browser/fileapi/ |
plugin_private_file_system_backend_unittest.cc | 61 PluginPrivateFileSystemBackend* backend() const { function in class:fileapi::PluginPrivateFileSystemBackendTest 65 const base::FilePath& base_path() const { return backend()->base_path(); } 76 backend()->OpenPrivateFileSystem( 86 backend()->OpenPrivateFileSystem( 110 backend()->OpenPrivateFileSystem( 119 backend()->OpenPrivateFileSystem(
|
/external/chromium_org/net/disk_cache/ |
mem_backend_impl.h | 23 // This class implements the Backend interface. An object of this class handles 25 class NET_EXPORT_PRIVATE MemBackendImpl : public Backend { 30 // Returns an instance of a Backend implemented only in memory. The returned 35 static scoped_ptr<Backend> CreateBackend(int max_bytes, net::NetLog* net_log); 64 // Backend interface. 89 // Old Backend interface.
|
/external/skia/bench/ |
GrResourceCacheBench.cpp | 174 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE { 175 return backend == kGPU_Backend; 210 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE { 211 return backend == kGPU_Backend;
|
MemoryBench.cpp | 24 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE { 25 return backend == kNonRendering_Backend; 93 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE { 94 return backend == kNonRendering_Backend;
|
/external/wpa_supplicant_8/wpa_supplicant/ |
ctrl_iface.h | 52 /* Functions that each ctrl_iface backend must implement */ 62 * Required to be implemented in each control interface backend. 74 * Required to be implemented in each control interface backend. 87 * Required to be implemented in each control interface backend. 99 * Required to be implemented in each control interface backend. 111 * Required to be implemented in each control interface backend.
|
/external/chromium/net/disk_cache/ |
disk_cache.h | 34 class Backend; 37 // Returns an instance of a Backend of the given |type|. |path| points to a 46 // any backend that performs operations on a disk. The returned pointer can be 49 // be invoked when a backend is available or a fatal error condition is reached. 50 // The pointer to receive the |backend| must remain valid until the operation 54 net::NetLog* net_log, Backend** backend, 58 class Backend { 60 // If the backend is destroyed when there are operations in progress (any 64 // for a given Entry (as opposed to the Backend) will still generate [all...] |
/art/compiler/dex/ |
frontend.cc | 25 #include "backend.h" 150 * MIR and backend flags? Need command-line setting as well. 272 const CompilerBackend backend, 281 return CompileMethod(compiler, backend, code_item, access_flags, invoke_type, class_def_idx, 297 // TODO: check method fingerprint here to determine appropriate backend type. Until then, use build default 298 art::CompilerBackend backend = compiler.GetCompilerBackend(); local 299 return art::CompileOneMethod(compiler, backend, code_item, access_flags, invoke_type,
|
/external/chromium_org/net/disk_cache/simple/ |
simple_version_upgrade.cc | 130 // to the currently running backend. The Simple Backend stores its index in 134 // 1. Absence of the index is itself not a fatal error in the Simple Backend 135 // 2. The Simple Backend has pickled file format for the index making it hacky 158 LOG(ERROR) << "File structure does not match the disk cache backend."; 197 // versions. The release build would cause backend initialization failure 198 // which would then later lead to removing all files known to the backend.
|
/external/chromium_org/net/http/ |
http_cache.cc | 76 NetLog* net_log, scoped_ptr<disk_cache::Backend>* backend, 86 backend, 109 // open cache entries or the backend itself. 115 scoped_ptr<disk_cache::Backend> backend; member in struct:net::HttpCache::PendingOp 131 // A work item encapsulates a single request to the backend with all the 141 const net::CompletionCallback& cb, disk_cache::Backend** backend) 146 backend_(backend) {} [all...] |
/external/chromium_org/chrome/browser/sync/test/integration/ |
typed_urls_helper.cc | 29 virtual bool RunOnDBThread(history::HistoryBackend* backend, 48 virtual bool RunOnDBThread(history::HistoryBackend* backend, 51 backend->GetAllTypedURLs(rows_); 73 virtual bool RunOnDBThread(history::HistoryBackend* backend, 76 *found_ = backend->GetURL(url_, row_); 99 virtual bool RunOnDBThread(history::HistoryBackend* backend, 102 backend->GetVisitsForURL(id_, visits_); 123 virtual bool RunOnDBThread(history::HistoryBackend* backend, 126 backend->RemoveVisits(visits_);
|
/external/chromium/chrome/browser/chromeos/ |
version_loader.cc | 31 VersionLoader::VersionLoader() : backend_(new Backend()) { 62 NewRunnableMethod(backend_.get(), &Backend::GetVersion, request, format)); 80 NewRunnableMethod(backend_.get(), &Backend::GetFirmware, request)); 135 void VersionLoader::Backend::GetVersion( 181 void VersionLoader::Backend::GetFirmware(
|
/external/chromium/net/url_request/ |
view_cache_helper_unittest.cc | 23 // Gets a pointer to the cache backend. 24 disk_cache::Backend* GetBackend(); 68 void WriteToEntry(disk_cache::Backend* cache, const std::string key, 89 disk_cache::Backend* cache; 184 disk_cache::Backend* cache;
|
/external/chromium_org/chrome/browser/chromeos/ |
version_loader.cc | 52 VersionLoader::VersionLoader() : backend_(new Backend()) {} 64 base::Bind(&Backend::GetVersion, backend_.get(), format, version), 75 base::Bind(&Backend::GetFirmware, backend_.get(), firmware), 103 void VersionLoader::Backend::GetVersion(VersionFormat format, 123 void VersionLoader::Backend::GetFirmware(std::string* firmware) {
|
/external/chromium_org/chrome/browser/sync/glue/ |
non_ui_data_type_controller.h | 70 // Posts the given task to the backend thread, i.e. the thread the 104 // Posted on the backend thread by StartAssociationAsync(). 143 // of the work is done on the backend thread, and in 148 // thread and passed on to the backend thread. This reference is 150 // backend thread may still have references to it (which is okay,
|
/external/chromium_org/net/url_request/ |
view_cache_helper_unittest.cc | 24 // Gets a pointer to the cache backend. 25 disk_cache::Backend* GetBackend(); 70 void WriteToEntry(disk_cache::Backend* cache, const std::string& key, 91 disk_cache::Backend* cache; 187 disk_cache::Backend* cache;
|
/external/chromium/chrome/browser/policy/ |
device_management_service.h | 55 // Constructs a device management backend for use by client code. Ownership of 56 // the returned backend object is transferred to the caller. 60 // Provides the backend with a request context so it can make actual network
|
/external/chromium/chrome/browser/resources/options/chromeos/ |
proxy_rules_list.js | 46 * Adds given exception to model and update backend. 55 * Removes given exception from model and update backend. 92 * Updates backend.
|
/external/chromium/chrome/browser/sync/ |
README.js | 5 about:sync) interacts with the sync service/backend. 8 sync backend and the sync backend asynchronously raises events to
|
/external/chromium_org/chrome/browser/resources/options/chromeos/ |
proxy_rules_list.js | 47 * Adds given exception to model and update backend. 56 * Removes given exception from model and update backend. 93 * Updates backend.
|
/external/chromium_org/chrome/browser/sessions/ |
session_service_test_helper.cc | 61 backend()->ReadLastSessionCommandsImpl(&(read_commands.get())); 104 SessionBackend* SessionServiceTestHelper::backend() { function in class:SessionServiceTestHelper 105 return service_->backend();
|