HomeSort by relevance Sort by last modified time
    Searched full:backend (Results 76 - 100 of 1044) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium/chrome/browser/ui/webui/
favicon_source.h 20 // requests for favicons and the history backend that serves these.
36 // Called when favicon data is available from the history backend.
fileicon_source.h 22 // requests for favicons and the history backend that serves these.
35 // Called when favicon data is available from the history backend.
  /external/iproute2/include/linux/
atmioc.h 30 #define ATMIOC_BACKEND 0x90 /* ATM generic backend ioctls, u. per backend */
  /external/kernel-headers/original/linux/
atmioc.h 30 #define ATMIOC_BACKEND 0x90 /* ATM generic backend ioctls, u. per backend */
  /external/libselinux/src/
label_internal.h 49 unsigned int backend; member in struct:selabel_handle
58 /* supports backend-specific state information */
  /external/llvm/lib/Target/X86/
README-UNIMPLEMENTED.txt 2 // Testcases that crash the X86 backend because they aren't implemented
5 These are cases we know the X86 backend doesn't handle. Patches are welcome
  /external/webkit/Source/WebCore/storage/
IDBObjectStore.cpp 73 m_objectStore->get(key, request, m_transaction->backend(), ec);
84 m_objectStore->put(value, key, IDBObjectStoreBackendInterface::AddOnly, request, m_transaction->backend(), ec);
95 m_objectStore->put(value, key, IDBObjectStoreBackendInterface::AddOrUpdate, request, m_transaction->backend(), ec);
106 m_objectStore->deleteFunction(key, request, m_transaction->backend(), ec);
117 m_objectStore->clear(request, m_transaction->backend(), ec);
130 RefPtr<IDBIndexBackendInterface> index = m_objectStore->createIndex(name, keyPath, unique, m_transaction->backend(), ec);
148 m_objectStore->deleteIndex(name, m_transaction->backend(), ec);
161 m_objectStore->openCursor(range, direction, request, m_transaction->backend(), ec);
IDBRequest.cpp 63 IDBPendingTransactionMonitor::removePendingTransaction(m_transaction->backend());
136 IDBPendingTransactionMonitor::removePendingTransaction(m_transaction->backend());
186 void IDBRequest::onSuccess(PassRefPtr<IDBCursorBackendInterface> backend)
191 m_result = IDBAny::create(IDBCursor::create(backend, this, m_source.get(), m_transaction.get()));
193 m_result = IDBAny::create(IDBCursorWithValue::create(backend, this, m_source.get(), m_transaction.get()));
197 void IDBRequest::onSuccess(PassRefPtr<IDBDatabaseBackendInterface> backend)
200 RefPtr<IDBDatabase> idbDatabase = IDBDatabase::create(scriptExecutionContext(), backend);
220 RefPtr<IDBTransactionBackendInterface> backend = prpBackend;
221 RefPtr<IDBTransaction> frontend = IDBTransaction::create(scriptExecutionContext(), backend, m_source->idbDatabase().get());
222 backend->setCallbacks(frontend.get())
    [all...]
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonLDBackend.h 25 /// HexagonLDBackend - linker backend of Hexagon target of GNU ELF format
44 /// preLayout - Backend can do any needed modification before layout
47 /// postLayout - Backend can do any needed modification after layout
60 /// call back target backend to emit the data.
63 /// Backend can put the data of the tables in MCSectionData directly
65 /// Or, backend can put the data into special data structure
66 /// - backend can maintain its own map<LDSection, table> to get the table
129 /// doCreateProgramHdrs - backend can implement this function to create the
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsLDBackend.h 24 /// MipsGNULDBackend - linker backend of Mips target of GNU ELF format
61 /// preLayout - Backend can do any needed modification before layout
64 /// postLayout - Backend can do any needed modification after layout
77 /// call back target backend to emit the data.
80 /// Backend can put the data of the tables in SectionData directly
82 /// Or, backend can put the data into special data structure
83 /// - backend can maintain its own map<LDSection, table> to get the table
140 /// doCreateProgramHdrs - backend can implement this function to create the
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
atmioc.h 30 #define ATMIOC_BACKEND 0x90 /* ATM generic backend ioctls, u. per backend */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
atmioc.h 30 #define ATMIOC_BACKEND 0x90 /* ATM generic backend ioctls, u. per backend */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
atmioc.h 30 #define ATMIOC_BACKEND 0x90 /* ATM generic backend ioctls, u. per backend */
  /frameworks/compile/slang/
