/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/libs/mips/include/bits/ |
gthr-default.h | 356 /* Backend initialization functions */ 392 /* Backend thread functions */ 531 /* Backend mutex functions */ 539 mutex->backend = objc_malloc (sizeof (pthread_mutex_t)); 541 if (__gthrw_(pthread_mutex_init) ((pthread_mutex_t *) mutex->backend, NULL)) 543 objc_free (mutex->backend); 544 mutex->backend = NULL; 567 count = __gthrw_(pthread_mutex_unlock) ((pthread_mutex_t *) mutex->backend); 573 if (__gthrw_(pthread_mutex_destroy) ((pthread_mutex_t *) mutex->backend)) 576 objc_free (mutex->backend); [all...] |
gthr-posix.h | 356 /* Backend initialization functions */ 392 /* Backend thread functions */ 531 /* Backend mutex functions */ 539 mutex->backend = objc_malloc (sizeof (pthread_mutex_t)); 541 if (__gthrw_(pthread_mutex_init) ((pthread_mutex_t *) mutex->backend, NULL)) 543 objc_free (mutex->backend); 544 mutex->backend = NULL; 567 count = __gthrw_(pthread_mutex_unlock) ((pthread_mutex_t *) mutex->backend); 573 if (__gthrw_(pthread_mutex_destroy) ((pthread_mutex_t *) mutex->backend)) 576 objc_free (mutex->backend); [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/libs/x86/include/bits/ |
gthr-default.h | 356 /* Backend initialization functions */ 392 /* Backend thread functions */ 531 /* Backend mutex functions */ 539 mutex->backend = objc_malloc (sizeof (pthread_mutex_t)); 541 if (__gthrw_(pthread_mutex_init) ((pthread_mutex_t *) mutex->backend, NULL)) 543 objc_free (mutex->backend); 544 mutex->backend = NULL; 567 count = __gthrw_(pthread_mutex_unlock) ((pthread_mutex_t *) mutex->backend); 573 if (__gthrw_(pthread_mutex_destroy) ((pthread_mutex_t *) mutex->backend)) 576 objc_free (mutex->backend); [all...] |
gthr-posix.h | 356 /* Backend initialization functions */ 392 /* Backend thread functions */ 531 /* Backend mutex functions */ 539 mutex->backend = objc_malloc (sizeof (pthread_mutex_t)); 541 if (__gthrw_(pthread_mutex_init) ((pthread_mutex_t *) mutex->backend, NULL)) 543 objc_free (mutex->backend); 544 mutex->backend = NULL; 567 count = __gthrw_(pthread_mutex_unlock) ((pthread_mutex_t *) mutex->backend); 573 if (__gthrw_(pthread_mutex_destroy) ((pthread_mutex_t *) mutex->backend)) 576 objc_free (mutex->backend); [all...] |
/external/chromium/net/http/ |
http_cache.cc | 87 disk_cache::Backend** backend, 91 thread_, net_log, backend, callback); 113 // open cache entries or the backend itself. 115 PendingOp() : disk_entry(NULL), backend(NULL), writer(NULL), callback(NULL) {} 119 disk_cache::Backend* backend; member in struct:net::HttpCache::PendingOp 135 // A work item encapsulates a single request to the backend with all the 143 CompletionCallback* cb, disk_cache::Backend** backend) 1116 disk_cache::Backend* backend = pending_op->backend; local [all...] |
/development/sdk_overlay/frameworks/base/packages/SettingsProvider/res/values/ |
defaults.xml | 20 <!-- The SDK builds do not talk to a remote backend, and enabling by
|
/external/chromium/chrome/browser/history/ |
in_memory_history_backend.h | 5 // Contains the history backend wrapper around the in-memory URL database. This 11 // from the "regular" history backend and keeps itself in sync. 44 // Initializes the backend from the history database pointed to by the 61 // Returns the underlying database associated with this backend. The current
|
/external/clang/test/CodeGen/ |
branch-target-layout.c | 5 // targets (basic blocks). However, the backend's basic block layout makes an
|
complex-indirect.c | 6 // backend guarantee the alignment.
|
/external/elfutils/tests/ |
run-native-test.sh | 29 # This tests all the miscellaneous components of backend support 31 # this test if it is missing parts of the backend implementation. 33 # As new backend code is added to satisfy the test, be sure to update 34 # the fixed test cases (run-allregs.sh et al) to test that backend
|
/external/libusb_aah/ |
config.h | 65 /* Darwin backend */ 68 /* Linux backend */ 71 /* OpenBSD backend */ 74 /* Windows backend */
|
/external/llvm/test/CodeGen/Generic/ |
2011-07-07-ScheduleDAGCrash.ll | 6 ; The ARM backend can't handle i256 math at the moment.
|
/external/qemu/android/ |
audio-test.h | 17 * used to test that the audio backend works without having to boot
|
/external/skia/tests/ |
GrContextFactoryTest.cpp | 10 // This is a GPU-backend specific test
|
/external/webkit/Source/WebCore/storage/ |
IDBCursor.cpp | 42 PassRefPtr<IDBCursor> IDBCursor::create(PassRefPtr<IDBCursorBackendInterface> backend, IDBRequest* request, IDBAny* source, IDBTransaction* transaction) 44 return adoptRef(new IDBCursor(backend, request, source, transaction)); 47 IDBCursor::IDBCursor(PassRefPtr<IDBCursorBackendInterface> backend, IDBRequest* request, IDBAny* source, IDBTransaction* transaction) 48 : m_backend(backend)
|
IDBDatabase.cpp | 54 IDBDatabase::IDBDatabase(ScriptExecutionContext* context, PassRefPtr<IDBDatabaseBackendInterface> backend) 56 , m_backend(backend) 88 RefPtr<IDBObjectStoreBackendInterface> objectStore = m_backend->createObjectStore(name, keyPath, autoIncrement, m_setVersionTransaction->backend(), ec); 103 m_backend->deleteObjectStore(name, m_setVersionTransaction->backend(), ec); 132 // Also note that each backend object corresponds to exactly one IDBTransaction object. 151 // connection. They would have been scheduled by the backend when another
|
/external/elfutils/backends/ |
arm_init.c | 1 /* Initialization of Arm specific backend library. 31 #define BACKEND arm_
|
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/webkit/Source/autotools/ |
webkit.m4 | 121 dnl determine the Unicode backend 122 AC_MSG_CHECKING([which Unicode backend to use]) 124 AC_HELP_STRING([--with-unicode-backend=@<:@icu/glib@:>@], 125 [Select Unicode backend (WARNING: the glib-based backend is slow, and incomplete) [default=icu]]), 130 *) AC_MSG_ERROR([Invalid Unicode backend: must be icu or glib.]) ;;
|
/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...] |
/frameworks/compile/mclinker/lib/Target/ARM/ |
ARMLDBackend.h | 26 /// ARMGNULDBackend - linker backend of ARM target of GNU ELF format 114 /// doPreLayout - Backend can do any needed modification before layout 117 /// doPostLayout -Backend can do any needed modification after layout 131 /// call back target backend to emit the data. 134 /// Backend can put the data of the tables in SectionData directly 136 /// Or, backend can put the data into special data structure 137 /// - backend can maintain its own map<LDSection, table> to get the table 203 /// doRelax - Backend can orevride this function to add its relaxation 218 { assert(0 && "ARM backend with Rela type relocation\n"); return 12; } 220 /// doCreateProgramHdrs - backend can implement this function to create th [all...] |