OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mkostemp64
(Results
1 - 5
of
5
) sorted by null
/bionic/libc/bionic/
lfs64_support.cpp
26
int
mkostemp64
(char* path, int flags) {
function
/bionic/libc/include/
stdlib.h
63
extern int
mkostemp64
(char*, int);
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
stdlib.h
672
extern int __REDIRECT (mkostemp, (char *__template, int __flags),
mkostemp64
)
675
# define mkostemp
mkostemp64
679
extern int
mkostemp64
(char *__template, int __flags) __nonnull ((1)) __wur;
[
all
...]
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
stdlib.h
677
extern int __REDIRECT (mkostemp, (char *__template, int __flags),
mkostemp64
)
680
# define mkostemp
mkostemp64
684
extern int
mkostemp64
(char *__template, int __flags) __nonnull ((1)) __wur;
[
all
...]
/bionic/tests/
stdlib_test.cpp
248
TEST(stdlib,
mkostemp64
) {
249
TemporaryFile tf([](char* path) { return
mkostemp64
(path, O_CLOEXEC); });
Completed in 113 milliseconds