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

1 2 3 4 5 6 7 8 91011>>

  /external/wpa_supplicant_8/src/utils/
ext_password.c 2 * External password backend
31 const struct ext_password_backend *backend; member in struct:ext_password_data
36 struct ext_password_data * ext_password_init(const char *backend,
47 if (os_strcmp(backends[i]->name, backend) == 0) {
48 data->backend = backends[i];
53 if (!data->backend) {
58 data->priv = data->backend->init(params);
70 if (data && data->backend && data->priv)
71 data->backend->deinit(data->priv);
81 return data->backend->get(data->priv, name)
    [all...]
ext_password.h 2 * External password backend
16 struct ext_password_data * ext_password_init(const char *backend,
  /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,
85 * @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);
  /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/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/libusb_aah/
configure.ac 51 backend="linux"
55 backend="darwin"
59 backend="openbsd"
62 AC_MSG_RESULT([NetBSD (using OpenBSD backend)])
63 backend="openbsd"
67 backend="windows"
70 AC_MSG_RESULT([Cygwin (using Windows backend)])
71 backend="windows"
77 case $backend in
79 AC_DEFINE(OS_LINUX, 1, [Linux backend])
    [all...]
  /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.
  /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/skia/src/gpu/
GrGpuFactory.cpp 17 GrGpu* GrGpu::Create(GrBackend backend, GrBackendContext context) {
22 if (kOpenGL_GrBackend == 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/libusb_aah/msvc/
config.h 17 /* Windows backend */

Completed in 1420 milliseconds

1 2 3 4 5 6 7 8 91011>>