Searched refs:file (Results 1 - 25 of 5882) sorted by relevance

1234567891011>>

/macosx-10.9.5/postfix-252/postfix/mantools/
H A Dmandouble3 for file
5 echo ==== $file ====
6 deroff $file | double
H A Dmanspell3 for file
5 echo ==== $file ====
6 deroff $file | spell | fgrep -vf proto/stop
/macosx-10.9.5/zsh-60/zsh/Functions/Example/
H A Dcat3 local file
9 for file
11 if [[ "$file" == - ]] then
14 while read -u0ek 4096; do ; done < "$file"
/macosx-10.9.5/man-16/man/src/
H A Ddifferent.h1 int different_cat_file (const char *file);
2 int different_man_file (const char *file);
/macosx-10.9.5/xnu-2422.115.4/libsa/conf/
H A DMakefile.x86_647 $(foreach file,$(OBJS),$(eval $(file)_CFLAGS_ADD += $(CFLAGS_NOLTO_FLAG)))
/macosx-10.9.5/bash-92/bash-3.2/examples/functions/
H A Drecurse36 local file
46 for file in $2; do
47 if [ -f "$file" ] || [ -d "$file" ]; then
51 for file in .* * ; do
52 if [ "$file" = "." ] || [ "$file" = ".." ] ; then
55 if [ -d "$file" ] && [ ! -L "$file" ]; then
56 recurse "$file" "
[all...]
H A Demptydir15 typeset file dir=${1:-.}
20 for file in $dir/.* $dir/*
22 case ${file#$dir/} in
24 \*) [[ -e $file ]];let $?;return;;
H A Dlowercase11 for file; do
12 [ -f "$file" ] || continue
13 filename=${file##*/}
14 case "$file" in
15 */*) dirname=${file%/*} ;;
21 mv "$file" "$newname"
22 echo "lowercase: $file -> $newname"
24 echo "lowercase: $file not changed."
/macosx-10.9.5/zsh-60/zsh/Functions/Misc/
H A Dcheckmail13 local file message
15 for file in "${@:-${mailpath[@]:-${MAIL:-/var/spool/mail/$LOGNAME}}}"
17 message="${${(M)file%%\?*}#\?}"
18 file="${file%%\?*}"
19 if [[ -d "$file" ]] then
20 file=( "$file"/**/*(.ND) )
21 if (($#file)) then
22 checkmail ${^file}\
[all...]
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/file_io/os2/
H A Dbuffer.c2 * contributor license agreements. See the NOTICE file distributed with
4 * The ASF licenses this file to You under the Apache License, Version 2.0
5 * (the "License"); you may not use this file except in compliance with
20 APR_DECLARE(apr_status_t) apr_file_buffer_set(apr_file_t *file,
26 apr_thread_mutex_lock(file->mutex);
28 if(file->buffered) {
30 rv = apr_file_flush(file);
32 apr_thread_mutex_unlock(file->mutex);
37 file->buffer = buffer;
38 file
[all...]
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/file_io/unix/
H A Dbuffer.c2 * contributor license agreements. See the NOTICE file distributed with
4 * The ASF licenses this file to You under the Apache License, Version 2.0
5 * (the "License"); you may not use this file except in compliance with
21 APR_DECLARE(apr_status_t) apr_file_buffer_set(apr_file_t *file,
27 file_lock(file);
29 if(file->buffered) {
31 rv = apr_file_flush_locked(file);
33 file_unlock(file);
38 file->buffer = buffer;
39 file
[all...]
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/file_io/win32/
H A Dbuffer.c2 * contributor license agreements. See the NOTICE file distributed with
4 * The ASF licenses this file to You under the Apache License, Version 2.0
5 * (the "License"); you may not use this file except in compliance with
20 APR_DECLARE(apr_status_t) apr_file_buffer_set(apr_file_t *file,
26 apr_thread_mutex_lock(file->mutex);
28 if(file->buffered) {
30 rv = apr_file_flush(file);
32 apr_thread_mutex_unlock(file->mutex);
37 file->buffer = buffer;
38 file
[all...]
/macosx-10.9.5/apr-30/apr/apr/file_io/os2/
H A Dbuffer.c2 * contributor license agreements. See the NOTICE file distributed with
4 * The ASF licenses this file to You under the Apache License, Version 2.0
5 * (the "License"); you may not use this file except in compliance with
20 APR_DECLARE(apr_status_t) apr_file_buffer_set(apr_file_t *file,
26 apr_thread_mutex_lock(file->mutex);
28 if(file->buffered) {
30 rv = apr_file_flush(file);
32 apr_thread_mutex_unlock(file->mutex);
37 file->buffer = buffer;
38 file
[all...]
/macosx-10.9.5/apr-30/apr/apr/file_io/unix/
H A Dbuffer.c2 * contributor license agreements. See the NOTICE file distributed with
4 * The ASF licenses this file to You under the Apache License, Version 2.0
5 * (the "License"); you may not use this file except in compliance with
21 APR_DECLARE(apr_status_t) apr_file_buffer_set(apr_file_t *file,
27 file_lock(file);
29 if(file->buffered) {
31 rv = apr_file_flush_locked(file);
33 file_unlock(file);
38 file->buffer = buffer;
39 file
[all...]
/macosx-10.9.5/apr-30/apr/apr/file_io/win32/
H A Dbuffer.c2 * contributor license agreements. See the NOTICE file distributed with
4 * The ASF licenses this file to You under the Apache License, Version 2.0
5 * (the "License"); you may not use this file except in compliance with
20 APR_DECLARE(apr_status_t) apr_file_buffer_set(apr_file_t *file,
26 apr_thread_mutex_lock(file->mutex);
28 if(file->buffered) {
30 rv = apr_file_flush(file);
32 apr_thread_mutex_unlock(file->mutex);
37 file->buffer = buffer;
38 file
[all...]
/macosx-10.9.5/CPANInternal-140/Test-Simple/t/subtest/
H A Ddo.t3 # Test the idiom of running another test file as a subtest.
10 my $file = "t/subtest/for_do_t.test";
11 ok -e $file, "subtest test file exists";
13 subtest $file => sub { do $file };
/macosx-10.9.5/bash-92/bash-3.2/examples/scripts/
H A Dfixfiles.bash20 # and rename each file to something that is reasonable.
31 # 5. if a file of the new name already exists, then
63 for file in * ; do
65 if [ "$file" != "." ] && [ "$file" != ".." ] ; then
66 if [ -L "$file" ] ; then
67 echo "skipping symlink" $file in `pwd`
68 elif [ -d "$file" ] ; then
69 processdir "$file"
70 elif [ -f "$file" ] ; the
[all...]
H A Dcenter16 for file
21 done < $file
/macosx-10.9.5/sudo-72/src/zlib/
H A Dgzclose.c8 /* gzclose() is in a separate file so that it is linked in only if it is used.
11 int ZEXPORT gzclose(file)
12 gzFile file;
17 if (file == NULL)
19 state = (gz_statep)file;
21 return state->mode == GZ_READ ? gzclose_r(file) : gzclose_w(file);
23 return gzclose_r(file);
/macosx-10.9.5/zlib-53/zlib/
H A Dgzclose.c8 /* gzclose() is in a separate file so that it is linked in only if it is used.
11 int ZEXPORT gzclose(file)
12 gzFile file;
17 if (file == NULL)
19 state = (gz_statep)file;
21 return state->mode == GZ_READ ? gzclose_r(file) : gzclose_w(file);
23 return gzclose_r(file);
/macosx-10.9.5/WebCore-7537.78.1/page/
H A Dmake_settings.pl92 open my $file, ">$outputFile" or die "Failed to open file: $!";
94 print $file $InCompiler->license();
98 print $file "#ifndef SettingsMacros_h\n";
99 print $file "#define SettingsMacros_h\n\n";
101 printConditionalMacros($file, \%settingsByConditional, $parsedItemsRef);
103 printGettersAndSetters($file, \%unconditionalSettings, \%settingsByConditional, $parsedItemsRef);
104 printMemberVariables($file, \%unconditionalSettings, \%settingsByConditional, $parsedItemsRef);
105 printInitializerList($file, \%unconditionalSettings, \%settingsByConditional, $parsedItemsRef);
106 printSetterBodies($file, \
[all...]
/macosx-10.9.5/WebKit-7537.78.2/mac/Misc/
H A DOldWebAssertions.c29 void WebReportAssertionFailure(const char *file, int line, const char *function, const char *assertion);
30 void WebReportError(const char *file, int line, const char *function, const char *format, ...);
32 void WebReportAssertionFailure(const char *file, int line, const char *function, const char *assertion) argument
36 void WebReportError(const char *file, int line, const char *function, const char *format, ...) argument
/macosx-10.9.5/ruby-104/ruby/
H A Ddmydln.c4 dln_load(const char *file) argument
6 rb_loaderror("this executable file can't load extension libraries");
/macosx-10.9.5/emacs-92/emacs/lib-src/
H A Drcs-checkin3 # This script accepts any number of file arguments and checks them into RCS.
8 # This file is part of GNU Emacs.
21 # along with GNU Emacs; see the file COPYING. If not, write to the
27 # For each file foo, the script looks for Emacs version files related to it.
29 # the file itself becomes the latest revision in the master.
31 # The first line of each file is used as its description text. The file itself
35 # If an argument file is already version-controlled under RCS, any version
48 echo "rcs-checkin: usage: rcs-checkin file ..."
49 echo "rcs-checkin: function: checks file
[all...]
/macosx-10.9.5/bind9-45.100/bind9/contrib/zkt/
H A Dzfparse.h3 ** @(#) zfparse.h -- headerfile for a zone file parser
40 extern int parsezonefile (const char *file, long *pminttl, long *pmaxttl, const char *keydbfile);
41 extern int addkeydb (const char *file, const char *keydbfile);

Completed in 150 milliseconds

1234567891011>>