Searched refs:dup (Results 1 - 25 of 628) sorted by relevance

1234567891011>>

/macosx-10.10/gnutar-453/gnutar/lib/
H A Dunistd--.h24 #undef dup macro
25 #define dup dup_safer macro
H A Ddup-safer.c1 /* Invoke dup, but avoid some glitches.
32 /* Like dup, but do not return STDIN_FILENO, STDOUT_FILENO, or
43 return fd_safer (dup (fd));
H A Ddup2.c33 int duplicated_fd = dup (fd);
/macosx-10.10/tcl-105/tcl_ext/tclx/tclx/tests/
H A Ddup.test2 # dup.test
4 # Tests for the dup command.
15 # $Id: dup.test,v 1.3 2002/04/03 02:44:21 hobbs Exp $
35 test dup-1.1 {dup argument checking} {
36 list [catch {dup} msg] $msg
37 } {1 {wrong # args: dup channelId ?targetChannelId?}}
39 test dup-1.2 {dup argument checking} {
40 list [catch {dup
[all...]
/macosx-10.10/iodbc-42.5/iodbc/iodbc/trace/
H A DDriverConnect.c150 SQLCHAR *dup; local
179 if ((dup = (SQLCHAR *) malloc (length + 1)) == NULL)
181 memcpy (dup, str, length);
182 dup[length] = '\0';
187 _trace_connstr_hidepwd (dup);
188 trace_emit_string (dup, length, 0);
189 free (dup);
200 SQLCHAR *dup; local
225 dup = dm_SQL_W2A (str, length);
226 _trace_connstr_hidepwd (dup);
[all...]
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/collections/
H A DBaseIterator.java21 ListIterator dup(); method in interface:BaseIterator
/macosx-10.10/text_cmds-88/sort/
H A Ddup-safer.c1 /* Invoke dup, but avoid some glitches.
33 /* Like dup, but do not return STDIN_FILENO, STDOUT_FILENO, or
44 return fd_safer (dup (fd));
/macosx-10.10/mDNSResponder-561.1.1/mDNSShared/
H A Ddnsextd_lexer.l40 char * dup;
42 dup = strdup( string + 1);
44 dup[ strlen( dup ) - 1 ] = '\0';
46 return dup;
/macosx-10.10/ruby-106/ruby/test/json/
H A Dtest_json_encoding.rb16 @utf_8_ascii_8bit = @utf_8.dup.force_encoding(Encoding::ASCII_8BIT)
18 @utf_16be_ascii_8bit = @utf_16be.dup.force_encoding(Encoding::ASCII_8BIT)
20 @utf_16le_ascii_8bit = @utf_16le.dup.force_encoding(Encoding::ASCII_8BIT)
22 @utf_32be_ascii_8bit = @utf_32be.dup.force_encoding(Encoding::ASCII_8BIT)
24 @utf_32le_ascii_8bit = @utf_32le.dup.force_encoding(Encoding::ASCII_8BIT)
28 @utf_8_ascii_8bit = @utf_8.dup
30 @utf_16be_ascii_8bit = @utf_16be.dup
32 @utf_16le_ascii_8bit = @utf_16le.dup
34 @utf_32be_ascii_8bit = @utf_32be.dup
36 @utf_32le_ascii_8bit = @utf_32le.dup
[all...]
/macosx-10.10/ruby-106/ruby/defs/
H A Dopt_insn_unif.def20 dup setlocal
/macosx-10.10/ruby-106/ruby/lib/rake/
H A Dname_space.rb12 @scope = scope_list.dup
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/persist/
H A DSubIndexCursor.java29 public EntityCursor<V> dup() method in class:SubIndexCursor
32 return new SubIndexCursor<V>(cursor.dup(true), adapter);
/macosx-10.10/ruby-106/ruby/benchmark/
H A Dbm_so_sieve.rb9 flags = flags0.dup
/macosx-10.10/BerkeleyDB-21/db/docs_src/ref/am_conf/
H A DMakefile4 byteorder.html cachesize.html dup.html extentsize.html \
/macosx-10.10/BerkeleyDB-21/db/docs_src/ref/upgrade.3.1/
H A DMakefile3 BUILD= btstat.html config.html disk.html dup.html env.html intro.html \
/macosx-10.10/ruby-106/ruby/test/rake/
H A Dtest_rake_rake_test_loader.rb6 orig_LOADED_FEATURES = $:.dup
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/struct/graph/
H A Darcshimmer.c12 static void dup_rep (Tcl_Obj* obj, Tcl_Obj* dup);
34 dup_rep (Tcl_Obj* obj, Tcl_Obj* dup) argument
38 dup->internalRep.otherValuePtr = a;
39 dup->typePtr = &ga_type;
H A Dnodeshimmer.c12 static void dup_rep (Tcl_Obj* obj, Tcl_Obj* dup);
34 dup_rep (Tcl_Obj* obj, Tcl_Obj* dup) argument
38 dup->internalRep.otherValuePtr = n;
39 dup->typePtr = &gn_type;
/macosx-10.10/ruby-106/ruby/bootstraptest/
H A Dtest_io.rb52 save = STDIN.dup
68 save = STDIN.dup
78 dup = STDIN.dup
79 dupfd = dup.fileno
80 dupfd == STDIN.dup.fileno ? :ng : :ok
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/md4/
H A Dmd4c.tcl38 static void md4_dup_rep(Tcl_Obj *obj, Tcl_Obj *dup)
41 dup->internalRep.otherValuePtr = (MD4_CTX *)Tcl_Alloc(sizeof(MD4_CTX));
42 memcpy(dup->internalRep.otherValuePtr, ctx, sizeof(MD4_CTX));
43 dup->typePtr = &md4_type;
51 MD4_CTX *dup = (MD4_CTX *)obj->internalRep.otherValuePtr;
53 MD4Final(buf, dup);
/macosx-10.10/ICU-531.30/icuSources/common/
H A Dcstring.c315 char *dup = (char *) uprv_malloc(len); local
317 if (dup) {
318 uprv_memcpy(dup, src, len);
321 return dup;
326 char *dup; local
329 dup = uprv_strdup(src);
331 dup = (char*)uprv_malloc(n+1);
332 if (dup) {
333 uprv_memcpy(dup, src, n);
334 dup[
[all...]
/macosx-10.10/ruby-106/ruby/lib/
H A Dopen3.rb84 opts = cmd.pop.dup
145 opts = cmd.pop.dup
194 opts = cmd.pop.dup
271 opts = cmd.pop.dup
325 opts = cmd.pop.dup
364 opts = cmd.pop.dup
429 opts = cmds.pop.dup
485 opts = cmds.pop.dup
527 opts = cmds.pop.dup
586 opts = cmds.pop.dup
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/md5/
H A Dmd5c.tcl33 md5_dup_rep(Tcl_Obj *obj, Tcl_Obj *dup)
36 dup->internalRep.otherValuePtr = Tcl_Alloc(sizeof *mp);
37 memcpy(dup->internalRep.otherValuePtr, mp, sizeof *mp);
38 dup->typePtr = &md5_type;
47 MD5_CTX dup = *(MD5_CTX *) obj->internalRep.otherValuePtr;
49 MD5Final(buf, &dup);
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/pt/rde_critcl/
H A Dot.c17 static void ot_dup_rep (Tcl_Obj* obj, Tcl_Obj* dup);
140 ot_dup_rep(Tcl_Obj* obj, Tcl_Obj* dup)
148 drs->self = dup;
152 dup->internalRep.twoPtrValue.ptr1 = obj->internalRep.twoPtrValue.ptr1;
153 dup->internalRep.twoPtrValue.ptr2 = drs;
154 dup->typePtr = &ot_type;
139 ot_dup_rep(Tcl_Obj* obj, Tcl_Obj* dup) argument
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/sha1/
H A Dsha1c.tcl39 sha1_dup_rep(Tcl_Obj* obj, Tcl_Obj* dup)
42 dup->internalRep.otherValuePtr = Tcl_Alloc(sizeof *mp);
43 memcpy(dup->internalRep.otherValuePtr, mp, sizeof *mp);
44 dup->typePtr = &sha1_type;
53 SHA1_CTX dup = *(SHA1_CTX*) obj->internalRep.otherValuePtr;
55 SHA1Final(buf, &dup);

Completed in 176 milliseconds

1234567891011>>