Searched refs:context (Results 176 - 200 of 6625) sorted by relevance

1234567891011>>

/external/libunwind/src/unwind/
H A DSetGR.c32 _Unwind_SetGR (struct _Unwind_Context *context, int index, argument
38 unw_set_reg (&context->cursor, index, new_value);
42 unw_set_reg (&context->cursor, UNW_IA64_NAT + (index - UNW_IA64_GR), 0);
/external/qemu/distrib/libselinux/src/
H A Dfsetfilecon.c10 int fsetfilecon(int fd, const char *context) argument
12 return fsetxattr(fd, XATTR_NAME_SELINUX, context, strlen(context) + 1,
H A Dlsetfilecon.c10 int lsetfilecon(const char *path, const char *context) argument
12 return lsetxattr(path, XATTR_NAME_SELINUX, context, strlen(context) + 1,
H A Dsetfilecon.c10 int setfilecon(const char *path, const char *context) argument
12 return setxattr(path, XATTR_NAME_SELINUX, context, strlen(context) + 1,
/external/skia/experimental/SkV8Example/
H A Dsample.js6 function f(context) {
8 context.fillStyle = '#0000ff';
9 context.fillRect(100, 100, Math.sin(tick)*100, Math.cos(tick)*100);
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dmd5_i.h18 void MD5Init(struct MD5Context *context);
19 void MD5Update(struct MD5Context *context, unsigned char const *buf,
21 void MD5Final(unsigned char digest[16], struct MD5Context *context);
H A Dsha1_i.h18 void SHA1Init(struct SHA1Context *context);
19 void SHA1Update(struct SHA1Context *context, const void *data, u32 len);
20 void SHA1Final(unsigned char digest[20], struct SHA1Context *context);
/external/wpa_supplicant_8/src/crypto/
H A Dmd5_i.h18 void MD5Init(struct MD5Context *context);
19 void MD5Update(struct MD5Context *context, unsigned char const *buf,
21 void MD5Final(unsigned char digest[16], struct MD5Context *context);
H A Dsha1_i.h18 void SHA1Init(struct SHA1Context *context);
19 void SHA1Update(struct SHA1Context *context, const void *data, u32 len);
20 void SHA1Final(unsigned char digest[20], struct SHA1Context *context);
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dmd5_i.h18 void MD5Init(struct MD5Context *context);
19 void MD5Update(struct MD5Context *context, unsigned char const *buf,
21 void MD5Final(unsigned char digest[16], struct MD5Context *context);
H A Dsha1_i.h18 void SHA1Init(struct SHA1Context *context);
19 void SHA1Update(struct SHA1Context *context, const void *data, u32 len);
20 void SHA1Final(unsigned char digest[20], struct SHA1Context *context);
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMDefaultBaseTraversers.java206 * @param context The context node if this iteration.
211 public int next(int context, int current) argument
220 * @param context The context node of this iteration.
226 public int next(int context, int current, int expandedTypeID) argument
248 * By the nature of the stateless traversal, the context node can not be
252 * @param context The context node of this traversal.
256 public int first(int context) argument
273 first(int context, int expandedTypeID) argument
294 next(int context, int current) argument
310 next(int context, int current, int expandedTypeID) argument
408 first(int context) argument
427 first(int context, int expandedTypeID) argument
460 next(int context, int current) argument
475 next(int context, int current, int expandedTypeID) argument
679 first(int context, int expandedTypeID) argument
701 next(int context, int current) argument
730 next(int context, int current, int expandedTypeID) argument
785 first(int context) argument
805 next(int context, int current) argument
840 first(int context) argument
878 first(int context, int expandedTypeID) argument
926 next(int context, int current) argument
958 next(int context, int current, int expandedTypeID) argument
994 next(int context, int current) argument
1009 next(int context, int current, int expandedTypeID) argument
1036 next(int context, int current) argument
1054 next(int context, int current, int expandedTypeID) argument
1087 next(int context, int current) argument
1105 next(int context, int current, int expandedTypeID) argument
1141 first(int context) argument
1183 next(int context, int current) argument
1201 next(int context, int current, int expandedTypeID) argument
1245 next(int context, int current) argument
1274 next(int context, int current, int expandedTypeID) argument
1309 next(int context, int current) argument
1337 next(int context, int current, int expandedTypeID) argument
1370 next(int context, int current) argument
1385 next(int context, int current, int expandedTypeID) argument
1413 first(int context) argument
1430 first(int context, int expandedTypeID) argument
1443 next(int context, int current) argument
1458 next(int context, int current, int expandedTypeID) argument
1477 first(int context) argument
1490 first(int context, int expandedTypeID) argument
1504 next(int context, int current) argument
1530 next(int context, int current, int expandedTypeID) argument
1564 first(int context, int expandedTypeID) argument
1579 next(int context, int current) argument
1594 next(int context, int current, int expandedTypeID) argument
1638 first(int context) argument
1657 first(int context, int expandedTypeID) argument
1709 first(int context) argument
1728 first(int context, int expandedTypeID) argument
[all...]
/external/chromium_org/extensions/browser/
H A Dtest_extensions_browser_client.cc28 void TestExtensionsBrowserClient::SetIncognitoContext(BrowserContext* context) { argument
29 // If a context is provided it must be off-the-record.
30 DCHECK(!context || context->IsOffTheRecord());
31 incognito_context_ = context;
38 BrowserContext* context) {
42 bool TestExtensionsBrowserClient::IsValidContext(BrowserContext* context) { argument
43 return context == main_context_ ||
44 (incognito_context_ && context == incognito_context_);
57 BrowserContext* context) {
36 AreExtensionsDisabled( const base::CommandLine& command_line, BrowserContext* context) argument
56 HasOffTheRecordContext( BrowserContext* context) argument
61 GetOffTheRecordContext( BrowserContext* context) argument
68 GetOriginalContext( BrowserContext* context) argument
108 GetPrefServiceForContext( BrowserContext* context) argument
113 GetEarlyExtensionPrefsObservers( content::BrowserContext* context, std::vector<ExtensionPrefsObserver*>* observers) const argument
127 DidVersionUpdate(BrowserContext* context) argument
140 GetApiActivityMonitor( BrowserContext* context) argument
[all...]
/external/pdfium/core/include/fdrm/
H A Dfx_crypt.h13 void CRYPT_ArcFourSetup(FX_LPVOID context, FX_LPCBYTE key, FX_DWORD length);
14 void CRYPT_ArcFourCrypt(FX_LPVOID context, FX_LPBYTE data, FX_DWORD size);
15 void CRYPT_AESSetKey(FX_LPVOID context, FX_DWORD blocklen, FX_LPCBYTE key, FX_DWORD keylen, FX_BOOL bEncrypt);
16 void CRYPT_AESSetIV(FX_LPVOID context, FX_LPCBYTE iv);
17 void CRYPT_AESDecrypt(FX_LPVOID context, FX_LPBYTE dest, FX_LPCBYTE src, FX_DWORD size);
18 void CRYPT_AESEncrypt(FX_LPVOID context, FX_LPBYTE dest, FX_LPCBYTE src, FX_DWORD size);
20 void CRYPT_MD5Start(FX_LPVOID context);
21 void CRYPT_MD5Update(FX_LPVOID context, FX_LPCBYTE data, FX_DWORD size);
22 void CRYPT_MD5Finish(FX_LPVOID context, FX_BYTE digest[16]);
24 void CRYPT_SHA1Start(FX_LPVOID context);
[all...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DAsyncCallStackTracker.cpp138 void AsyncCallStackTracker::didInstallTimer(ExecutionContext* context, int timerId, bool singleShot, const ScriptValue& callFrames) argument
140 ASSERT(context);
145 ExecutionContextData* data = createContextDataIfNeeded(context);
151 void AsyncCallStackTracker::didRemoveTimer(ExecutionContext* context, int timerId) argument
153 ASSERT(context);
157 ExecutionContextData* data = m_executionContextDataMap.get(context);
164 void AsyncCallStackTracker::willFireTimer(ExecutionContext* context, int timerId) argument
166 ASSERT(context);
170 if (ExecutionContextData* data = m_executionContextDataMap.get(context)) {
172 setCurrentAsyncCallChain(context, dat
180 didRequestAnimationFrame(ExecutionContext* context, int callbackId, const ScriptValue& callFrames) argument
191 didCancelAnimationFrame(ExecutionContext* context, int callbackId) argument
201 willFireAnimationFrame(ExecutionContext* context, int callbackId) argument
238 ExecutionContext* context = eventTarget->executionContext(); local
266 ExecutionContext* context = xhr->executionContext(); local
275 didEnqueueMutationRecord(ExecutionContext* context, MutationObserver* observer, const ScriptValue& callFrames) argument
285 hasEnqueuedMutationRecord(ExecutionContext* context, MutationObserver* observer) argument
294 didClearAllMutationRecords(ExecutionContext* context, MutationObserver* observer) argument
302 willDeliverMutationRecords(ExecutionContext* context, MutationObserver* observer) argument
312 didPostExecutionContextTask(ExecutionContext* context, ExecutionContextTask* task, const ScriptValue& callFrames) argument
322 didKillAllExecutionContextTasks(ExecutionContext* context) argument
330 willPerformExecutionContextTask(ExecutionContext* context, ExecutionContextTask* task) argument
348 didEnqueueV8AsyncTask(ExecutionContext* context, const String& eventName, int id, const ScriptValue& callFrames) argument
358 willHandleV8AsyncTask(ExecutionContext* context, const String& eventName, int id) argument
368 traceAsyncOperationStarting(ExecutionContext* context, const String& operationName, const ScriptValue& callFrames) argument
382 traceAsyncOperationCompleted(ExecutionContext* context, int operationId) argument
392 traceAsyncCallbackStarting(ExecutionContext* context, int operationId) argument
419 setCurrentAsyncCallChain(ExecutionContext* context, PassRefPtrWillBeRawPtr<AsyncCallChain> chain) argument
453 createContextDataIfNeeded(ExecutionContext* context) argument
[all...]
/external/chromium_org/third_party/angle/src/compiler/translator/
H A Dglslang.l61 static int ES2_reserved_ES3_keyword(TParseContext *context, int token);
62 static int ES2_keyword_ES3_reserved(TParseContext *context, int token);
63 static int ES2_ident_ES3_keyword(TParseContext *context, int token);
64 static int uint_constant(TParseContext *context);
67 static int floatsuffix_check(TParseContext* context);
83 TParseContext* context = yyextra;
92 "attribute" { return ES2_keyword_ES3_reserved(context, ATTRIBUTE); }
95 "varying" { return ES2_keyword_ES3_reserved(context, VARYING); }
105 "switch" { return ES2_reserved_ES3_keyword(context, SWITCH); }
106 "case" { return ES2_ident_ES3_keyword(context, CAS
[all...]
/external/opencv/cxcore/src/
H A Dcxerror.cpp76 CvContext* context = (CvContext*)malloc( sizeof(*context) ); local
78 context->err_mode = CV_ErrModeLeaf;
79 context->err_code = CV_StsOk;
81 context->error_callback = CV_DEFAULT_ERROR_CALLBACK;
82 context->userdata = 0;
84 return context;
88 icvDestroyContext(CvContext* context) argument
90 free(context);
104 CvContext* context; local
217 CvContext* context = icvGetContext(); local
316 CvContext* context = icvGetContext(); local
341 CvContext* context = icvGetContext(); local
420 CvContext* context = (CvContext*) key_val; local
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Dextension_util.h34 content::BrowserContext* context);
40 content::BrowserContext* context,
46 content::BrowserContext* context);
50 content::BrowserContext* context);
54 content::BrowserContext* context);
60 content::BrowserContext* context,
69 content::BrowserContext* context);
76 content::BrowserContext* context,
86 content::BrowserContext* context);
90 content::BrowserContext* context);
[all...]
H A Dextension_ui_util.h22 content::BrowserContext* context);
28 content::BrowserContext* context);
34 content::BrowserContext* context);
40 content::BrowserContext* context);
47 content::BrowserContext* context);
/external/chromium_org/printing/
H A Dprinted_document_win.cc16 void SimpleModifyWorldTransform(HDC context, argument
24 BOOL res = ModifyWorldTransform(context, &xform, MWT_LEFTMULTIPLY);
28 void DrawRect(HDC context, gfx::Rect rect) { argument
29 Rectangle(context, rect.x(), rect.y(), rect.right(), rect.bottom());
37 const PrintedPage& page, gfx::NativeDrawingContext context) const {
46 DCHECK(context);
52 // Save the state to make sure the context this function call does not modify
53 // the device context.
54 int saved_state = SaveDC(context);
56 skia::InitializeDC(context);
[all...]
/external/srec/srec/crec/
H A Dc47mulsp.c93 srec_context* context = grammar; local
95 context->max_searchable_nodes = recm->max_fsm_nodes;
96 context->max_searchable_arcs = recm->max_fsm_arcs;
98 if (context->max_searchable_nodes < context->num_nodes || context->max_searchable_arcs < context->num_arcs)
100 PLogError(L("Error: context switch failed due to search limitations [arcs max=%d, actual=%d], [nodes max=%d, actual=%d]\n"),
101 context->max_searchable_arcs, context
[all...]
/external/chromium_org/ppapi/c/
H A Dppb_opengles2.h92 void (*ActiveTexture)(PP_Resource context, GLenum texture);
93 void (*AttachShader)(PP_Resource context, GLuint program, GLuint shader);
94 void (*BindAttribLocation)(PP_Resource context,
98 void (*BindBuffer)(PP_Resource context, GLenum target, GLuint buffer);
99 void (*BindFramebuffer)(PP_Resource context,
102 void (*BindRenderbuffer)(PP_Resource context,
105 void (*BindTexture)(PP_Resource context, GLenum target, GLuint texture);
106 void (*BlendColor)(PP_Resource context,
111 void (*BlendEquation)(PP_Resource context, GLenum mode);
112 void (*BlendEquationSeparate)(PP_Resource context,
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/beacon/
H A DNavigatorBeacon.cpp43 bool NavigatorBeacon::canSendBeacon(ExecutionContext* context, const KURL& url, ExceptionState& exceptionState) argument
55 if (!ContentSecurityPolicy::shouldBypassMainWorld(context) && !context->contentSecurityPolicy()->allowConnectToSource(url)) {
80 bool NavigatorBeacon::beaconResult(ExecutionContext* context, bool allowed, int sentBytes) argument
86 UseCounter::count(context, UseCounter::SendBeaconQuotaExceeded);
91 bool NavigatorBeacon::sendBeacon(ExecutionContext* context, Navigator& navigator, const String& urlstring, const String& data, ExceptionState& exceptionState) argument
93 return NavigatorBeacon::from(navigator).sendBeacon(context, urlstring, data, exceptionState);
96 bool NavigatorBeacon::sendBeacon(ExecutionContext* context, const String& urlstring, const String& data, ExceptionState& exceptionState) argument
98 KURL url = context->completeURL(urlstring);
99 if (!canSendBeacon(context, ur
107 sendBeacon(ExecutionContext* context, Navigator& navigator, const String& urlstring, PassRefPtr<ArrayBufferView> data, ExceptionState& exceptionState) argument
112 sendBeacon(ExecutionContext* context, const String& urlstring, PassRefPtr<ArrayBufferView> data, ExceptionState& exceptionState) argument
123 sendBeacon(ExecutionContext* context, Navigator& navigator, const String& urlstring, PassRefPtrWillBeRawPtr<Blob> data, ExceptionState& exceptionState) argument
128 sendBeacon(ExecutionContext* context, const String& urlstring, PassRefPtrWillBeRawPtr<Blob> data, ExceptionState& exceptionState) argument
139 sendBeacon(ExecutionContext* context, Navigator& navigator, const String& urlstring, PassRefPtrWillBeRawPtr<DOMFormData> data, ExceptionState& exceptionState) argument
144 sendBeacon(ExecutionContext* context, const String& urlstring, PassRefPtrWillBeRawPtr<DOMFormData> data, ExceptionState& exceptionState) argument
[all...]
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DPipeline.py25 def parse_stage_factory(context):
31 scope = context.find_module(full_module_name, pos = initial_pos, need_pxd = 0,
34 tree = context.parse(source_desc, scope, pxd = 0, full_module_name = full_module_name)
41 def parse_pxd_stage_factory(context, scope, module_name):
43 tree = context.parse(source_desc, scope, pxd=True,
57 def inject_pxd_code_stage_factory(context):
61 for name, (statlistnode, scope) in context.pxds.iteritems():
82 def inject_utility_code_stage_factory(context):
84 use_utility_code_definitions(context.cython_scope, module_node.scope)
128 def create_pipeline(context, mod
[all...]
/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/
H A DWebappAuthenticatorTest.java14 Context context = getInstrumentation().getTargetContext();
16 byte[] mac = WebappAuthenticator.getMacForUrl(context, url);
18 assertTrue(WebappAuthenticator.isUrlValid(context, url, mac));
19 assertFalse(WebappAuthenticator.isUrlValid(context, url + "?goats=true", mac));
21 assertFalse(WebappAuthenticator.isUrlValid(context, url, mac));

Completed in 449 milliseconds

1234567891011>>