Searched refs:full (Results 1 - 25 of 370) sorted by relevance

1234567891011>>

/macosx-10.10/dyld-353.2.1/unit-tests/test-cases/lazy-dylib-missing-dylib/
H A DMakefile37 ${CC} ${CCFLAGS} foo.c -DBAR=1 -dynamiclib -o libfoo.dylib.full -install_name libfoo.dylib
38 ${CC} ${CCFLAGS} main.c -I${TESTROOT}/include -Wl,-lazy_library,libfoo.dylib.full -o main
39 ${CC} ${CCFLAGS} main.c -I${TESTROOT}/include -DLAZY_HANDLER=1 -Wl,-lazy_library,libfoo.dylib.full -o main2
43 rm -f libfoo.dylib.full main main2
/macosx-10.10/dyld-353.2.1/unit-tests/test-cases/lazy-dylib-missing-symbol/
H A DMakefile38 ${CC} ${CCFLAGS} foo.c -DBAR=1 -dynamiclib -o libfoo.dylib.full -install_name libfoo.dylib
39 ${CC} ${CCFLAGS} main.c -I${TESTROOT}/include -Wl,-lazy_library,libfoo.dylib.full -o main
40 ${CC} ${CCFLAGS} main.c -I${TESTROOT}/include -DLAZY_HANDLER=1 -Wl,-lazy_library,libfoo.dylib.full -o main2
44 rm -f libfoo.dylib libfoo.dylib.full main main2
/macosx-10.10/tcsh-65/tcsh/
H A Dtw.help.c92 struct Strbuf full = Strbuf_INIT; local
103 cleanup_push(&full, Strbuf_cleanup);
117 * now make the full path name - try first /bar/foo.help, then
121 full.len = 0;
122 Strbuf_append(&full, curdir);
123 Strbuf_append(&full, STRslash);
124 Strbuf_append(&full, name);
125 ep = full.len;
127 full.len = ep;
128 Strbuf_append(&full, str2shor
[all...]
/macosx-10.10/ruby-106/ruby/test/mkmf/
H A Dtest_find_executable.rb22 full = name+ext
24 open(full, "w") {|ff| ff.chmod(0755)}
27 File.unlink(full)
39 full = name+ext
41 Dir.mkdir(full)
44 Dir.rmdir(full)
/macosx-10.10/cxxfilt-11/cxxfilt/cpu/
H A Dsimplify.inc27 ; This is currently the same as define-full-enum but it needn't remain
28 ; that way (it's define-full-enum that would change).
34 (define-full-enum name comment attrs prefix vals)
43 (define-full-insn-enum name comment attrs prefix fld vals)
53 (define-full-ifield name comment attrs start length UINT #f #f)
59 "Shorthand form of define-full-ifield.\n"
60 define-full-ifield
73 (define-full-multi-ifield name comment attrs mode subflds insert extract)
87 (define-full-multi-ifield name comment attrs UINT subflds #f #f)
102 (define-full
[all...]
/macosx-10.10/libxslt-13/libxslt/tests/
H A DMakefile.am22 full: tests docbook_tests
25 @(cd docbook ; $(MAKE) full)
/macosx-10.10/procmail-14/procmail/src/
H A Dexopen.h4 unique Q((const char*const full,char*p,const size_t len,const mode_t mode,
H A Dexopen.c54 int unique(full,p,len,mode,verbos,flags)char*const full;char*p;
63 end=full+len;
93 i=lstat(full,&filebuf);
97 op=lastdirsep(full);
105 while((i=lstat(full,&filebuf))&&errno==ENAMETOOLONG&&op>ldp);
113 (0>(i=ropen(full,O_WRONLY|O_CREAT|O_EXCL,mode))&&errno==EEXIST))&&
119 writeerr(full); /* for casual users */
130 if(lstat(full,&filebuf)||filebuf.st_nlink!=1||filebuf.st_size||
134 chown(full,ui
[all...]
/macosx-10.10/dtrace-147/DTTk/Bin/
H A Dpathopens.d3 * pathopens.d - full pathnames opened successfully count.
7 * successfully opened. This is somewhat special in that the full pathname
15 * PATHNAME full pathname
63 * Make the full pathname
66 * full pathname. Sometimes the filename is absolute, so we must
74 self->full = strjoin(self->dir, self->file);
77 @num[self->full] = count();
81 self->full = 0;
/macosx-10.10/dtrace-147/DTTk/Proc/
H A Dpathopens.d3 * pathopens.d - full pathnames opened successfully count.
7 * successfully opened. This is somewhat special in that the full pathname
15 * PATHNAME full pathname
63 * Make the full pathname
66 * full pathname. Sometimes the filename is absolute, so we must
74 self->full = strjoin(self->dir, self->file);
77 @num[self->full] = count();
81 self->full = 0;
/macosx-10.10/OpenSSH-189/openssh/
H A Dlogintest.c225 char full[17], strip[9], abbrev[5]; local
227 memset(full, '\0', sizeof(full));
231 line_fullname(full, line, sizeof(full)-1);
232 line_stripname(strip, full, sizeof(strip)-1);
233 line_abbrevname(abbrev, full, sizeof(abbrev)-1);
234 printf("%s: %s, %s, %s\n", line, full, strip, abbrev);
/macosx-10.10/postfix-255/postfix/src/global/
H A Dstrip_addr.c5 /* strip extension from full or localpart-only address
59 char *strip_addr(const char *full, char **extension, const char *delimiter_set) argument
69 if (*delimiter_set == 0 || full[strcspn(full, delimiter_set)] == 0) {
72 stripped = mystrdup(full);
78 *extent = full[strlen(stripped)];
/macosx-10.10/ICU-531.30/icuSources/common/
H A Duniset_closure.cpp162 // add the result of a full case mapping to the set
165 addCaseMapping(UnicodeSet &set, int32_t result, const UChar *full, UnicodeString &str) { argument
171 // add a string case mapping from full with length result
172 str.setTo((UBool)FALSE, full, result);
207 const UChar *full; local
215 // full case closure
223 result = ucase_toFullLower(csp, cp, NULL, NULL, &full, "", &locCache);
224 addCaseMapping(foldSet, result, full, str);
226 result = ucase_toFullTitle(csp, cp, NULL, NULL, &full, "", &locCache);
227 addCaseMapping(foldSet, result, full, st
[all...]
H A Ducase.cpp243 * full case mappings. Add them all.
266 closure=(const UChar *)pe+1; /* behind this slot, unless there are full case mappings */
272 /* add the full case folding */
277 /* start of full case mapping strings */
286 /* add the full case folding string */
299 closure=(const UChar *)pe; /* behind full case mappings */
409 FullCaseFoldingIterator::next(UnicodeString &full) { argument
418 // Set "full" to the NUL-terminated string in the first unfold column.
421 full.setTo(FALSE, p, length);
816 int32_t full; local
960 int32_t full, idx; local
1170 int32_t full, idx; local
[all...]
/macosx-10.10/Security-57031.1.35/Security/sec/SOSCircle/SecureObjectSync/
H A DSOSInternal.h89 OSStatus GenerateECPair(int keySize, SecKeyRef* public, SecKeyRef *full);
90 OSStatus GeneratePermanentECPair(int keySize, SecKeyRef* public, SecKeyRef *full);
H A DSOSInternal.c84 static OSStatus GenerateECPairImp(int keySize, CFBooleanRef permanent, SecKeyRef* public, SecKeyRef *full) argument
97 OSStatus result = SecKeyGeneratePair(keygen_parameters, public, full);
103 OSStatus GenerateECPair(int keySize, SecKeyRef* public, SecKeyRef *full) argument
105 return GenerateECPairImp(keySize, kCFBooleanFalse, public, full);
108 OSStatus GeneratePermanentECPair(int keySize, SecKeyRef* public, SecKeyRef *full) argument
110 return GenerateECPairImp(keySize, kCFBooleanTrue, public, full);
/macosx-10.10/ncurses-44/ncurses/ncurses/tinfo/
H A Dtrim_sgr0.c170 * Returns the number of chars from 'full' that we matched. If any mismatch
174 compare_part(const char *part, const char *full) argument
182 if (*part != *full) {
198 if (*part == '$' && *full == '$') {
200 next_full = skip_delay(full);
201 if (next_part != part && next_full != full) {
202 used_delay += (next_full - full);
203 full = next_full;
210 ++full;
/macosx-10.10/tcl-105/tcl_ext/mk4tcl/metakit/tcl/tequila/
H A Dtequical.tcl88 if {$new == $detail(full)} return
90 catch {unset calendar($detail(full))}
94 set detail(full) $new
101 set detail(full) [.f1.lb get $n]
102 if {![regexp {^(..)/(..) (.*)} $detail(full) x \
/macosx-10.10/libgcc-14/
H A DMakefile39 -nostdlib -o $(OBJROOT)/libgcc_s.dylib.full
40 $(STRIP) -c -x $(OBJROOT)/libgcc_s.dylib.full -o $@
44 rm -f $(OBJROOT)/libgcc_s.dylib.full $(OBJROOT)/libgcc_s.dylib
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/cache/
H A Dasync.tcl35 option -full-async-results -default 1 -type snit::boolean
137 if {$found && !$options(-full-async-results)} {
155 if {$found && !$options(-full-async-results)} {
/macosx-10.10/ruby-106/ruby/lib/rubygems/commands/
H A Dcleanup_command.rb18 @full = nil
81 @full = Gem::DependencyList.from_specs
134 return unless @full.ok_to_remove?(spec.full_name)
/macosx-10.10/tcl-105/tcl_ext/tls/tls/tests/oldTests/
H A DtlsUpload.tcl51 fconfigure $chan -buffering full
/macosx-10.10/tcl-105/tcl_ext/memchan/memchan/tools/
H A Dhtdocs_get_sf_stats9 set mode full
/macosx-10.10/tcl-105/tcl_ext/trf/trf/tools/
H A Dhtdocs_get_sf_stats9 set mode full
/macosx-10.10/WebKit-7600.1.25/win/
H A DDefaultDownloadDelegate.cpp121 BSTR full = SysAllocStringLen(0, (UINT)fullLength); local
122 if (!full)
125 wcscpy_s(full, fullLength, pathChars);
126 wcscat_s(full, fullLength, L"\\");
127 wcscat_s(full, fullLength, filename);
129 fullPath.adoptBSTR(full);

Completed in 198 milliseconds

1234567891011>>