OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Temp
(Results
1 - 25
of
137
) sorted by relevancy
1
2
3
4
5
6
/src/crypto/external/apache2/openssl/dist/external/perl/Text-Template-1.56/t/
template-encoding.t
8
use File::
Temp
;
19
my $tmp_fh = File::
Temp
->new;
34
$tmp_fh = File::
Temp
->new;
ofh.t
9
use File::
Temp
;
17
my $of = File::
Temp
->new;
preprocess.t
9
use File::
Temp
;
13
my $tmpfile = File::
Temp
->new;
exported.t
9
use File::
Temp
;
13
my $tfh = File::
Temp
->new;
taint.t
8
use File::
Temp
;
13
# File::
Temp
(for all versions up to at least 0.2308) is currently bugged under MSWin32/taint mode [as of 2018-09]
14
# ... fails unless "/tmp" on the current windows drive is a writable directory OR either $ENV{TMP} or $ENV{
TEMP
} are untainted and point to a writable directory
15
# ref: [File-
Temp
: Fails under -T, Windows 7, Strawberry Perl 5.12.1](https://rt.cpan.org/Public/Bug/Display.html?id=60340)
16
($ENV{
TEMP
}) = $ENV{
TEMP
} =~ m/^.*$/gmsx; # untaint $ENV{
TEMP
}
20
my $tmpfile = File::
Temp
->new;
/src/crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/t/
template-encoding.t
8
use File::
Temp
;
19
my $tmp_fh = File::
Temp
->new;
34
$tmp_fh = File::
Temp
->new;
ofh.t
9
use File::
Temp
;
17
my $of = File::
Temp
->new;
preprocess.t
9
use File::
Temp
;
13
my $tmpfile = File::
Temp
->new;
exported.t
9
use File::
Temp
;
13
my $tfh = File::
Temp
->new;
taint.t
8
use File::
Temp
;
13
# File::
Temp
(for all versions up to at least 0.2308) is currently bugged under MSWin32/taint mode [as of 2018-09]
14
# ... fails unless "/tmp" on the current windows drive is a writable directory OR either $ENV{TMP} or $ENV{
TEMP
} are untainted and point to a writable directory
15
# ref: [File-
Temp
: Fails under -T, Windows 7, Strawberry Perl 5.12.1](https://rt.cpan.org/Public/Bug/Display.html?id=60340)
16
($ENV{
TEMP
}) = $ENV{
TEMP
} =~ m/^.*$/gmsx; # untaint $ENV{
TEMP
}
20
my $tmpfile = File::
Temp
->new;
/src/external/apache2/llvm/dist/clang/utils/analyzer/
update_plist_test.pl
4
require File::
Temp
;
5
use File::
Temp
();
13
# Create a
temp
file for the new test.
14
my $fh = File::
Temp
->new();
18
# Copy the existing
temp
file, skipping the FileCheck comments.
/src/crypto/external/bsd/openssl.old/dist/test/recipes/
90-test_sslapi.t
12
use File::
Temp
qw(tempfile);
/src/external/apache2/llvm/dist/llvm/lib/MC/
MCSchedule.cpp
98
double
Temp
= NumUnits * 1.0 / I->Cycles;
99
Throughput = Throughput ? std::min(Throughput.getValue(),
Temp
) :
Temp
;
142
double
Temp
= countPopulation(I->getUnits()) * 1.0 / I->getCycles();
143
Throughput = Throughput ? std::min(Throughput.getValue(),
Temp
) :
Temp
;
/src/sys/external/bsd/acpica/dist/common/
dmswitch.c
60
char **
Temp
);
86
char *
Temp
= NULL;
97
Temp
= (char *) (&Op->Named.Name);
99
if (!strncmp(
Temp
, "_T_", 3))
101
/* Allocate and init a new
Temp
List node */
127
if (!AcpiDmIsSwitchBlock (Op, &
Temp
))
139
/* Note, if we get here
Temp
is not NULL */
141
if (!strncmp(
Temp
, (char *) (&Current->Op->Named.Name), 4))
172
"Warning: Declaration for
temp
name %.4s not found\n",
Temp
);
[
all
...]
/src/crypto/external/apache2/openssl/dist/test/recipes/
70-test_quic_multistream.t
11
use File::
Temp
qw(tempfile);
/src/crypto/external/bsd/openssl/dist/test/recipes/
90-test_sslapi.t
12
use File::
Temp
qw(tempfile);
/src/external/apache2/llvm/dist/llvm/lib/LTO/
Caching.cpp
138
Expected<sys::fs::TempFile>
Temp
= sys::fs::TempFile::create(
140
if (!
Temp
) {
141
errs() << "Error: " << toString(
Temp
.takeError()) << "\n";
147
std::make_unique<raw_fd_ostream>(
Temp
->FD, /* ShouldClose */ false),
148
AddBuffer, std::move(*
Temp
), std::string(EntryPath.str()), Task);
/src/sys/external/bsd/acpica/dist/debugger/
dbstats.c
402
UINT32
Temp
;
406
Temp
= AcpiDbMatchArgument (TypeArg, AcpiDbStatTypes);
407
if (
Temp
== ACPI_TYPE_NOT_FOUND)
414
switch (
Temp
)
538
Temp
= (UINT32) ACPI_PTR_DIFF (
544
AcpiOsPrintf ("Stack Use %X (%u)\n",
Temp
,
Temp
);
/src/external/apache2/llvm/dist/llvm/lib/Support/
FileOutputBuffer.cpp
36
OnDiskBuffer(StringRef Path, fs::TempFile
Temp
, fs::mapped_file_region Buf)
37
: FileOutputBuffer(Path), Buffer(std::move(Buf)),
Temp
(std::move(
Temp
)) {}
52
return
Temp
.keep(FinalPath);
56
// Close the mapping before deleting the
temp
file, so that the removal
59
consumeError(
Temp
.discard());
63
// Delete the
temp
file if it still was open, but keeping the mapping
65
consumeError(
Temp
.discard());
70
fs::TempFile
Temp
;
/src/external/apache2/llvm/dist/llvm/tools/bugpoint/
OptimizerDriver.cpp
147
Expected<sys::fs::TempFile>
Temp
=
149
if (!
Temp
) {
151
<< ": Error making unique filename: " << toString(
Temp
.takeError())
155
DiscardTemp Discard{*
Temp
};
156
raw_fd_ostream OS(
Temp
->FD, /*shouldClose*/ false);
161
errs() << "Error writing bitcode file: " <<
Temp
->TmpName << "\n";
227
Args.push_back(
Temp
->TmpName.c_str());
/src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/MachO/
MachOWriter.cpp
226
StructType
Temp
;
227
assert(Sec.Segname.size() <= sizeof(
Temp
.segname) && "too long segment name");
228
assert(Sec.Sectname.size() <= sizeof(
Temp
.sectname) &&
230
memset(&
Temp
, 0, sizeof(StructType));
231
memcpy(
Temp
.segname, Sec.Segname.data(), Sec.Segname.size());
232
memcpy(
Temp
.sectname, Sec.Sectname.data(), Sec.Sectname.size());
233
Temp
.addr = Sec.Addr;
234
Temp
.size = Sec.Size;
235
Temp
.offset = Sec.Offset;
236
Temp
.align = Sec.Align
[
all
...]
/src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerIOPosix.cpp
103
FILE*
Temp
= fopen("/dev/null", "w");
104
if (!
Temp
)
106
dup2(fileno(
Temp
), Fd);
107
fclose(
Temp
);
/src/sys/external/bsd/acpica/dist/tools/acpiexec/
aemain.c
204
UINT32
Temp
;
403
Temp
= strtoul (AcpiGbl_Optarg, NULL, 0);
404
if (!
Temp
|| (
Temp
> ACPI_UINT16_MAX))
411
AcpiGbl_MaxLoopIterations = (UINT16)
Temp
;
/src/external/apache2/llvm/dist/llvm/lib/ProfileData/
ProfileSummaryBuilder.cpp
139
APInt
Temp
(128, TotalCount);
142
Temp
*= N;
143
Temp
=
Temp
.sdiv(D);
144
uint64_t DesiredCount =
Temp
.getZExtValue();
/src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
Utility.h
51
char
Temp
[21];
52
char *TempPtr = std::end(
Temp
);
62
this->operator<<(StringView(TempPtr, std::end(
Temp
)));
Completed in 42 milliseconds
1
2
3
4
5
6
Indexes created Sat Feb 28 05:31:39 UTC 2026