Searched refs:context (Results 51 - 75 of 3914) sorted by relevance

1234567891011>>

/macosx-10.9.5/WebCore-7537.78.1/html/canvas/
H A DWebGLExtension.cpp34 WebGLExtension::WebGLExtension(WebGLRenderingContext* context) argument
35 : m_context(context)
H A DEXTTextureFilterAnisotropic.cpp34 EXTTextureFilterAnisotropic::EXTTextureFilterAnisotropic(WebGLRenderingContext* context) argument
35 : WebGLExtension(context)
48 PassOwnPtr<EXTTextureFilterAnisotropic> EXTTextureFilterAnisotropic::create(WebGLRenderingContext* context) argument
50 return adoptPtr(new EXTTextureFilterAnisotropic(context));
H A DOESElementIndexUint.cpp34 OESElementIndexUint::OESElementIndexUint(WebGLRenderingContext* context) argument
35 : WebGLExtension(context)
48 PassOwnPtr<OESElementIndexUint> OESElementIndexUint::create(WebGLRenderingContext* context) argument
50 return adoptPtr(new OESElementIndexUint(context));
H A DOESStandardDerivatives.cpp34 OESStandardDerivatives::OESStandardDerivatives(WebGLRenderingContext* context) argument
35 : WebGLExtension(context)
48 PassOwnPtr<OESStandardDerivatives> OESStandardDerivatives::create(WebGLRenderingContext* context) argument
50 return adoptPtr(new OESStandardDerivatives(context));
H A DOESTextureFloat.cpp34 OESTextureFloat::OESTextureFloat(WebGLRenderingContext* context) argument
35 : WebGLExtension(context)
48 PassOwnPtr<OESTextureFloat> OESTextureFloat::create(WebGLRenderingContext* context) argument
50 return adoptPtr(new OESTextureFloat(context));
H A DOESTextureHalfFloat.cpp34 OESTextureHalfFloat::OESTextureHalfFloat(WebGLRenderingContext* context) argument
35 : WebGLExtension(context)
48 PassOwnPtr<OESTextureHalfFloat> OESTextureHalfFloat::create(WebGLRenderingContext* context) argument
50 return adoptPtr(new OESTextureHalfFloat(context));
/macosx-10.9.5/bind9-45.100/bind9/lib/irs/include/irs/
H A Dcontext.h17 /* $Id: context.h,v 1.3 2009/09/02 23:48:02 tbox Exp $ */
25 * The IRS context module provides an abstract interface to the DNS library
26 * with an application. An IRS context object initializes and holds various
38 * Create an IRS context. It internally initializes the ISC and DNS libraries
52 * Return an IRS context for the calling thread. If no IRS context is
56 * expected to be thread-safe but do not accept an appropriate IRS context
67 * Destroy an IRS context.
71 *\li '*contextp' is a valid IRS context.
78 irs_context_getmctx(irs_context_t *context);
[all...]
/macosx-10.9.5/bless-98/libbless/Misc/
H A DBLContextPrint.c41 int contextprintf(BLContextPtr context, int loglevel, char const *fmt, ...) { argument
47 if(!context) return 0;
51 if(context->version == 0 && context->logstring) {
63 return context->logstring(context->logrefcon, loglevel, "Memory error, log entry not available");
66 ret = context->logstring(context->logrefcon, loglevel, out);
/macosx-10.9.5/ksh-20/ksh/src/lib/libcmd/
H A Dchown.c35 b_chown(int argc, char** argv, void* context) argument
38 return b_chgrp(argc, argv, context);
H A Dln.c32 b_ln(int argc, register char** argv, void* context) argument
34 return b_cp(argc, argv, context);
H A Dmd5sum.c32 b_md5sum(int argc, register char** argv, void* context) argument
34 return b_cksum(argc, argv, context);
H A Dmv.c32 b_mv(int argc, register char** argv, void* context) argument
34 return b_cp(argc, argv, context);
H A Dsum.c32 b_sum(int argc, register char** argv, void* context) argument
34 return b_cksum(argc, argv, context);
/macosx-10.9.5/zsh-60/zsh/Functions/VCS_Info/
H A Dvcs_info_hookadd13 local hook func context
18 context=":vcs_info-static_hooks:${hook}"
20 zstyle -a "${context}" hooks old
21 zstyle "${context}" hooks "${old[@]}" "$@"
/macosx-10.9.5/Heimdal-323.92.1/lib/kadm5/
H A Dacl.c79 fetch_acl (kadm5_server_context *context, argument
90 f = fopen(context->config.acl_file, "r");
104 ret = krb5_parse_name(context->context, p, &this_princ);
107 if(!krb5_principal_compare(context->context,
108 context->caller, this_princ)) {
109 krb5_free_principal(context->context, this_princ);
112 krb5_free_principal(context
172 _kadm5_acl_init(kadm5_server_context *context) argument
227 _kadm5_acl_check_permission(kadm5_server_context *context, unsigned op, krb5_const_principal princ) argument
[all...]
H A Dmodify_s.c44 kadm5_server_context *context = server_handle; local
55 if (!context->keep_open) {
56 ret = context->db->hdb_open(context->context, context->db, O_RDWR, 0);
60 ret = context->db->hdb_fetch_kvno(context->context, context
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/gssapi/krb5/
H A Dinit.c47 krb5_context context = ptr; local
49 if (context == NULL)
51 krb5_free_context(context);
69 _gsskrb5_init (krb5_context *context) argument
76 *context = HEIMDAL_getspecific(context_key);
77 if (*context == NULL) {
79 ret = krb5_init_context(context);
81 HEIMDAL_setspecific(context_key, *context, ret);
83 krb5_free_context(*context);
84 *context
[all...]
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Quartz/Examples/TLayer/
H A DCircle.py19 context = NSGraphicsContext.currentContext().graphicsPort()
22 CGContextSetGrayStrokeColor(context, 0, 1)
23 CGContextSetLineWidth(context, 1.5)
25 CGContextSaveGState(context)
27 CGContextTranslateCTM(context, self.center.x, self.center.y)
28 CGContextScaleCTM(context, self.radius, self.radius)
29 CGContextMoveToPoint(context, 1, 0)
30 CGContextAddArc(context, 0, 0, 1, 0, 2 * math.pi, False)
31 CGContextClosePath(context)
33 CGContextRestoreGState(context)
[all...]
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Quartz/Examples/TLayer/
H A DCircle.py19 context = NSGraphicsContext.currentContext().graphicsPort()
22 CGContextSetGrayStrokeColor(context, 0, 1)
23 CGContextSetLineWidth(context, 1.5)
25 CGContextSaveGState(context)
27 CGContextTranslateCTM(context, self.center.x, self.center.y)
28 CGContextScaleCTM(context, self.radius, self.radius)
29 CGContextMoveToPoint(context, 1, 0)
30 CGContextAddArc(context, 0, 0, 1, 0, 2 * math.pi, False)
31 CGContextClosePath(context)
33 CGContextRestoreGState(context)
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/trf/trf/generic/
H A Dsha1.c51 static void MDsha1_Start _ANSI_ARGS_ ((VOID* context));
52 static void MDsha1_Update _ANSI_ARGS_ ((VOID* context, unsigned int character));
53 static void MDsha1_UpdateBuf _ANSI_ARGS_ ((VOID* context, unsigned char* buffer, int bufLen));
54 static void MDsha1_Final _ANSI_ARGS_ ((VOID* context, VOID* digest));
127 MDsha1_Start (context)
128 VOID* context;
130 sha1f.init ((SHA_CTX*) context);
154 MDsha1_Update (context, character)
155 VOID* context;
160 sha1f.update ((SHA_CTX*) context,
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/krb5/
H A Dtest_cc.c52 test_default_name(krb5_context context) argument
58 p = krb5_cc_default_name(context);
60 krb5_errx (context, 1, "krb5_cc_default_name 1 failed");
63 ret = krb5_cc_set_default_name(context, NULL);
65 krb5_errx (context, 1, "krb5_cc_set_default_name failed");
67 p = krb5_cc_default_name(context);
69 krb5_errx (context, 1, "krb5_cc_default_name 2 failed");
73 krb5_errx (context, 1, "krb5_cc_default_name no longer same");
75 ret = krb5_cc_set_default_name(context, test_cc_name);
77 krb5_errx (context,
103 test_mcache(krb5_context context) argument
168 test_init_vs_destroy(krb5_context context, const char *type) argument
210 test_cache_remove(krb5_context context, const char *type) argument
258 krb5_context context; local
335 test_def_cc_name(krb5_context context) argument
362 test_cache_find(krb5_context context, const char *principal, int find) argument
385 test_cache_iter(krb5_context context, const char *type, int destroy) argument
426 test_cache_iter_all(krb5_context context) argument
463 test_copy(krb5_context context, const char *from, const char *to) argument
504 test_move(krb5_context context, const char *type) argument
553 test_prefix_ops(krb5_context context, const char *name, const krb5_cc_ops *ops) argument
566 test_cc_config(krb5_context context) argument
630 test_threaded(krb5_context context) argument
714 krb5_context context; local
[all...]
H A Dtest_prf.c52 krb5_context context; local
60 ret = krb5_init_context(&context);
64 ret = krb5_generate_random_keyblock(context, etype, &key);
66 krb5_err(context, 1, ret, "krb5_generate_random_keyblock");
68 ret = krb5_crypto_prf_length(context, etype, &length);
70 krb5_err(context, 1, ret, "krb5_crypto_prf_length");
72 ret = krb5_crypto_init(context, &key, 0, &crypto);
74 krb5_err(context, 1, ret, "krb5_crypto_init");
79 ret = krb5_crypto_prf(context, crypto, &input, &output);
81 krb5_err(context,
[all...]
/macosx-10.9.5/Heimdal-323.92.1/appl/test/
H A Dtcp_server.c37 krb5_context context; variable
53 status = krb5_auth_con_init (context, &auth_context);
55 krb5_err (context, 1, status, "krb5_auth_con_init");
57 status = krb5_auth_con_setaddrs_from_fd (context,
62 krb5_err (context, 1, status, "krb5_auth_con_setaddrs_from_fd");
65 krb5_err (context, 1, errno, "gethostname");
67 status = krb5_sname_to_principal (context,
73 krb5_err (context, 1, status, "krb5_sname_to_principal");
75 status = krb5_recvauth (context,
84 krb5_err (context,
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/efl/tests/
H A Dtest_ewk2_context.cpp46 Ewk_Context* context = ewk_view_context_get(webView()); local
47 Ewk_Cookie_Manager* cookieManager = ewk_context_cookie_manager_get(context);
49 ASSERT_EQ(cookieManager, ewk_context_cookie_manager_get(context));
54 Ewk_Context* context = ewk_view_context_get(webView()); local
55 Ewk_Database_Manager* databaseManager = ewk_context_database_manager_get(context);
57 ASSERT_EQ(databaseManager, ewk_context_database_manager_get(context));
62 Ewk_Context* context = ewk_view_context_get(webView()); local
63 Ewk_Favicon_Database* faviconDatabase = ewk_context_favicon_database_get(context);
65 ASSERT_EQ(faviconDatabase, ewk_context_favicon_database_get(context));
70 Ewk_Context* context local
96 Ewk_Context* context = ewk_view_context_get(webView()); local
112 Ewk_Context* context = ewk_context_new(); local
119 Ewk_Context* context = ewk_context_new_with_injected_bundle_path(environment->injectedBundleSample()); local
126 Ewk_Context* context = ewk_view_context_get(webView()); local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/Modules/indexeddb/
H A DIDBFactory.cpp70 static bool isContextValid(ScriptExecutionContext* context) argument
72 ASSERT(context->isDocument() || context->isWorkerContext());
73 if (context->isDocument()) {
74 Document* document = toDocument(context);
78 if (context->isWorkerContext())
84 static String getIndexedDBDatabasePath(ScriptExecutionContext* context) argument
86 ASSERT(isContextValid(context));
87 if (context->isDocument()) {
88 Document* document = toDocument(context);
101 getDatabaseNames(ScriptExecutionContext* context, ExceptionCode& ec) argument
116 open(ScriptExecutionContext* context, const String& name, unsigned long long version, ExceptionCode& ec) argument
126 openInternal(ScriptExecutionContext* context, const String& name, int64_t version, ExceptionCode& ec) argument
148 open(ScriptExecutionContext* context, const String& name, ExceptionCode& ec) argument
154 deleteDatabase(ScriptExecutionContext* context, const String& name, ExceptionCode& ec) argument
174 cmp(ScriptExecutionContext* context, const ScriptValue& firstValue, const ScriptValue& secondValue, ExceptionCode& ec) argument
[all...]

Completed in 441 milliseconds

1234567891011>>