HomeSort by relevance Sort by last modified time
    Searched full:backend (Results 26 - 50 of 1941) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/skia/bench/
WriterBench.cpp 15 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
16 return backend == kNonRendering_Backend;
GrMemoryPoolBench.cpp 35 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
36 return backend == kNonRendering_Backend;
87 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
88 return backend == kNonRendering_Backend;
125 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
126 return backend == kNonRendering_Backend;
  /external/chromium_org/android_webview/browser/
net_disk_cache_remover.cc 19 using disk_cache::Backend;
30 void CallDoomAllEntries(Backend** backend, int rv) {
32 (*backend)->DoomAllEntries(base::Bind(&Noop));
36 typedef Backend* BackendPtr; // Make line below easier to understand.
44 // If not net::ERR_IO_PENDING, then backend pointer is updated but callback
  /external/libselinux/src/
label.c 66 struct selabel_handle *selabel_open(unsigned int backend,
72 if (backend >= ARRAY_SIZE(initfuncs)) {
77 if (initfuncs[backend] == NULL)
85 rec->backend = backend;
88 if ((*initfuncs[backend])(rec, opts, nopts)) {
  /external/chromium_org/chrome/browser/chromeos/
version_loader.h 59 // VersionLoader calls into the Backend in the blocking thread pool to load
61 class Backend : public base::RefCountedThreadSafe<Backend> {
63 Backend() {}
74 friend class base::RefCountedThreadSafe<Backend>;
76 ~Backend() {}
78 DISALLOW_COPY_AND_ASSIGN(Backend);
84 scoped_refptr<Backend> backend_;
  /external/chromium_org/printing/backend/
print_backend_consts.cc 5 // Constant defines used in the print backend code
7 #include "printing/backend/print_backend_consts.h"
print_backend_dummy.cc 6 // print backend.
9 #include "printing/backend/print_backend.h"
  /external/chromium_org/tools/telemetry/telemetry/core/platform/
android_platform_backend_unittest.py 43 backend = android_platform_backend.AndroidPlatformBackend(
45 cpu_stats = backend.GetCpuStats('7702')
51 backend = android_platform_backend.AndroidPlatformBackend(
53 cpu_stats = backend.GetCpuStats('7702')
58 backend = android_platform_backend.AndroidPlatformBackend(mock_adb, False)
61 backend.InstallApplication('avconv')
63 if not backend.CanLaunchApplication('avconv'):
80 for i, timestamp_bitmap in enumerate(backend._FramesFromMp4(vid)):
  /external/linux-tools-perf/Documentation/
asciidoc.conf 21 ifdef::backend-docbook[]
27 endif::backend-docbook[]
29 ifdef::backend-docbook[]
67 endif::backend-docbook[]
70 ifdef::backend-docbook[]
85 endif::backend-docbook[]
88 ifdef::backend-xhtml11[]
91 endif::backend-xhtml11[]
  /external/wpa_supplicant_8/src/utils/
ext_password.h 2 * External password backend
16 struct ext_password_data * ext_password_init(const char *backend,
  /external/chromium_org/webkit/browser/fileapi/
file_system_context.cc 181 FileSystemBackend* backend = iter->second; local
182 if (!backend->GetQuotaUtil())
184 if (backend->GetQuotaUtil()->DeleteOriginDataOnFileThread(
200 FileSystemBackend* backend = GetFileSystemBackend(type); local
201 if (!backend || !backend->GetQuotaUtil())
203 return backend->GetQuotaUtil()->CreateQuotaReservationOnFileTaskRunner(
219 FileSystemBackend* backend = GetFileSystemBackend(type); local
220 if (!backend)
222 return backend->GetQuotaUtil()
227 FileSystemBackend* backend = GetFileSystemBackend(type); local
238 FileSystemBackend* backend = GetFileSystemBackend(type); local
261 FileSystemBackend* backend = GetFileSystemBackend(type); local
269 FileSystemBackend* backend = GetFileSystemBackend(type); local
303 FileSystemBackend* backend = GetFileSystemBackend(type); local
334 FileSystemBackend* backend = GetFileSystemBackend(url.type()); local
356 FileSystemBackend* backend = GetFileSystemBackend(type); local
470 FileSystemBackend* backend = GetFileSystemBackend(url.type()); local
    [all...]
  /external/chromium_org/chrome/browser/chromeos/fileapi/
file_system_backend_unittest.cc 43 chromeos::FileSystemBackend backend(
48 backend.AddSystemMountPoints();
49 std::vector<base::FilePath> root_dirs = backend.GetRootDirectories();
71 chromeos::FileSystemBackend backend(
77 const size_t initial_root_dirs_size = backend.GetRootDirectories().size();
99 std::vector<base::FilePath> root_dirs = backend.GetRootDirectories();
117 chromeos::FileSystemBackend backend(
144 // Backend specific mount point access.
145 EXPECT_FALSE(backend.IsAccessAllowed(
148 backend.GrantFileAccessToExtension(extension
    [all...]
  /external/chromium_org/chrome/browser/resources/
about_version.js 6 * Callback from the backend with the list of variations to display.
18 * Callback from the backend with the executable and profile paths to display.
28 * Callback from the backend with the Flash version to display.
36 * Callback from the backend with the OS version to display.
  /external/chromium_org/chrome/browser/value_store/
value_store_frontend.cc 16 class ValueStoreFrontend::Backend : public base::RefCountedThreadSafe<Backend> {
18 Backend() : storage_(NULL) {}
23 TRACE_EVENT0("ValueStoreFrontend::Backend", "Init");
51 base::Bind(&ValueStoreFrontend::Backend::RunCallback,
68 friend class base::RefCountedThreadSafe<Backend>;
70 virtual ~Backend() {
90 DISALLOW_COPY_AND_ASSIGN(Backend);
94 : backend_(new Backend()) {
98 : backend_(new Backend()) {
    [all...]
  /external/chromium_org/third_party/JSON/JSON-2.59/t/
x00_load.t 11 skip "can't use JSON::XS.", 1, unless( JSON->backend->is_xs );
  /external/llvm/test/CodeGen/Generic/
2002-04-14-UnexpectedUnsignedType.ll 3 ; This caused the backend to assert out with:
  /external/chromium/chrome/browser/sessions/
base_session_service.h 34 // backend to determine the name of the files.
68 // The commands. The backend fills this in for us.
83 // Returns the backend.
84 SessionBackend* backend() const { return backend_; } function in class:BaseSessionService
86 // Returns the thread the backend runs on. This returns NULL during testing.
91 // on the backend at which point the backend owns the commands.
111 // Saves pending commands to the backend. This is invoked from the timer
149 // Invokes ReadLastSessionCommands with request on the backend thread.
155 // Invokes ReadCurrentSessionCommands with request on the backend thread
    [all...]
  /external/chromium/chrome/browser/password_manager/
password_store_x.h 20 // operating systems. It uses a "native backend" to actually store the password
21 // data when such a backend is available, and otherwise falls back to using the
23 // migrating password data to a native backend from the login database.
52 // Takes ownership of |login_db| and |backend|. |backend| may be NULL in which
57 NativeBackend* backend);
82 // Return true if we should try using the native backend.
90 // the native backend. If successful, the login database will be left with no
95 // The native backend in use, or NULL if none.
  /external/chromium_org/net/disk_cache/
cache_creator.cc 22 // Builds an instance of the backend depending on platform, type, experiments
30 scoped_ptr<disk_cache::Backend>* backend,
33 // Creates the backend.
51 scoped_ptr<disk_cache::Backend>* backend_;
53 scoped_ptr<disk_cache::Backend> created_cache_;
63 scoped_ptr<disk_cache::Backend>* backend,
73 backend_(backend),
151 net::NetLog* net_log, scoped_ptr<Backend>* backend
    [all...]
tracing_cache_backend.h 16 // The TracingCacheBackend implements the Cache Backend interface. It intercepts
17 // all backend operations from the IO thread and records the time from the start
19 class NET_EXPORT TracingCacheBackend : public Backend,
22 explicit TracingCacheBackend(scoped_ptr<Backend> backend);
72 scoped_ptr<Backend> backend_;
  /external/chromium_org/printing/
printing.gyp 31 'backend/print_backend.cc',
32 'backend/print_backend.h',
33 'backend/print_backend_consts.cc',
34 'backend/print_backend_consts.h',
35 'backend/print_backend_dummy.cc',
36 'backend/printing_info_win.cc',
37 'backend/printing_info_win.h',
146 # of the print backend and enables a custom implementation instead.
150 'backend/win_helper.cc',
151 'backend/win_helper.h'
    [all...]
  /external/chromium/chrome/browser/chromeos/
version_loader.h 76 // VersionLoader calls into the Backend on the file thread to load
78 class Backend : public base::RefCountedThreadSafe<Backend> {
80 Backend() : parse_as_platform_(false) {}
95 friend class base::RefCountedThreadSafe<Backend>;
99 ~Backend() {}
101 DISALLOW_COPY_AND_ASSIGN(Backend);
112 scoped_refptr<Backend> backend_;
  /external/chromium_org/chrome/browser/sync_file_system/
sync_event_observer.h 26 // Reports there was a state change in the sync file system backend.
33 // by the sync file system backend.
  /external/chromium_org/components/policy/core/common/cloud/
component_cloud_policy_service.cc 59 class ComponentCloudPolicyService::Backend
66 Backend(base::WeakPtr<ComponentCloudPolicyService> service,
72 virtual ~Backend();
80 // Passes a policy protobuf to the backend, to start its validation and
112 DISALLOW_COPY_AND_ASSIGN(Backend);
115 ComponentCloudPolicyService::Backend::Backend(
128 ComponentCloudPolicyService::Backend::~Backend() {}
130 void ComponentCloudPolicyService::Backend::SetCredentials
    [all...]
  /external/chromium_org/google_apis/gaia/
gaia_switches.h 17 // Specifies the backend server used for Google API calls.
21 // Specifies the backend server used for lso authentication calls.

Completed in 425 milliseconds

12 3 4 5 6 7 8 91011>>