Searched defs:backend (Results 1 - 25 of 52) sorted by relevance

123

/external/chromium/chrome/browser/ssl/
H A Dssl_policy.h27 explicit SSLPolicy(SSLPolicyBackend* backend);
42 SSLPolicyBackend* backend() const { return backend_; } function in class:SSLPolicy
65 // The backend we use to enact our decisions.
H A Dssl_manager.h78 SSLPolicyBackend* backend() { return &backend_; } function in class:SSLManager
116 // The backend for the SSLPolicy to actuate its decisions.
H A Dssl_policy.cc39 SSLPolicy::SSLPolicy(SSLPolicyBackend* backend) argument
40 : backend_(backend) {
/external/chromium/chrome/browser/policy/
H A Dmock_device_management_service.h22 explicit ProxyDeviceManagementBackend(DeviceManagementBackend* backend);
53 void set_backend(DeviceManagementBackend* backend) { argument
54 backend_ = backend;
H A Dmock_device_management_service.cc10 DeviceManagementBackend* backend)
11 : backend_(backend) {
9 ProxyDeviceManagementBackend( DeviceManagementBackend* backend) argument
/external/chromium/chrome/browser/sync/
H A Djs_event_handler_list_unittest.cc21 // |backend| must outlive |event_handlers|.
22 StrictMock<MockJsBackend> backend; local
34 EXPECT_CALL(backend, SetParentJsEventRouter(&event_handlers)).Times(2);
36 EXPECT_CALL(backend, RemoveParentJsEventRouter()).Times(2);
37 EXPECT_CALL(backend, ProcessMessage("test1", HasArgs(args2), &handler1));
38 EXPECT_CALL(backend, ProcessMessage("test2", HasArgs(args1), &handler2));
48 event_handlers.SetBackend(&backend);
77 // |backend| must outlive |event_handlers|.
78 StrictMock<MockJsBackend> backend; local
90 EXPECT_CALL(backend, SetParentJsEventRoute
[all...]
H A Djs_event_handler_list.cc26 // We connect to the backend only when necessary, i.e. when there is
43 void JsEventHandlerList::SetBackend(JsBackend* backend) { argument
45 DCHECK(backend);
46 backend_ = backend;
H A Dprofile_sync_factory_impl.cc160 SyncBackendHost* backend,
162 return new DataTypeManagerImpl(backend, controllers);
159 CreateDataTypeManager( SyncBackendHost* backend, const DataTypeController::TypeMap& controllers) argument
/external/webkit/Source/WebCore/storage/
H A DIDBCursorWithValue.cpp36 PassRefPtr<IDBCursorWithValue> IDBCursorWithValue::create(PassRefPtr<IDBCursorBackendInterface> backend, IDBRequest* request, IDBAny* source, IDBTransaction* transaction) argument
38 return adoptRef(new IDBCursorWithValue(backend, request, source, transaction));
41 IDBCursorWithValue::IDBCursorWithValue(PassRefPtr<IDBCursorBackendInterface> backend, IDBRequest* request, IDBAny* source, IDBTransaction* transaction) argument
42 : IDBCursor(backend, request, source, transaction)
H A DIDBCursor.cpp42 PassRefPtr<IDBCursor> IDBCursor::create(PassRefPtr<IDBCursorBackendInterface> backend, IDBRequest* request, IDBAny* source, IDBTransaction* transaction) argument
44 return adoptRef(new IDBCursor(backend, request, source, transaction));
47 IDBCursor::IDBCursor(PassRefPtr<IDBCursorBackendInterface> backend, IDBRequest* request, IDBAny* source, IDBTransaction* transaction) argument
48 : m_backend(backend)
H A DIDBIndex.cpp44 IDBIndex::IDBIndex(PassRefPtr<IDBIndexBackendInterface> backend, IDBObjectStore* objectStore, IDBTransaction* transaction) argument
45 : m_backend(backend)
68 m_backend->openCursor(keyRange, direction, request, m_transaction->backend(), ec);
86 m_backend->openKeyCursor(keyRange, direction, request, m_transaction->backend(), ec);
97 m_backend->get(key, request, m_transaction->backend(), ec);
108 m_backend->getKey(key, request, m_transaction->backend(), ec);
H A DIDBIndex.h44 static PassRefPtr<IDBIndex> create(PassRefPtr<IDBIndexBackendInterface> backend, IDBObjectStore* objectStore, IDBTransaction* transaction) argument
46 return adoptRef(new IDBIndex(backend, objectStore, transaction));
/external/chromium/chrome/browser/ui/webui/
H A Dsync_internals_ui.cc27 browser_sync::JsFrontend* backend = GetJsFrontend(); local
28 if (backend) {
29 backend->AddHandler(this);
39 browser_sync::JsFrontend* backend = GetJsFrontend(); local
40 if (backend) {
41 backend->RemoveHandler(this);
62 browser_sync::JsFrontend* backend = GetJsFrontend(); local
63 if (backend) {
64 backend->ProcessMessage(name, args, this);
/external/webkit/Source/WebKit/chromium/src/
H A DIDBCallbacksProxy.cpp72 void IDBCallbacksProxy::onSuccess(PassRefPtr<IDBDatabaseBackendInterface> backend) argument
74 m_callbacks->onSuccess(new WebIDBDatabaseImpl(backend));
82 void IDBCallbacksProxy::onSuccess(PassRefPtr<IDBTransactionBackendInterface> backend) argument
84 m_callbacks->onSuccess(new WebIDBTransactionImpl(backend));
H A DWebIDBTransactionImpl.cpp40 WebIDBTransactionImpl::WebIDBTransactionImpl(PassRefPtr<IDBTransactionBackendInterface> backend) argument
41 : m_backend(backend)
H A DWebIDBIndexImpl.cpp42 WebIDBIndexImpl::WebIDBIndexImpl(PassRefPtr<IDBIndexBackendInterface> backend) argument
43 : m_backend(backend)
/external/chromium/chrome/browser/sync/glue/
H A Dhistory_model_worker.cc22 virtual bool RunOnDBThread(history::HistoryBackend* backend, argument
H A Ddata_type_manager_impl.cc61 DataTypeManagerImpl::DataTypeManagerImpl(SyncBackendHost* backend, argument
63 : backend_(backend),
144 // Restart to start/stop data types and notify the backend that the
147 // started due to crypto errors but the backend host needs to know that we're
169 // Tell the backend about the new set of data types we wish to sync.
/external/libselinux/src/
H A Dlabel_internal.h49 unsigned int backend; member in struct:selabel_handle
58 /* supports backend-specific state information */
H A Dlabel.c64 struct selabel_handle *selabel_open(unsigned int backend, argument
69 if (backend >= ARRAY_SIZE(initfuncs)) {
74 if (initfuncs[backend] == NULL)
82 rec->backend = backend;
85 if ((*initfuncs[backend])(rec, opts, nopts)) {
/external/chromium/chrome/browser/history/
H A Dhistory_browsertest.cc29 // and history backend thread because the history subsystem posts tasks back
34 // A task to be scheduled on the history backend thread.
35 // Notifies the main thread after all history backend thread tasks have run.
41 virtual bool RunOnDBThread(history::HistoryBackend* backend, argument
54 // Enumerates all history contents on the backend thread.
171 Checkpoint("After waiting for history backend to run", start_time);
191 Checkpoint("After waiting for history backend to run", start_time);
205 Checkpoint("After waiting for history backend to run (2nd time)", start_time);
/external/chromium/chrome/browser/sessions/
H A Dbase_session_service.h34 // 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 threa
[all...]
H A Dsession_service_test_helper.cc51 backend()->ReadLastSessionCommandsImpl(&(read_commands.get()));
95 SessionBackend* SessionServiceTestHelper::backend() { function in class:SessionServiceTestHelper
96 return service_->backend();
/external/chromium/chrome/browser/password_manager/
H A Dpassword_store_x.cc22 NativeBackend* backend)
24 backend_(backend), migration_checked_(!backend), allow_fallback_(false) {
204 // We add all the passwords (and blacklist entries) to the native backend
233 // should prefer the native backend to the now-incomplete login
19 PasswordStoreX(LoginDatabase* login_db, Profile* profile, WebDataService* web_data_service, NativeBackend* backend) argument
/external/chromium/net/http/
H A Ddisk_cache_based_ssl_host_info.h64 disk_cache::Backend* backend() const { return backend_; } function in class:net::DiskCacheBasedSSLHostInfo::CallbackImpl

Completed in 256 milliseconds

123