Searched refs:tname (Results 1 - 25 of 102) sorted by relevance

12345

/macosx-10.10/BerkeleyDB-21/db/os_windows/
H A Dos_mkdir.c24 _TCHAR *tname; local
34 TO_TSTRING(env, name, tname, ret);
37 RETRY_CHK(!CreateDirectory(tname, NULL), ret);
38 FREE_STRING(env, tname);
H A Dos_getenv.c29 _TCHAR *tname, tbuf[1024];
49 TO_TSTRING(env, name, tname, ret);
58 ret = GetEnvironmentVariable(tname, tbuf, sizeof(tbuf));
59 FREE_STRING(env, tname);
H A Dos_open.c32 _TCHAR *tname; local
36 tname = NULL;
49 TO_TSTRING(env, name, tname, ret);
152 _sntprintf(dbuf, sizeof(dbuf), _T("%c:\\"), tname[0]);
172 fhp->handle = CreateFileForMapping(tname,
176 fhp->handle = CreateFile(tname,
197 tname, access, share, NULL, OPEN_EXISTING, attr, 0);
222 FREE_STRING(env, tname);
230 err: FREE_STRING(env, tname);
/macosx-10.10/OpenSSH-189/osslshim/ossl-asn1/
H A Dcs-asn1t.h119 #define ASN1_ITEM_TEMPLATE(tname) \
120 static const ASN1_TEMPLATE tname##_item_tt
122 #define ASN1_ITEM_TEMPLATE_END(tname) \
124 ASN1_ITEM_start(tname) \
127 &tname##_item_tt,\
131 #tname \
132 ASN1_ITEM_end(tname)
157 #define ASN1_SEQUENCE(tname) \
158 static const ASN1_TEMPLATE tname##_seq_tt[]
162 #define ASN1_SEQUENCE_END_name(stname, tname) \
[all...]
/macosx-10.10/OpenSSL098-52/src/crypto/asn1/
H A Dasn1t.h114 #define ASN1_ITEM_TEMPLATE(tname) \
115 static const ASN1_TEMPLATE tname##_item_tt
117 #define ASN1_ITEM_TEMPLATE_END(tname) \
119 ASN1_ITEM_start(tname) \
122 &tname##_item_tt,\
126 #tname \
127 ASN1_ITEM_end(tname)
152 #define ASN1_SEQUENCE(tname) \
153 static const ASN1_TEMPLATE tname##_seq_tt[]
157 #define ASN1_SEQUENCE_END_name(stname, tname) \
[all...]
H A Dtasn_prn.c142 char *tname; local
145 if(flags & ASN1_TFLG_SET_OF) tname = "SET";
146 else tname = "SEQUENCE";
148 BIO_printf(out, "%*s%s OF %s {\n", indent, "", tname, tt->field_name);
155 BIO_printf(out, "%*s%s OF %s ABSENT\n", indent, "", tname, tt->field_name);
/macosx-10.10/OpenSSL098-52/src/include/openssl/
H A Dasn1t.h114 #define ASN1_ITEM_TEMPLATE(tname) \
115 static const ASN1_TEMPLATE tname##_item_tt
117 #define ASN1_ITEM_TEMPLATE_END(tname) \
119 ASN1_ITEM_start(tname) \
122 &tname##_item_tt,\
126 #tname \
127 ASN1_ITEM_end(tname)
152 #define ASN1_SEQUENCE(tname) \
153 static const ASN1_TEMPLATE tname##_seq_tt[]
157 #define ASN1_SEQUENCE_END_name(stname, tname) \
[all...]
/macosx-10.10/apr-32/apr/apr/build/
H A Dcvtdsp.pl51 $tname = '.#' . $_;
54 $dstfl = new IO::File $tname, "w" || die;
95 rename $tname, $oname || die;
99 unlink $tname;
107 $tname = '.#' . $_;
110 $dstfl = new IO::File $tname, "w" || die;
140 rename $tname, $oname || die;
144 unlink $tname;
153 $tname = '.#' . $_;
156 $dstfl = new IO::File $tname, "
[all...]
H A Dfixwin32mak.pl54 $tname = '.#' . $_;
58 $dstfl = new IO::File $tname, "w" || die;
104 $srcfl = new IO::File $tname, "r" || die;
116 unlink $tname || die;
121 rename $tname, $oname || die;
126 unlink $tname;
140 $dstfl = new IO::File $tname, "w" || die;
154 rename $tname, $oname || die;
158 unlink $tname || die;
H A Dlineends.pl93 $tname = '.#' . $_;
108 $dstfl = new IO::File $tname, "w" or die;
138 rename $tname, $oname or die;
148 unlink $tname or die;
/macosx-10.10/ncurses-44/ncurses/ncurses/tinfo/
H A Dlib_setup.c494 _nc_setupterm(NCURSES_CONST char *tname, int Filedes, int *errret, bool reuse) argument
500 T((T_CALLED("setupterm(%s,%d,%p)"), _nc_visbuf(tname), Filedes, errret));
502 if (tname == 0) {
503 tname = getenv("TERM");
504 if (tname == 0 || *tname == '\0') {
509 if (strlen(tname) > MAX_NAME_SIZE) {
515 T(("your terminal name is %s", tname));
544 && !strcmp(termp->_termname, tname)
545 && _nc_name_match(termp->type.term_names, tname, "|")) {
628 setupterm(NCURSES_CONST char *tname, int Filedes, int *errret) argument
[all...]
/macosx-10.10/MITKerberosShim-66/test/
H A Dtest_collection.c229 test_evaluate(test_collection_t *tt, const char *tname, int result) argument
235 test_passed(tt, tname);
237 test_failed(tt, tname, "result = \"%d\"", result);
243 vtest_evaluate(test_collection_t *tt, const char *tname, int result, const char *format, ...) argument
249 test_passed(tt, tname);
253 vtest_failed(tt, tname, format, args);
260 test_passed(test_collection_t *tt, const char *tname) argument
265 fprintf(stdout, "%s - %s: passed\n", tt->name, tname);
269 test_failed(test_collection_t *tt, const char *tname, const char *format, ...) argument
275 vtest_failed(tt, tname, forma
280 vtest_failed(test_collection_t *tt, const char *tname, const char *format, va_list args) argument
[all...]
/macosx-10.10/swig-12/Source/CParse/
H A Dtempl.c50 static int cparse_template_expand(Node *n, String *tname, String *rname, String *templateargs, List *patchlist, List *typelist, List *cpatchlist) { argument
65 ret = cparse_template_expand(n, tname, rname, templateargs, patchlist, typelist, cpatchlist);
73 ret = cparse_template_expand(n, tname, rname, templateargs, patchlist, typelist, cpatchlist);
123 cparse_template_expand(cn, tname, rname, templateargs, patchlist, typelist, cpatchlist);
132 if (Strstr(tname, stripped_name)) {
133 Replaceid(name, stripped_name, tname);
139 if (Strstr(tname, stripped_name)) {
140 Replaceid(symname, stripped_name, tname);
156 Replace(tmp, tname, rname, DOH_REPLACE_ANY);
179 String *sn = Copy(tname);
243 String *tname; local
433 String *tname, *rname = 0; local
[all...]
/macosx-10.10/bind9-45.101/bind9/lib/dns/
H A Dcompress.c137 dns_name_t tname, nname; local
151 dns_name_init(&tname, NULL);
155 dns_name_getlabelsequence(name, n, labels - n, &tname);
156 hash = dns_name_hash(&tname, ISC_FALSE) %
162 if (dns_name_caseequal(&nname, &tname))
165 if (dns_name_equal(&nname, &tname))
199 dns_name_t tname; local
212 dns_name_init(&tname, NULL);
223 dns_name_getlabelsequence(name, start, n, &tname);
224 hash = dns_name_hash(&tname, ISC_FALS
[all...]
H A Dncache.c499 dns_name_t tname; local
518 dns_name_init(&tname, NULL);
520 dns_name_fromregion(&tname, &remaining);
521 INSIST(remaining.length >= tname.length);
522 isc_buffer_forward(&source, tname.length);
523 remaining.length -= tname.length;
528 if (ttype == type && dns_name_equal(&tname, name)) {
569 dns_name_t tname; local
594 dns_name_init(&tname, NULL);
596 dns_name_fromregion(&tname,
675 dns_name_t tname; local
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/include/
H A Dldap_rq.h30 char *tname; member in struct:re_s
46 char *tname,
/macosx-10.10/BerkeleyDB-21/db/test/
H A Drecd018.tcl21 set tname recd$tnum.db
42 set testfile $tname.$i
56 set testfile $tname.$i
89 set testfile $tname.$i
100 set testfile $tname.$i
/macosx-10.10/swig-12/Source/Swig/
H A Dnaming.c430 DOH *name_object_get(Hash *namehash, String *tname, SwigType *decl, SwigType *ncdecl) { argument
432 Hash *n = Getattr(namehash, tname);
444 String *tname = NewStringEmpty(); local
465 Printf(tname, "%s::%s", prefix, name);
466 rn = name_object_get(namehash, tname, decl, ncdecl);
470 Clear(tname);
471 Printf(tname, "*::%s::%s", cls, name);
472 rn = name_object_get(namehash, tname, decl, ncdecl);
499 Clear(tname);
500 Printf(tname, "*
603 features_get(Hash *features, const String *tname, SwigType *decl, SwigType *ncdecl, Node *node) argument
664 String *tname = NewStringEmpty(); local
1246 String *tname = Getattr(rn, "targetname"); local
[all...]
/macosx-10.10/dtrace-147/DTTk/Bin/
H A Dtcpsnoop.d97 tname[(int)self->connp] = execname;
115 tname[(int)self->connp] = execname;
194 tname[(int)this->connp] = 0;
290 self->name = pid && (tname[(int)self->conn_p] == "inetd") ?
291 execname : tname[(int)self->conn_p];
292 self->pid = pid && (tname[(int)self->conn_p] == "inetd") ?
294 tname[(int)self->conn_p] = self->name;
319 self->name = pid && (tname[(int)self->conn_p] == "inetd") ?
320 execname : tname[(int)self->conn_p];
321 self->pid = pid && (tname[(in
[all...]
/macosx-10.10/dtrace-147/DTTk/Net/
H A Dtcpsnoop.d97 tname[(int)self->connp] = execname;
115 tname[(int)self->connp] = execname;
194 tname[(int)this->connp] = 0;
290 self->name = pid && (tname[(int)self->conn_p] == "inetd") ?
291 execname : tname[(int)self->conn_p];
292 self->pid = pid && (tname[(int)self->conn_p] == "inetd") ?
294 tname[(int)self->conn_p] = self->name;
319 self->name = pid && (tname[(int)self->conn_p] == "inetd") ?
320 execname : tname[(int)self->conn_p];
321 self->pid = pid && (tname[(in
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/asn1/
H A Dgen_length.c252 char *tname = NULL; local
253 if (asprintf(&tname, "%s_tag", tmpstr) < 0 || tname == NULL)
255 length_type (name, t->subtype, variable, tname);
258 free(tname);
H A Dgen_template.c338 tlist_cmp_name(const char *tname, const char *qname) argument
340 struct tlist *tl = tlist_find_by_name(tname);
633 char *tname = NULL, *elname = NULL; local
676 if (asprintf(&tname, "tag_%s_%lu", name ? name : "", tag_counter++) < 0 || tname == NULL)
678 output_name(tname);
680 if (asprintf(&elname, "%s_%s", basetype, tname) < 0 || elname == NULL)
694 free(tname);
701 const char *type = NULL, *tname, *dupname; local
707 tname
742 char *tname = NULL; local
[all...]
/macosx-10.10/bind9-45.101/bind9/bin/named/
H A Dlwsearch.c187 dns_name_t *tname; local
199 tname = NULL;
201 tname = dns_rootname;
203 tname = sctx->searchname;
205 return (dns_name_concatenate(sctx->relname, tname, absname, NULL));
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/libraries/libldap_r/
H A Drq.c42 char *tname,
56 entry->tname = tname;
37 ldap_pvt_runqueue_insert( struct runqueue_s* rq, time_t interval, ldap_pvt_thread_start_t *routine, void *arg, char *tname, char *tspec ) argument
/macosx-10.10/OpenSSL098-52/src/fips/
H A Dfipsalgtest.pl720 my ( $tname, $tref );
727 my ( $tname, $tcmd, $req, $rsp ) = @$_;
734 "WARNING: Request file for $tname missing: test skipped\n";
740 "WARNING: Response file for $tname missing: test skipped\n";
746 print STDERR "WARNING: Response file for $tname deleted\n";
765 print STDERR "DEBUG: running test $tname\n" if ( $debug && !$verify );
769 "WARNING: error executing test $tname for command: $cmd\n";
774 if ( exists $verify_special{$tname} ) {
777 $tcmd = $verify_special{$tname};
783 "WARNING: error executing verify test $tname
[all...]

Completed in 165 milliseconds

12345