Home
last modified time | relevance | path

Searched refs:CREATE (Results 1 – 25 of 62) sorted by relevance

123

/external/wpa_supplicant_8/hs20/server/
Dsql.txt1 CREATE TABLE eventlog(
11 CREATE TABLE sessions(
34 CREATE index sessions_id_index ON sessions(id);
36 CREATE TABLE osu_config(
42 CREATE TABLE users(
67 CREATE TABLE wildcards(
72 CREATE TABLE authlog(
80 CREATE TABLE pending_tc(
85 CREATE TABLE current_sessions(
95 CREATE TABLE cert_enroll(
[all …]
/external/wpa_supplicant_8/hostapd/
Dhostapd.eap_user_sqlite1 CREATE TABLE users(
10 CREATE TABLE wildcards(
21 CREATE TABLE authlog(
29 CREATE TABLE pending_tc(
34 CREATE TABLE current_sessions(
/external/curl/tests/data/
Dtest8116 CREATE
23 IMAP CREATE mailbox (CUSTOMREQUEST)
26 imap://%HOSTIP:%IMAPPORT -u user:secret -X 'CREATE 811'
36 A003 CREATE 811
/external/igt-gpu-tools/benchmarks/
Dgem_exec_ctx.c48 enum mode { NOP, CREATE, SWITCH, DEFAULT }; enumerator
137 case CREATE: in loop()
157 if (mode == CREATE) in loop()
172 if (mode != CREATE) in loop()
212 mode = CREATE; in main()
/external/llvm/test/Object/
Dar-create.test11 RUN: llvm-ar q %t.foo.a %t 2>&1 | FileCheck --check-prefix=CREATE %s
13 RUN: llvm-ar r %t.foo.a %t 2>&1 | FileCheck --check-prefix=CREATE %s
17 CREATE: creating {{.*}}.foo.a
Dmri-addmod.test17 ; Now test that CREATE overwrites an existing file.
/external/llvm-project/llvm/test/Object/
Dar-create.test11 RUN: llvm-ar q %t.foo.a %t 2>&1 | FileCheck --check-prefix=CREATE %s
13 RUN: llvm-ar r %t.foo.a %t 2>&1 | FileCheck --check-prefix=CREATE %s
17 CREATE: creating {{.*}}.foo.a
/external/grpc-grpc/examples/cpp/helloworld/
Dgreeter_async_server.cc76 : service_(service), cq_(cq), responder_(&ctx_), status_(CREATE) { in CallData()
82 if (status_ == CREATE) { in Proceed()
135 enum CallStatus { CREATE, PROCESS, FINISH }; enumerator
/external/bcc/tools/
Dvfsstat_example.txt8 TIME READ/s WRITE/s CREATE/s OPEN/s FSYNC/s
27 TIME READ/s WRITE/s CREATE/s OPEN/s FSYNC/s
/external/llvm-project/llvm/test/tools/llvm-ar/
Dmri-addlib.test8 # RUN: echo "CREATE %t/addlib.a" > %t/addlib.mri
19 # RUN: echo "CREATE %t/badlib.a" > %t/badlib.mri
Dmri-addmod.test6 # RUN: echo "CREATE %t/addmod.a" > %t/addmod.mri
Dmri-nonascii.test11 RUN: echo "CREATE %t/mri.ar" > %t/script.mri
/external/arm-trusted-firmware/lib/debugfs/
Ddebugfs_smc.c20 #define CREATE 1 macro
183 case CREATE: in debugfs_smc_handler()
/external/jimfs/jimfs/src/main/java/com/google/common/jimfs/
DOptions.java22 import static java.nio.file.StandardOpenOption.CREATE;
59 ImmutableSet.<OpenOption>of(WRITE, CREATE, TRUNCATE_EXISTING);
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/archivers/examples/
DSevenZArchiverTest.java73 StandardOpenOption.CREATE, StandardOpenOption.TRUNCATE_EXISTING)) { in channelVersion() argument
83 StandardOpenOption.CREATE, StandardOpenOption.TRUNCATE_EXISTING)) { in unknownFormat() argument
/external/autotest/site_utils/
Dclear.sh29 CREATE DATABASE chromeos_autotest_db;
/external/perfetto/src/traced/probes/ftrace/test/data/android_walleye_OPM5.171019.017.A1_4.4.88/events/ext4/ext4_ind_map_blocks_enter/
Dformat15 …REC->ino, REC->lblk, REC->len, __print_flags(REC->flags, "|", { 0x0001, "CREATE" }, { 0x0002, "UNW…
/external/perfetto/src/traced/probes/ftrace/test/data/android_walleye_OPM5.171019.017.A1_4.4.88/events/ext4/ext4_ext_map_blocks_enter/
Dformat15 …REC->ino, REC->lblk, REC->len, __print_flags(REC->flags, "|", { 0x0001, "CREATE" }, { 0x0002, "UNW…
/external/perfetto/src/traced/probes/ftrace/test/data/android_walleye_OPM5.171019.017.A1_4.4.88/events/ext4/ext4_ext_map_blocks_exit/
Dformat18 …))), (unsigned long) REC->ino, __print_flags(REC->flags, "|", { 0x0001, "CREATE" }, { 0x0002, "UNW…
/external/perfetto/src/traced/probes/ftrace/test/data/android_walleye_OPM5.171019.017.A1_4.4.88/events/ext4/ext4_ext_handle_unwritten_extents/
Dformat18 …ong long) REC->pblk, REC->len, __print_flags(REC->flags, "|", { 0x0001, "CREATE" }, { 0x0002, "UNW…
/external/perfetto/src/traced/probes/ftrace/test/data/android_walleye_OPM5.171019.017.A1_4.4.88/events/ext4/ext4_ind_map_blocks_exit/
Dformat18 …))), (unsigned long) REC->ino, __print_flags(REC->flags, "|", { 0x0001, "CREATE" }, { 0x0002, "UNW…
/external/jimfs/jimfs/src/test/java/com/google/common/jimfs/
DJimfsUnixLikeFileSystemTest.java30 import static java.nio.file.StandardOpenOption.CREATE;
710 Files.newByteChannel(path("/foo"), ImmutableSet.of(WRITE, CREATE), permissions).close(); in testOpenChannel_withInitialAttributes_createNewFile()
725 Files.newByteChannel(path("/foo"), ImmutableSet.of(WRITE, CREATE), permissions).close(); in testOpenChannel_withInitialAttributes_fileExists()
889 Files.write(test, new byte[] {4, 5}, CREATE); // succeeds, ok for file to already exist in testWriteFile_withStandardOptions()
892 Files.write(test, bytes, WRITE, CREATE, TRUNCATE_EXISTING); // default options in testWriteFile_withStandardOptions()
898 Files.write(test, bytes, WRITE, CREATE, TRUNCATE_EXISTING, APPEND, SPARSE, DSYNC, SYNC); in testWriteFile_withStandardOptions()
957 Files.write(test, ImmutableList.of("foo"), UTF_8, CREATE); in testWriteLines_withStandardOptions()
966 Files.write(test, lines, UTF_8, WRITE, CREATE, TRUNCATE_EXISTING); // default options in testWriteLines_withStandardOptions()
972 Files.write(test, lines, UTF_8, WRITE, CREATE, TRUNCATE_EXISTING, APPEND, SPARSE, DSYNC, SYNC); in testWriteLines_withStandardOptions()
1439 try (OutputStream out = Files.newOutputStream(path, CREATE, TRUNCATE_EXISTING)) { in testOutputStream_withTruncateExistingAndNotWrite_truncatesFile() argument
[all …]
DJimfsFileSystemCloseTest.java20 import static java.nio.file.StandardOpenOption.CREATE;
117 FileChannel fc = FileChannel.open(p, READ, WRITE, CREATE); in testOpenChannelsClosed()
/external/fmtlib/include/fmt/
Dos.h282 CREATE = FMT_POSIX(O_CREAT), // Create if the file doesn't exist. enumerator
360 int oflag = file::WRONLY | file::CREATE;
/external/desugar/java/com/google/devtools/build/android/desugar/scan/
DKeepScanner.java19 import static java.nio.file.StandardOpenOption.CREATE;
142 Files.newOutputStream(options.keepDest, CREATE), /*autoFlush=*/ false, "UTF-8")) { in main() argument

123