slang_backend.cpp 64 void Backend::CreateFunctionPasses() {
76 void Backend::CreateModulePasses() {
103 bool Backend::CreateCodeGenPasses() {
205 Backend::Backend(clang::DiagnosticsEngine *DiagEngine,
231 void Backend::Initialize(clang::ASTContext &Ctx) {
240 void Backend::WrapBitcode(llvm::raw_string_ostream &Bitcode) {
256 bool Backend::HandleTopLevelDecl(clang::DeclGroupRef D) {
260 void Backend::HandleTranslationUnit(clang::ASTContext &Ctx) {
266 // IR). Now, interact with LLVM backend to generate actual machine code (as
    [all...]
  /external/libvorbis/lib/
backends.h 13 function: libvorbis backend and mapping structures; needed for
20 Lookups for each backend aren't exposed because there's no reason
29 /* Floor backend generic *****************************************/
87 /* Residue backend generic *****************************************/
121 /* Mapping backend generic *****************************************/
  /external/chromium/chrome/browser/net/
sqlite_persistent_cookie_store.cc 53 class SQLitePersistentCookieStore::Backend
54 : public base::RefCountedThreadSafe<SQLitePersistentCookieStore::Backend> {
56 explicit Backend(const FilePath& path)
94 friend class base::RefCountedThreadSafe<SQLitePersistentCookieStore::Backend>;
97 ~Backend() {
155 DISALLOW_COPY_AND_ASSIGN(Backend);
204 bool SQLitePersistentCookieStore::Backend::Load(
285 bool SQLitePersistentCookieStore::Backend::EnsureDatabaseVersion() {
359 void SQLitePersistentCookieStore::Backend::AddCookie(
364 void SQLitePersistentCookieStore::Backend::UpdateCookieAccessTime
    [all...]
  /external/chromium/chrome/browser/sessions/
session_service_test_helper.cc 51 backend()->ReadLastSessionCommandsImpl(&(read_commands.get()));
95 SessionBackend* SessionServiceTestHelper::backend() { function in class:SessionServiceTestHelper
96 return service_->backend();
  /external/chromium/net/proxy/
proxy_resolver.h 22 // to use for a particular URL. Generally the backend for a ProxyResolver is
51 // The PAC script backend can be specified to the ProxyResolver either via
64 // Called to set the PAC script backend to use.
  /external/libusb/
config.h 54 /* Darwin backend */
57 /* Linux backend */
84 /* Backend handles timeout */
config.h.in 52 /* Darwin backend */
55 /* Linux backend */
82 /* Backend handles timeout */
  /external/wpa_supplicant_8/src/eap_server/
eap.h 41 Boolean eapResp; /* shared with EAPOL Backend Authentication */
50 Boolean eapReq; /* shared with EAPOL Backend Authentication */
51 Boolean eapNoReq; /* shared with EAPOL Backend Authentication */
  /external/chromium/chrome/browser/history/
history.cc 6 // database operations don't delay the browser. This backend processing is
65 // Sends messages from the backend to us on the main thread. This must be a
68 // Release when the Backend has a reference to us).
83 history::InMemoryHistoryBackend* backend) OVERRIDE {
84 // Send the backend to the history service on the main thread.
86 &HistoryService::SetInMemoryBackend, backend));
149 // Shutdown the backend. This does nothing if Cleanup was already invoked.
154 // NOTE: We start the backend loading even though it completes asynchronously
156 // callers of this assume that if the backend isn't yet loaded it will be
158 // later. If we've purged the backend, we haven't necessarily restarted i
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/libs/armeabi/include/bits/
gthr-default.h 365 /* Backend initialization functions */
401 /* Backend thread functions */
539 /* Backend mutex functions */
547 mutex->backend = objc_malloc (sizeof (pthread_mutex_t));
549 if (__gthrw_(pthread_mutex_init) ((pthread_mutex_t *) mutex->backend, NULL))
551 objc_free (mutex->backend);
552 mutex->backend = NULL;
575 count = __gthrw_(pthread_mutex_unlock) ((pthread_mutex_t *) mutex->backend);
581 if (__gthrw_(pthread_mutex_destroy) ((pthread_mutex_t *) mutex->backend))
584 objc_free (mutex->backend);
    [all...]
gthr-posix.h 365 /* Backend initialization functions */
401 /* Backend thread functions */
539 /* Backend mutex functions */
547 mutex->backend = objc_malloc (sizeof (pthread_mutex_t));
549 if (__gthrw_(pthread_mutex_init) ((pthread_mutex_t *) mutex->backend, NULL))
551 objc_free (mutex->backend);
552 mutex->backend = NULL;
575 count = __gthrw_(pthread_mutex_unlock) ((pthread_mutex_t *) mutex->backend);
581 if (__gthrw_(pthread_mutex_destroy) ((pthread_mutex_t *) mutex->backend))
584 objc_free (mutex->backend);
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/libs/armeabi-v7a/include/bits/
gthr-default.h 365 /* Backend initialization functions */
401 /* Backend thread functions */
539 /* Backend mutex functions */
547 mutex->backend = objc_malloc (sizeof (pthread_mutex_t));
549 if (__gthrw_(pthread_mutex_init) ((pthread_mutex_t *) mutex->backend, NULL))
551 objc_free (mutex->backend);
552 mutex->backend = NULL;
575 count = __gthrw_(pthread_mutex_unlock) ((pthread_mutex_t *) mutex->backend);
581 if (__gthrw_(pthread_mutex_destroy) ((pthread_mutex_t *) mutex->backend))
584 objc_free (mutex->backend);
    [all...]

Completed in 380 milliseconds

1 2 34 5 6 7 8 91011>>