Searched refs:ct (Results 1 - 25 of 206) sorted by relevance

123456789

/macosx-10.9.5/curl-78.94.1/curl/docs/examples/
H A Dgetinfo.c39 char *ct; local
42 res = curl_easy_getinfo(curl, CURLINFO_CONTENT_TYPE, &ct);
44 if((CURLE_OK == res) && ct)
45 printf("We received Content-Type: %s\n", ct);
/macosx-10.9.5/Libinfo-449.1.3/rpc.subproj/
H A Dclnt_tcp.c147 register struct ct_data *ct = NULL; local
161 ct = (struct ct_data *)mem_alloc(sizeof(*ct));
162 if (ct == NULL)
177 mem_free((caddr_t)ct, sizeof(struct ct_data));
200 ct->ct_closeit = TRUE;
204 ct->ct_closeit = FALSE;
210 ct->ct_sock = *sockp;
211 ct->ct_timeout.tv_sec = 60;
212 ct
302 register struct ct_data *ct = (struct ct_data *) h->cl_private; local
407 register struct ct_data *ct = local
419 register struct ct_data *ct = (struct ct_data *)cl->cl_private; local
437 register struct ct_data *ct = (struct ct_data *)cl->cl_private; local
461 register struct ct_data *ct = local
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/gssapi/mech/
H A Dgss_decapsulate_token.c41 GSSAPIContextToken ct; local
54 &ct, NULL);
60 if (der_heim_oid_cmp(&ct.thisMech, &o) == 0) {
62 output_token->value = ct.innerContextToken.data;
63 output_token->length = ct.innerContextToken.length;
64 der_free_oid(&ct.thisMech);
66 free_GSSAPIContextToken(&ct);
H A Dgss_encapsulate_token.c41 GSSAPIContextToken ct; local
45 ret = der_get_oid (oid->elements, oid->length, &ct.thisMech, &size);
51 ct.innerContextToken.data = input_token->value;
52 ct.innerContextToken.length = input_token->length;
56 &ct, &size, ret);
57 der_free_oid(&ct.thisMech);
/macosx-10.9.5/Heimdal-323.92.1/lib/hcrypto/
H A Drijndael-alg-fst.h43 void rijndaelEncrypt(const uint32_t rk[/*4*(Nr + 1)*/], int Nr, const uint8_t pt[16], uint8_t ct[16]);
44 void rijndaelDecrypt(const uint32_t rk[/*4*(Nr + 1)*/], int Nr, const uint8_t ct[16], uint8_t pt[16]);
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/contrib/slapd-modules/passwd/sha2/
H A Dslapd-sha2.c37 SHA256_CTX ct; local
41 SHA256_Init(&ct);
42 SHA256_Update(&ct, (const uint8_t*)passwd, strlen(passwd));
43 SHA256_Final(hash, &ct);
59 SHA384_CTX ct; local
63 SHA384_Init(&ct);
64 SHA384_Update(&ct, (const uint8_t*)passwd, strlen(passwd));
65 SHA384_Final(hash, &ct);
80 SHA512_CTX ct; local
84 SHA512_Init(&ct);
105 SHA256_CTX ct; local
125 SHA384_CTX ct; local
148 SHA512_CTX ct; local
[all...]
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/tm/
H A Dtmxtouch.c41 tmxtouch(const char* path, Time_t at, Time_t mt, Time_t ct, int flags) argument
70 if (ct == TMX_NOTIME && !(flags & PATH_TOUCH_VERBATIM))
72 else if (!ct && !(flags & PATH_TOUCH_VERBATIM))
76 cv.tv_sec = tmxsec(ct);
77 cv.tv_nsec = tmxnsec(ct);
/macosx-10.9.5/Heimdal-323.92.1/kuser/
H A Dkswitch.c79 rtbl_t ct; local
81 ct = rtbl_create();
83 rtbl_add_column_by_id(ct, 0, "#", 0);
84 rtbl_add_column_by_id(ct, 1, "Principal", 0);
85 rtbl_set_column_affix_by_id(ct, 1, " ", "");
86 rtbl_add_column_by_id(ct, 2, "Type", 0);
87 rtbl_set_column_affix_by_id(ct, 2, " ", "");
105 rtbl_add_column_entry_by_id(ct, 0, num);
106 rtbl_add_column_entry_by_id(ct, 1, name);
107 rtbl_add_column_entry_by_id(ct,
[all...]
H A Dklist.c76 print_cred(krb5_context context, krb5_creds *cred, rtbl_t ct, int do_flags) argument
86 rtbl_add_column_entry(ct, COL_ISSUED,
89 rtbl_add_column_entry(ct, COL_ISSUED,
93 rtbl_add_column_entry(ct, COL_EXPIRES,
96 rtbl_add_column_entry(ct, COL_EXPIRES, N_(">>>Expired<<<", ""));
100 rtbl_add_column_entry(ct, COL_PRINCIPAL, str);
126 rtbl_add_column_entry(ct, COL_FLAGS, s);
245 rtbl_t ct = NULL; local
303 ct = rtbl_create();
304 rtbl_add_column(ct, COL_ISSUE
412 struct ClearToken ct; local
520 rtbl_t ct; local
[all...]
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/strings/
H A Dapr_cpystrn.c90 const char *ct; local
149 ct = cp;
158 while (*ct != '\0') {
159 CHECK_QUOTATION(ct, isquoted);
160 DETERMINE_NEXTSTRING(ct, isquoted);
161 if (*ct != '\0') {
162 ct++;
165 SKIP_WHITESPACE(ct);
173 ct = cp;
176 (*argv_out)[argnum] = apr_palloc(token_context, cp - ct);
[all...]
/macosx-10.9.5/apr-30/apr/apr/strings/
H A Dapr_cpystrn.c90 const char *ct; local
149 ct = cp;
158 while (*ct != '\0') {
159 CHECK_QUOTATION(ct, isquoted);
160 DETERMINE_NEXTSTRING(ct, isquoted);
161 if (*ct != '\0') {
162 ct++;
165 SKIP_WHITESPACE(ct);
173 ct = cp;
176 (*argv_out)[argnum] = apr_palloc(token_context, cp - ct);
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_apple_csp/lib/
H A Drc2Context.cpp97 unsigned char *ct = (unsigned char *)cipherText; local
98 l=d[0]; l2c(l, ct);
99 l=d[1]; l2c(l, ct);
118 const unsigned char *ct = (const unsigned char *)cipherText; local
119 c2l(ct, l); d[0]=l;
120 c2l(ct, l); d[1]=l;
H A Drc5Context.cpp95 unsigned char *ct = (unsigned char *)cipherText; local
96 l=d[0]; l2c(l, ct);
97 l=d[1]; l2c(l, ct);
116 const unsigned char *ct = (const unsigned char *)cipherText; local
117 c2l(ct, l); d[0]=l;
118 c2l(ct, l); d[1]=l;
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/grammar_me/
H A Dme_tcl.tcl73 variable ct {}
125 variable ct
126 return $ct
155 variable ct
163 set ct [lindex $tc $loc 0]
186 set ct [lindex $tokdata 0]
193 variable ct
196 set ok [expr {$tok eq $ct}]
203 variable ct
209 set ord $tokOrd($ct)
[all...]
/macosx-10.9.5/CommonCrypto-60049/test/CommonCrypto/
H A DCCCryptorTestFuncs.c209 byteBuffer pt, ct; local
220 ct = ccConditionalTextBuffer(cipherText);
231 // If ct isn't defined we're gathering data - print the ciphertext result
232 if(!ct->bytes) {
235 if (!bytesAreEqual(ct, bb)) {
236 diag("FAIL Encrypt Output %s\nEncrypt Expect %s\n", bytesToHexString(bb), bytesToHexString(ct));
255 // if(ct->bytes && iv->bytes) diag("PASS Test for length %d\n", (int) pt->len);
256 // if(ct && (iv->bytes == NULL)) diag("PASS NULL IV Test for length %d\n", (int) pt->len);
259 free(ct);
272 byteBuffer pt, ct; local
336 byteBuffer pt, ct; local
405 byteBuffer pt, ct; local
539 byteBuffer pt, ct; local
624 byteBuffer pt, ct; local
[all...]
/macosx-10.9.5/ntp-88/ntpd/
H A Dcmd_args.c104 int ct = STACKCT_OPT( TRUSTEDKEY ); local
119 } while (--ct > 0);
133 int ct = STACKCT_OPT( VAR ); local
141 } while (--ct > 0);
145 int ct = STACKCT_OPT( DVAR ); local
153 } while (--ct > 0);
H A Dcheck_y2k.c407 clocktime_t ct; local
413 ct.day = 1;
414 ct.month = 1;
415 ct.year = year;
416 ct.hour = ct.minute = ct.second = ct.usecond = 0;
417 ct.utcoffset = 0;
418 ct
[all...]
/macosx-10.9.5/adv_cmds-153/last/
H A Dlast.c153 char *ct; local
171 ct = ctime(&bp->ut_tv.tv_sec);
176 bp->ut_host, ct, ct + 11);
184 ct = ctime(&bp->ut_tv.tv_sec);
189 ct, ct + 11);
207 ct = ctime(&bp->ut_tv.tv_sec);
212 ct, ct
412 char *ct; local
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/gssapi/
H A Dgsstool.c88 rtbl_t ct; local
97 ct = rtbl_create();
98 if (ct == NULL)
101 rtbl_set_separator(ct, " ");
102 rtbl_add_column(ct, COL_OID, 0);
103 rtbl_add_column(ct, COL_NAME, 0);
105 rtbl_add_column(ct, COL_OPTION, 0);
106 rtbl_add_column(ct, COL_ENABLED, 0);
117 rtbl_add_column_entryv(ct, COL_OID, "%.*s",
123 rtbl_add_column_entry(ct, COL_NAM
603 rtbl_t ct; local
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Dregextxt.cpp18 uregex_utext_unescape_charAt(int32_t offset, void *ct) { argument
19 struct URegexUTextUnescapeCharContext *context = (struct URegexUTextUnescapeCharContext *)ct;
/macosx-10.9.5/dtrace-118.1/libdwarf/
H A Dpro_reloc_symbolic.c138 unsigned long ct)
148 pblk->pr_slots_per_block_to_alloc = ct;
187 unsigned long ct = p_reloc->pr_reloc_total_count; local
195 if (ct == 0) {
202 /* total_size = ct *len; */
259 _dwarf_reset_reloc_sect_info(p_reloc, ct);
261 /* Creating new single block for all 'ct' entries */
262 res = _dwarf_pro_pre_alloc_n_reloc_slots(dbg, (int) i, ct);
288 new_blk->rb_next_slot_to_use = ct;
290 p_reloc->pr_reloc_total_count = ct;
137 _dwarf_reset_reloc_sect_info(struct Dwarf_P_Per_Reloc_Sect_s *pblk, unsigned long ct) argument
[all...]
/macosx-10.9.5/xnu-2422.115.4/libkern/libkern/crypto/
H A Daesxts.h65 uint8_t *ct,
69 int xts_decrypt(const uint8_t *ct, unsigned long ptlen,
/macosx-10.9.5/xnu-2422.115.4/libkern/crypto/
H A Dcorecrypto_aesxts.c71 uint8_t *ct,
81 xtsenc->xts(xts->enc, tweak, ptlen/16, pt, ct);
86 int xts_decrypt(const uint8_t *ct, unsigned long ptlen, argument
97 xtsdec->xts(xts->dec, tweak, ptlen/16, ct, pt);
70 xts_encrypt(const uint8_t *pt, unsigned long ptlen, uint8_t *ct, const uint8_t *iv, symmetric_xts *xts) argument
/macosx-10.9.5/man-16/man/src/
H A Dgripes.c75 int ct = 0; local
79 ct++;
84 return (ct > 2);
/macosx-10.9.5/rsync-42/rsync/support/
H A Drrsync143 my $ct = $long_opt{$opt};
144 last unless defined $ct;
145 next if $ct == 0;
146 if ($ct > 0) {
148 $check_type = $ct;
152 $arg = check_arg($opt, $arg, $ct);

Completed in 461 milliseconds

123456789