Searched defs:context (Results 251 - 275 of 1764) sorted by relevance

<<11121314151617181920>>

/external/google-breakpad/src/processor/
H A Dstackwalker_sparc.cc47 const MDRawContextSPARC* context,
52 context_(context) {
58 BPLOG(ERROR) << "Can't get context frame without context";
65 // straight out of the CPU context structure.
66 frame->context = *context_;
69 frame->instruction = frame->context.pc;
97 uint64_t stack_pointer = last_frame->context.g_r[30];
98 if (stack_pointer <= last_frame->context.g_r[14]) {
116 frame->context
46 StackwalkerSPARC(const SystemInfo* system_info, const MDRawContextSPARC* context, MemoryRegion* memory, const CodeModules* modules, StackFrameSymbolizer* resolver_helper) argument
[all...]
/external/google-breakpad/src/processor/testdata/
H A Dtest_app.cc42 void *context, EXCEPTION_POINTERS *exinfo,
41 callback(const wchar_t *dump_path, const wchar_t *id, void *context, EXCEPTION_POINTERS *exinfo, MDRawAssertionInfo *assertion, bool succeeded) argument
/external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/
H A DClientPairingSession.java43 * @param context the pairing context for the session
47 PairingContext context, String serviceName) {
48 this(protocol, context, serviceName, null);
55 * @param context the pairing context for the session
60 PairingContext context, String serviceName, String clientName) {
61 super(protocol, context);
46 ClientPairingSession(PoloWireInterface protocol, PairingContext context, String serviceName) argument
59 ClientPairingSession(PoloWireInterface protocol, PairingContext context, String serviceName, String clientName) argument
H A DServerPairingSession.java42 PairingContext context) {
43 this(protocol, context, null);
47 PairingContext context, String serverName) {
48 super(protocol, context);
41 ServerPairingSession(PoloWireInterface protocol, PairingContext context) argument
46 ServerPairingSession(PoloWireInterface protocol, PairingContext context, String serverName) argument
/external/icu/icu4c/source/common/
H A Duenumimp.h110 /* context. Use it for what you need */
111 void *context; member in struct:UEnumeration
H A Dumutex.h217 // No context parameter.
229 // With ErrorCode, No context parameter.
248 // with a context parameter.
249 template<class T> void umtx_initOnce(UInitOnce &uio, void (*fp)(T), T context) { argument
254 (*fp)(context);
260 // with a context parameter and an error code.
261 template<class T> void umtx_initOnce(UInitOnce &uio, void (*fp)(T, UErrorCode &), T context, UErrorCode &errCode) { argument
267 (*fp)(context, errCode);
/external/icu/icu4c/source/test/perf/ucnvavailperf/
H A Ducnvavailperf.cpp52 my_alloc(const void *context, size_t size) { argument
64 my_free(const void *context, void *mem) { argument
74 my_realloc(const void *context, void *mem, size_t size) { argument
75 my_free(context, mem);
/external/jetty/src/java/org/eclipse/jetty/security/
H A DDefaultAuthenticatorFactory.java57 public Authenticator getAuthenticator(Server server, ServletContext context, AuthConfiguration configuration, IdentityService identityService, LoginService loginService) argument
/external/jetty/src/java/org/eclipse/jetty/server/handler/jmx/
H A DAbstractHandlerMBean.java58 ContextHandler context =
62 if (context != null)
63 basis = getContextName(context);
81 ContextHandler context = (ContextHandler)_managed;
82 name = getContextName(context);
93 protected String getContextName(ContextHandler context) argument
97 if (context.getContextPath()!=null && context.getContextPath().length()>0)
99 int idx = context.getContextPath().lastIndexOf('/');
100 name = idx < 0 ? context
[all...]
/external/jetty/src/java/org/eclipse/jetty/webapp/
H A DAbstractConfiguration.java23 public void preConfigure(WebAppContext context) throws Exception argument
27 public void configure(WebAppContext context) throws Exception argument
31 public void postConfigure(WebAppContext context) throws Exception argument
35 public void deconfigure(WebAppContext context) throws Exception argument
39 public void destroy(WebAppContext context) throws Exception argument
43 public void cloneConfigure(WebAppContext template, WebAppContext context) throws Exception argument
H A DConfiguration.java34 * @param context The context to configure
37 public void preConfigure (WebAppContext context) throws Exception; argument
45 * @param context The context to configure
48 public void configure (WebAppContext context) throws Exception; argument
53 * @param context The context to configure
56 public void postConfigure (WebAppContext context) throws Exception; argument
61 * called to allow the context t
65 deconfigure(WebAppContext context) argument
74 destroy(WebAppContext context) argument
86 cloneConfigure(WebAppContext template, WebAppContext context) argument
[all...]
H A DFragmentConfiguration.java38 public void preConfigure(WebAppContext context) throws Exception argument
40 if (!context.isConfigurationDiscovered())
44 findWebFragments(context, context.getMetaData());
49 public void configure(WebAppContext context) throws Exception argument
51 if (!context.isConfigurationDiscovered())
55 context.getMetaData().orderFragments();
59 public void postConfigure(WebAppContext context) throws Exception argument
61 context.setAttribute(FRAGMENT_RESOURCES, null);
70 public void findWebFragments (final WebAppContext context, fina argument
[all...]
H A DJettyWebXmlConfiguration.java58 public void configure (WebAppContext context) throws Exception argument
61 if (context.isStarted())
69 Resource web_inf = context.getWebInf();
83 String[] old_server_classes = context.getServerClasses();
86 context.setServerClasses(null);
90 XmlConfiguration jetty_config = (XmlConfiguration)context.getAttribute(XML_CONFIGURATION);
98 context.removeAttribute(XML_CONFIGURATION);
100 setupXmlConfiguration(context,jetty_config, web_inf);
103 jetty_config.configure(context);
112 if (context
124 setupXmlConfiguration(WebAppContext context, XmlConfiguration jetty_config, Resource web_inf) argument
[all...]
H A DWebXmlConfiguration.java45 public void preConfigure (WebAppContext context) throws Exception argument
48 String defaultsDescriptor = context.getDefaultsDescriptor();
53 dftResource = context.newResource(defaultsDescriptor);
54 context.getMetaData().setDefaults (dftResource);
58 Resource webxml = findWebXml(context);
61 context.getMetaData().setWebXml(webxml);
62 context.getServletContext().setEffectiveMajorVersion(context.getMetaData().getWebXml().getMajorVersion());
63 context.getServletContext().setEffectiveMinorVersion(context
85 configure(WebAppContext context) argument
98 findWebXml(WebAppContext context) argument
122 deconfigure(WebAppContext context) argument
[all...]
/external/jmonkeyengine/engine/src/android/jme3test/android/
H A DDemoLaunchAdapter.java20 private Context context; field in class:DemoLaunchAdapter
24 public DemoLaunchAdapter(Context context, List<DemoLaunchEntry> listDemos) { argument
25 this.context = context;
44 LayoutInflater inflater = (LayoutInflater) context
/external/jmonkeyengine/engine/src/lwjgl/com/jme3/input/lwjgl/
H A DLwjglKeyInput.java50 private LwjglAbstractDisplay context; field in class:LwjglKeyInput
54 public LwjglKeyInput(LwjglAbstractDisplay context){ argument
55 this.context = context;
59 if (!context.isRenderable())
76 if (!context.isRenderable())
93 if (!context.isRenderable())
/external/jmonkeyengine/engine/src/test/jme3test/awt/
H A DAppHarness.java54 private JmeCanvasContext context; field in class:AppHarness
95 context = (JmeCanvasContext) app.getContext();
96 canvas = context.getCanvas();
127 context.setAutoFlushFrames(true);
133 context.setAutoFlushFrames(false);
/external/jsilver/src/com/google/clearsilver/jsilver/template/
H A DTemplate.java43 * @param context RenderingContext to use during rendering.
45 void render(RenderingContext context) throws IOException; argument
/external/libcxxabi/test/
H A Dbacktrace_test.pass.cpp14 trace_function(struct _Unwind_Context* context, void* ntraced) { argument
/external/libnfc-nxp/src/
H A DphLibNfc_Ioctl.c66 STATIC void phLibNfc_Ioctl_Mgmt_CB(void *context,
73 void *context,
236 STATIC void phLibNfc_Ioctl_Mgmt_CB(void *context, argument
258 pIoctlCntx= (phLibNfc_Ioctl_Cntx_t*)context;
302 void *context,
319 if((NULL != context)&&(context == (void *)&phLibNfc_Ioctl_Cntx))
301 phLibNfc_Switch_Swp_Mode_CB( void *context, NFCSTATUS status ) argument
H A DphLibNfc_target.c62 void *context,
165 void *context,
172 phLibNfc_LibContext_t *pLibNfc_Ctxt = (phLibNfc_LibContext_t *)context;
175 /* Check for the context returned by below layer */
177 { /*wrong context returned*/
352 /* Check for the context returned by below layer */
354 { /*wrong context returned*/
164 phLibNfc_RemoteDev_Receive_Cb( void *context, phNfc_sData_t *rec_rsp_data, NFCSTATUS status ) argument
/external/libunwind/src/unwind/
H A DRaiseException.c34 struct _Unwind_Context context; local
46 if (_Unwind_InitContext (&context, &uc) < 0)
56 if (unw_step (&context.cursor) <= 0)
63 if (unw_get_proc_info (&context.cursor, &pi) < 0)
74 &context);
94 if (unw_get_reg (&context.cursor, UNW_REG_IP, &ip) < 0)
104 if (unw_init_local (&context.cursor, &uc) < 0)
107 ret = _Unwind_Phase2 (exception_object, &context, &destroy_map);
/external/libxml2/doc/examples/
H A Dio1.c6 * XInclude method context to show how dynamic document can
48 * Returns an Input context or NULL in case or error
61 * @context: the read context
68 sqlClose(void * context) { argument
69 if (context == NULL) return(-1);
77 * @context: the read context
86 sqlRead(void * context, char * buffer, int len) { argument
87 const char *ptr = (const char *) context;
[all...]
/external/lldb/source/Breakpoint/
H A DBreakpointResolverAddress.cpp72 SymbolContext &context,
69 SearchCallback( SearchFilter &filter, SymbolContext &context, Address *addr, bool containing ) argument
/external/llvm/include/llvm/IR/
H A DMDBuilder.h36 MDBuilder(LLVMContext &context) : Context(context) {} argument

Completed in 623 milliseconds

<<11121314151617181920>>