Searched refs:overwrite (Results 1 - 25 of 60) sorted by relevance

123

/freebsd-current/contrib/unifdef/tests/
H A Doverdir.sh2 cp if1.c overdir/overwrite.c
3 unifdef -DFOO=1 -DFOOB=42 -UBAR -ooverdir/overwrite.c overdir/overwrite.c
5 cat overdir/overwrite.c
H A Doverlnnum.sh1 cp if1.c overwrite.c
2 unifdef -DFOO=1 -DFOOB=42 -UBAR -n -ooverwrite.c overwrite.c
4 cat overwrite.c
5 rm overwrite.c
H A Doverwrite.sh1 cp if1.c overwrite.c
2 unifdef -DFOO=1 -DFOOB=42 -UBAR -ooverwrite.c overwrite.c
4 cat overwrite.c
5 rm overwrite.c
/freebsd-current/contrib/openpam/lib/libpam/
H A Dpam_setenv.c61 int overwrite)
75 if (!overwrite && openpam_findenv(pamh, name, strlen(name)) >= 0)
58 pam_setenv(pam_handle_t *pamh, const char *name, const char *value, int overwrite) argument
/freebsd-current/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_environment.h30 void __kmp_env_set(char const *name, char const *value, int overwrite);
H A Dkmp_environment.cpp173 void __kmp_env_set(char const *name, char const *value, int overwrite) { argument
176 int rc = setenv(name, value, overwrite);
188 if (!overwrite) {
191 // Variable exists, do not overwrite.
/freebsd-current/contrib/llvm-project/lldb/source/API/
H A DSBEnvironment.cpp75 bool SBEnvironment::Set(const char *name, const char *value, bool overwrite) { argument
76 LLDB_INSTRUMENT_VA(this, name, value, overwrite);
78 if (overwrite) {
/freebsd-current/contrib/llvm-project/lldb/include/lldb/API/
H A DSBEnvironment.h94 /// If the variable exists, its value is updated only if overwrite is true.
102 /// \param [in] overwrite
103 /// Flag that indicates whether to overwrite an existing environment
108 bool Set(const char *name, const char *value, bool overwrite);
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/rsend/
H A Dsend-c_recv_dedup.ksh46 log_must file_write -o overwrite -f $dir/file.$i -d R -b 4096 -c 1000
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/checksum/
H A Dfiletest_001_pos.ksh78 log_must file_write -o overwrite -f $TESTDIR/test_$type \
99 log_must file_write -o overwrite -f $TESTDIR/test_$type \
H A Dfiletest_002_pos.ksh70 log_must file_write -o overwrite -f $TESTDIR/test_$type \
/freebsd-current/crypto/openssh/
H A DMakefile.in428 echo "$(DESTDIR)$(sysconfdir)/ssh_config already exists, install will not overwrite"; \
433 echo "$(DESTDIR)$(sysconfdir)/sshd_config already exists, install will not overwrite"; \
443 echo "$(DESTDIR)$(sysconfdir)/moduli already exists, install will not overwrite"; \
/freebsd-current/contrib/llvm-project/lld/ELF/
H A DSymbols.h260 void overwrite(Symbol &sym, Kind k) const { function in class:lld::elf::Symbol
363 void overwrite(Symbol &sym) const;
401 void overwrite(Symbol &sym) const { function in class:lld::elf::CommonSymbol
402 Symbol::overwrite(sym, CommonKind);
420 void overwrite(Symbol &sym) const { function in class:lld::elf::Undefined
421 Symbol::overwrite(sym, UndefinedKind);
464 void overwrite(Symbol &sym) const { function in class:lld::elf::SharedSymbol
465 Symbol::overwrite(sym, SharedKind);
492 void overwrite(Symbol &sym) const { Symbol::overwrite(sy function in class:lld::elf::LazySymbol
[all...]
H A DSymbols.cpp409 other.overwrite(*this);
607 other.overwrite(*this);
611 other.overwrite(*this);
623 other.overwrite(*this);
628 other.overwrite(*this);
637 other.overwrite(*this);
653 other.overwrite(*this);
668 other.overwrite(*this);
681 other.overwrite(*this);
687 void Defined::overwrite(Symbo function in class:Defined
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/profile/
H A DInstrProfilingUtil.h38 static inline int setenv(const char *name, const char *value, int overwrite) argument
/freebsd-current/tools/boot/smbios/
H A Dmain.c70 my_setenv(const char *name, const char *value, int overwrite __unused)
/freebsd-current/contrib/ncurses/
H A Dmk-1st.awk54 # overwrite ("yes" or "no", flag to add link to libcurses.a
311 printf "# overwrite: %s\n", overwrite
406 if ( overwrite == "yes" && name == "ncurses" )
445 if ( overwrite == "yes" && name == "ncurses" )
508 if ( overwrite == "yes" && lib_name == "libncurses.a" )
531 if ( overwrite == "yes" && lib_name == "libncurses.a" )
/freebsd-current/contrib/netbsd-tests/fs/tmpfs/
H A Dt_sizes.sh110 atf_test_case overwrite
138 atf_add_test_case overwrite
/freebsd-current/contrib/bmake/unit-tests/
H A Dvarname-dollar.mk21 # Now overwrite the '$' variable to see whether '$$' really expands to that
/freebsd-current/stand/libsa/
H A Denvironment.c151 setenv(const char *name, const char *value, int overwrite) argument
154 if (overwrite || (env_getenv(name) == NULL))
/freebsd-current/contrib/wpa/src/utils/
H A Dos_none.c87 int os_setenv(const char *name, const char *value, int overwrite) argument
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/bclone/
H A Dbclone_corner_cases.kshlib148 typeset -r overwrite=$1
150 case "$overwrite" in
175 log_fail "invalid overwrite: $overwrite"
230 # (create) / (cache) / (clone) / (overwrite) / (read) / (clone) / (overwrite) / (read) / read next txg
/freebsd-current/usr.bin/ldd/
H A Dldd.c62 #define LDD_SETENV(name, value, overwrite) do { \
63 setenv("LD_" name, value, overwrite); \
64 setenv("LD_32_" name, value, overwrite); \
/freebsd-current/lib/libc/stdlib/
H A Dgetenv.c468 __setenv(const char *name, size_t nameLen, const char *value, int overwrite) argument
482 /* Deactivate entry if overwrite is allowed. */
484 if (overwrite == 0)
590 setenv(const char *name, const char *value, int overwrite) argument
604 return (__setenv(name, nameLen, value, overwrite));
/freebsd-current/libexec/bootpd/
H A Drtmsg.c152 goto overwrite;
161 overwrite:

Completed in 188 milliseconds

123