/frameworks/compile/mclinker/lib/Target/ARM/ |
README | 1 ARMLDBackend stands like ARMAsmBackend. It's a backend of linker,
|
/external/chromium/chrome/browser/sessions/ |
session_backend_unittest.cc | 54 scoped_refptr<SessionBackend> backend( 59 backend->AppendCommands(new SessionCommands(commands), false); 63 backend = NULL; 64 backend = new SessionBackend(BaseSessionService::SESSION_RESTORE, path_); 65 backend->ReadLastSessionCommandsImpl(&commands); 72 backend = NULL; 73 backend = new SessionBackend(BaseSessionService::SESSION_RESTORE, path_); 74 backend->ReadLastSessionCommandsImpl(&commands); 79 backend->DeleteLastSession(); 80 backend->ReadLastSessionCommandsImpl(&commands) [all...] |
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/kernel-headers/original/linux/ |
atmppp.h | 16 * the first element of the structure is the backend number and the rest 17 * is per-backend specific
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
atmppp.h | 16 * the first element of the structure is the backend number and the rest 17 * is per-backend specific
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
atmppp.h | 16 * the first element of the structure is the backend number and the rest 17 * is per-backend specific
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
atmppp.h | 16 * the first element of the structure is the backend number and the rest 17 * is per-backend specific
|
/external/libselinux/include/selinux/ |
label.h | 45 /* don't use local customizations to backend data (boolean value) */ 47 /* specify an alternate path to use when loading backend data */ 49 /* select a subset of the search space as an optimization (file backend) */ 60 * @backend: one of the constants specifying a supported labeling backend. 64 * Open a labeling backend for use. The available backend identifiers are 67 * backend. Return value is the created handle on success or NULL with 70 struct selabel_handle *selabel_open(unsigned int backend, 84 * @handle: specifies backend instance to quer [all...] |
/external/chromium/chrome/browser/sync/ |
js_event_handler_list_unittest.cc | 21 // |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, SetParentJsEventRouter(&event_handlers)) [all...] |
js_event_handler_list.h | 24 // the communication between the handlers and a backend. 31 // Sets the backend to route all messages to. Should be called only 32 // if a backend has not already been set. 33 void SetBackend(JsBackend* backend); 35 // Removes any existing backend. 39 // backend; if there is none, queues up the message for processing 40 // when the next backend is attached.
|
js_event_handler_list.cc | 26 // We connect to the backend only when necessary, i.e. when there is 43 void JsEventHandlerList::SetBackend(JsBackend* backend) { 45 DCHECK(backend); 46 backend_ = backend;
|
/external/chromium/chrome/browser/ui/webui/ |
sync_internals_ui.cc | 27 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);
|
/sdk/chimpchat/src/com/android/chimpchat/ |
ChimpChat.java | 37 private ChimpChat(IChimpBackend backend) { 38 this.mBackend = backend; 48 IChimpBackend backend = createBackendByName(options.get("backend")); local 49 if (backend == null) { 52 ChimpChat chimpchat = new ChimpChat(backend); 61 options.put("backend", "adb"); 67 * Creates a specific backend by name. 69 * @param backendName the name of the backend to create 70 * @return the new backend, or null if none were found [all...] |
/external/libselinux/src/ |
label.c | 64 struct selabel_handle *selabel_open(unsigned int backend, 69 if (backend >= ARRAY_SIZE(initfuncs)) { 74 if (initfuncs[backend] == NULL) 82 rec->backend = backend; 85 if ((*initfuncs[backend])(rec, opts, nopts)) {
|
/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/llvm/test/CodeGen/Generic/ |
2002-04-14-UnexpectedUnsignedType.ll | 3 ; This caused the backend to assert out with:
|
2006-01-18-InvalidBranchOpcodeAssert.ll | 2 ; This crashed the PPC backend.
|
/sdk/chimpchat/src/com/android/chimpchat/core/ |
IChimpBackend.java | 21 * Interface between the ChimpChat API and the ChimpChat backend that communicates 26 * Wait for a default device to connect to the backend. 33 * Wait for a device to connect to the backend. 42 * Shutdown the backend and cleanup any resources it was using.
|
/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/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/clang/test/CodeGen/ |
2002-04-08-LocalArray.c | 3 /* GCC is not outputting the static array to the LLVM backend, so bad things
|
/external/kernel-headers/original/linux/netfilter_ipv4/ |
ipt_LOG.h | 9 #define IPT_LOG_NFLOG 0x10 /* Log using nf_log backend */
|
/external/kernel-headers/original/linux/netfilter_ipv6/ |
ip6t_LOG.h | 9 #define IP6T_LOG_NFLOG 0x10 /* Log using nf_log backend */
|
/external/llvm/utils/ |
llvm-native-gcc | 10 $Backend = 'cbe'; 21 if ($ARGV[$i] =~ /-mllvm-backend=([a-z0-9]*)/) { 22 $Backend = $1; 75 $def =~ s/\.bc$/.$Backend/; 108 my ($BCFile, $Backend, $OutputFile) = @_; 111 if ($Backend eq 'cbe') { 118 } elsif ($Backend eq 'llc') { 134 my ($LLVMGCCCommand, $Backend, $OutputFile) = @_; 146 if ($Backend eq 'cbe') { 149 } elsif ($Backend eq 'llc') [all...] |
/external/webkit/Source/WebCore/storage/ |
IDBCursorWithValue.cpp | 36 PassRefPtr<IDBCursorWithValue> IDBCursorWithValue::create(PassRefPtr<IDBCursorBackendInterface> backend, IDBRequest* request, IDBAny* source, IDBTransaction* transaction) 38 return adoptRef(new IDBCursorWithValue(backend, request, source, transaction)); 41 IDBCursorWithValue::IDBCursorWithValue(PassRefPtr<IDBCursorBackendInterface> backend, IDBRequest* request, IDBAny* source, IDBTransaction* transaction) 42 : IDBCursor(backend, request, source, transaction)
|