Searched refs:context (Results 1 - 25 of 3114) sorted by relevance

1234567891011>>

/macosx-10.10.1/Heimdal-398.1.2/lib/kadm5/
H A Ddestroy_c.c41 kadm5_client_context *context = server_handle; local
43 free(context->realm);
44 free(context->admin_server);
45 close(context->sock);
46 if (context->client_name)
47 free(context->client_name);
48 if (context->service_name)
49 free(context->service_name);
50 if (context->ac != NULL)
51 krb5_auth_con_free(context
[all...]
H A Ddelete_s.c41 kadm5_server_context *context = server_handle; local
46 if (!context->keep_open) {
47 ret = context->db->hdb_open(context->context, context->db, O_RDWR, 0);
49 krb5_warn(context->context, ret, "opening database");
53 ret = context->db->hdb_fetch_kvno(context
[all...]
H A Drename_s.c43 kadm5_server_context *context = server_handle; local
49 if(krb5_principal_compare(context->context, source, target))
51 if (!context->keep_open) {
52 ret = context->db->hdb_open(context->context, context->db, O_RDWR, 0);
56 ret = context->db->hdb_fetch_kvno(context
[all...]
/macosx-10.10.1/Libinfo-459/lookup.subproj/
H A Dlibinfo.h48 typedef void (*si_user_async_callback)(struct passwd *, void *context);
49 typedef void (*si_group_async_callback)(struct group *, void *context);
50 typedef void (*si_grouplist_async_callback)(struct grouplist_s *, void *context);
51 typedef void (*si_alias_async_callback)(struct aliasent *, void *context);
52 typedef void (*si_host_async_callback)(struct hostent *, void *context);
53 typedef void (*si_ipnode_async_callback)(struct hostent *, int32_t status, void *context);
54 typedef void (*si_network_async_callback)(struct netent *, void *context);
55 typedef void (*si_service_async_callback)(struct servent *, void *context);
56 typedef void (*si_protocol_async_callback)(struct protoent *, void *context);
57 typedef void (*si_rpc_async_callback)(struct rpcent *, void *context);
[all...]
/macosx-10.10.1/bless-103/libbless/EFI/
H A DBLIsEFIRecoveryAccessibleDevice.c35 extern bool isPreferredSystemPartition(BLContextPtr context, CFStringRef bsdName);
37 bool BLIsEFIRecoveryAccessibleDevice(BLContextPtr context, CFStringRef bsdName) argument
39 return isPreferredSystemPartition(context, bsdName);
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-Quartz/Examples/Programming with Quartz/BasicDrawing/
H A DShadowsAndTransparencyLayers.py16 def createTrianglePath(context):
17 CGContextBeginPath(context)
18 CGContextMoveToPoint(context, 0, 0)
19 CGContextAddLineToPoint(context, 50, 0)
20 CGContextAddLineToPoint(context, 25, 50)
21 CGContextClosePath(context)
23 def drawSimpleShadow(context):
26 CGContextTranslateCTM(context, 20, 300)
36 # Set the shadow in the context.
37 CGContextSetShadow(context, offse
[all...]
H A DColorAndGState.py8 def doColorSpaceFillAndStroke(context):
14 CGContextSetFillColorSpace(context, theColorSpace)
18 CGContextSetFillColor(context, opaqueRed)
21 CGContextSetStrokeColorSpace(context, theColorSpace)
25 CGContextSetStrokeColor(context, aBlue)
27 CGContextSetLineWidth(context, 8.0)
29 CGContextBeginPath(context)
30 CGContextAddRect(context, CGRectMake(20.0, 20.0, 100.0, 100.0))
31 CGContextDrawPath(context, kCGPathFillStroke)
37 CGContextSetStrokeColor(context, aBlu
[all...]
H A DQuartzTextDrawing.py8 def drawQuartzRomanText(context):
18 CGContextSetFillColorSpace(context,
24 CGContextSetTextMatrix(context, CGAffineTransformIdentity)
28 CGContextSelectFont(context, "Times-Roman", fontSize, kCGEncodingMacRoman)
31 CGContextShowTextAtPoint(context, 70, 400, text, textlen)
34 CGContextSetFillColor(context, opaqueRed)
37 CGContextShowText(context, text, textlen)
41 p = CGContextGetTextPosition(context)
43 CGContextTranslateCTM(context, p.x, p.y)
47 CGContextRotateCTM(context, Utilitie
[all...]
H A DDrawingBasics.py7 def doSimpleRect(context):
9 CGContextSetRGBFillColor(context, 1.0, 0.0, 0.0, 1.0)
13 CGContextFillRect(context, ourRect)
15 def doStrokedRect(context):
17 CGContextSetRGBStrokeColor(context, 0.482, 0.62, 0.871, 1.0)
21 CGContextStrokeRectWithWidth(context, ourRect, 3.0)
23 def doStrokedAndFilledRect(context):
29 CGContextSetRGBFillColor(context, 0.482, 0.62, 0.871, 1.0)
31 CGContextSetRGBStrokeColor(context, 0.404, 0.808, 0.239, 1.0)
33 CGContextFillRect(context, ourRec
[all...]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-Quartz/Examples/Programming with Quartz/BasicDrawing/
H A DShadowsAndTransparencyLayers.py16 def createTrianglePath(context):
17 CGContextBeginPath(context)
18 CGContextMoveToPoint(context, 0, 0)
19 CGContextAddLineToPoint(context, 50, 0)
20 CGContextAddLineToPoint(context, 25, 50)
21 CGContextClosePath(context)
23 def drawSimpleShadow(context):
26 CGContextTranslateCTM(context, 20, 300)
36 # Set the shadow in the context.
37 CGContextSetShadow(context, offse
[all...]
H A DColorAndGState.py8 def doColorSpaceFillAndStroke(context):
14 CGContextSetFillColorSpace(context, theColorSpace)
18 CGContextSetFillColor(context, opaqueRed)
21 CGContextSetStrokeColorSpace(context, theColorSpace)
25 CGContextSetStrokeColor(context, aBlue)
27 CGContextSetLineWidth(context, 8.0)
29 CGContextBeginPath(context)
30 CGContextAddRect(context, CGRectMake(20.0, 20.0, 100.0, 100.0))
31 CGContextDrawPath(context, kCGPathFillStroke)
37 CGContextSetStrokeColor(context, aBlu
[all...]
H A DQuartzTextDrawing.py8 def drawQuartzRomanText(context):
18 CGContextSetFillColorSpace(context,
24 CGContextSetTextMatrix(context, CGAffineTransformIdentity)
28 CGContextSelectFont(context, "Times-Roman", fontSize, kCGEncodingMacRoman)
31 CGContextShowTextAtPoint(context, 70, 400, text, textlen)
34 CGContextSetFillColor(context, opaqueRed)
37 CGContextShowText(context, text, textlen)
41 p = CGContextGetTextPosition(context)
43 CGContextTranslateCTM(context, p.x, p.y)
47 CGContextRotateCTM(context, Utilitie
[all...]
H A DDrawingBasics.py7 def doSimpleRect(context):
9 CGContextSetRGBFillColor(context, 1.0, 0.0, 0.0, 1.0)
13 CGContextFillRect(context, ourRect)
15 def doStrokedRect(context):
17 CGContextSetRGBStrokeColor(context, 0.482, 0.62, 0.871, 1.0)
21 CGContextStrokeRectWithWidth(context, ourRect, 3.0)
23 def doStrokedAndFilledRect(context):
29 CGContextSetRGBFillColor(context, 0.482, 0.62, 0.871, 1.0)
31 CGContextSetRGBStrokeColor(context, 0.404, 0.808, 0.239, 1.0)
33 CGContextFillRect(context, ourRec
[all...]
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-Quartz-2.5.1/Examples/Programming with Quartz/BasicDrawing/
H A DShadowsAndTransparencyLayers.py16 def createTrianglePath(context):
17 CGContextBeginPath(context)
18 CGContextMoveToPoint(context, 0, 0)
19 CGContextAddLineToPoint(context, 50, 0)
20 CGContextAddLineToPoint(context, 25, 50)
21 CGContextClosePath(context)
23 def drawSimpleShadow(context):
26 CGContextTranslateCTM(context, 20, 300)
36 # Set the shadow in the context.
37 CGContextSetShadow(context, offse
[all...]
H A DColorAndGState.py8 def doColorSpaceFillAndStroke(context):
14 CGContextSetFillColorSpace(context, theColorSpace)
18 CGContextSetFillColor(context, opaqueRed)
21 CGContextSetStrokeColorSpace(context, theColorSpace)
25 CGContextSetStrokeColor(context, aBlue)
27 CGContextSetLineWidth(context, 8.0)
29 CGContextBeginPath(context)
30 CGContextAddRect(context, CGRectMake(20.0, 20.0, 100.0, 100.0))
31 CGContextDrawPath(context, kCGPathFillStroke)
37 CGContextSetStrokeColor(context, aBlu
[all...]
H A DQuartzTextDrawing.py8 def drawQuartzRomanText(context):
18 CGContextSetFillColorSpace(context,
24 CGContextSetTextMatrix(context, CGAffineTransformIdentity)
28 CGContextSelectFont(context, "Times-Roman", fontSize, kCGEncodingMacRoman)
31 CGContextShowTextAtPoint(context, 70, 400, text, textlen)
34 CGContextSetFillColor(context, opaqueRed)
37 CGContextShowText(context, text, textlen)
41 p = CGContextGetTextPosition(context)
43 CGContextTranslateCTM(context, p.x, p.y)
47 CGContextRotateCTM(context, Utilitie
[all...]
H A DDrawingBasics.py7 def doSimpleRect(context):
9 CGContextSetRGBFillColor(context, 1.0, 0.0, 0.0, 1.0)
13 CGContextFillRect(context, ourRect)
15 def doStrokedRect(context):
17 CGContextSetRGBStrokeColor(context, 0.482, 0.62, 0.871, 1.0)
21 CGContextStrokeRectWithWidth(context, ourRect, 3.0)
23 def doStrokedAndFilledRect(context):
29 CGContextSetRGBFillColor(context, 0.482, 0.62, 0.871, 1.0)
31 CGContextSetRGBStrokeColor(context, 0.404, 0.808, 0.239, 1.0)
33 CGContextFillRect(context, ourRec
[all...]
/macosx-10.10.1/Heimdal-398.1.2/kcm/
H A Devents.c39 kcm_debug_events(krb5_context context) argument
/macosx-10.10.1/Heimdal-398.1.2/lib/krb5/
H A Dtest_acl.c47 test_match_string(krb5_context context) argument
52 ret = krb5_acl_match_string(context, "foo", "s", "foo");
53 RETVAL(context, ret, 0, "single s");
54 ret = krb5_acl_match_string(context, "foo foo", "s", "foo");
55 RETVAL(context, ret, EACCES, "too many strings");
56 ret = krb5_acl_match_string(context, "foo bar", "ss", "foo", "bar");
57 RETVAL(context, ret, 0, "two strings");
58 ret = krb5_acl_match_string(context, "foo bar", "ss", "foo", "bar");
59 RETVAL(context, ret, 0, "two strings double space");
60 ret = krb5_acl_match_string(context, "fo
104 krb5_context context; local
[all...]
H A Dcrypto-stubs.c39 krb5_init_context(krb5_context *context) argument
43 *context = NULL;
59 *context = p;
64 krb5_free_context(krb5_context context) argument
66 krb5_clear_error_message(context);
68 HEIMDAL_MUTEX_destroy(context->mutex);
69 free(context->mutex);
70 if (context->flags & KRB5_CTX_F_SOCKETS_INITIALIZED) {
74 memset(context, 0, sizeof(*context));
79 krb5_homedir_access(krb5_context context) argument
85 krb5_log(krb5_context context, krb5_log_facility *fac, int level, const char *fmt, ...) argument
98 krb5_config_get_string(krb5_context context, const krb5_config_section *c, ...) argument
[all...]
H A Dtest_time.c38 check_set_time(krb5_context context) argument
49 ret = krb5_set_real_time(context, tv.tv_sec + diff, tv.tv_usec);
51 krb5_err(context, 1, ret, "krb5_us_timeofday");
53 ret = krb5_us_timeofday(context, &sec, &usec);
55 krb5_err(context, 1, ret, "krb5_us_timeofday");
60 krb5_errx(context, 1, "set time error: diff: %d",
69 krb5_context context; local
72 ret = krb5_init_context(&context);
76 check_set_time(context);
77 check_set_time(context);
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A DdecContext.c20 /* context structures. */
25 #include "decContext.h" /* context and base types */
38 /* context is the context structure to be queried */
41 /* returns context */
45 U_CAPI decContext * U_EXPORT2 uprv_decContextClearStatus(decContext *context, uInt mask) { argument
46 context->status&=~mask;
47 return context;
51 /* decContextDefault -- initialize a context structure */
53 /* context i
63 uprv_decContextDefault(decContext *context, Int kind) argument
128 uprv_decContextGetRounding(decContext *context) argument
140 uprv_decContextGetStatus(decContext *context) argument
156 uprv_decContextRestoreStatus(decContext *context, uInt newstatus, uInt mask) argument
173 uprv_decContextSaveStatus(decContext *context, uInt mask) argument
186 uprv_decContextSetRounding(decContext *context, enum rounding newround) argument
202 uprv_decContextSetStatus(decContext *context, uInt status) argument
223 uprv_decContextSetStatusFromString(decContext *context, const char *string) argument
274 uprv_decContextSetStatusFromStringQuiet(decContext *context, const char *string) argument
320 uprv_decContextSetStatusQuiet(decContext *context, uInt status) argument
332 uprv_decContextStatusToString(const decContext *context) argument
414 uprv_decContextTestStatus(decContext *context, uInt mask) argument
426 uprv_decContextZeroStatus(decContext *context) argument
[all...]
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-Quartz/Examples/Programming with Quartz/CocoaDrawingShell/
H A DMyView.py7 def doAlphaRects(context):
15 CGContextTranslateCTM(context, 2*ourRect.size.width,
21 CGContextSetRGBFillColor(context, tint, 0.0, 0.0, tint)
22 CGContextFillRect(context, ourRect)
23 CGContextRotateCTM(context, rotateAngle) # cumulative
29 context = nsctx.graphicsPort()
31 CGContextSetLineWidth(context, 5.0)
33 CGContextBeginPath(context)
35 CGContextMoveToPoint(context, -2000., 0.0)
36 CGContextAddLineToPoint(context, 200
[all...]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-Quartz/Examples/Programming with Quartz/CocoaDrawingShell/
H A DMyView.py7 def doAlphaRects(context):
15 CGContextTranslateCTM(context, 2*ourRect.size.width,
21 CGContextSetRGBFillColor(context, tint, 0.0, 0.0, tint)
22 CGContextFillRect(context, ourRect)
23 CGContextRotateCTM(context, rotateAngle) # cumulative
29 context = nsctx.graphicsPort()
31 CGContextSetLineWidth(context, 5.0)
33 CGContextBeginPath(context)
35 CGContextMoveToPoint(context, -2000., 0.0)
36 CGContextAddLineToPoint(context, 200
[all...]
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-Quartz-2.5.1/Examples/Programming with Quartz/CocoaDrawingShell/
H A DMyView.py7 def doAlphaRects(context):
15 CGContextTranslateCTM(context, 2*ourRect.size.width,
21 CGContextSetRGBFillColor(context, tint, 0.0, 0.0, tint)
22 CGContextFillRect(context, ourRect)
23 CGContextRotateCTM(context, rotateAngle) # cumulative
29 context = nsctx.graphicsPort()
31 CGContextSetLineWidth(context, 5.0)
33 CGContextBeginPath(context)
35 CGContextMoveToPoint(context, -2000., 0.0)
36 CGContextAddLineToPoint(context, 200
[all...]

Completed in 185 milliseconds

1234567891011>>