OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Sqlite
(Results
1 - 14
of
14
) sorted by null
/external/tensorflow/tensorflow/core/summary/
schema_test.cc
26
Sqlite
* db;
27
TF_ASSERT_OK(
Sqlite
::Open(":memory:", SQLITE_OPEN_READWRITE, &db));
schema.h
19
#include "tensorflow/core/lib/db/
sqlite
.h"
25
/// \brief Creates TensorBoard
SQLite
tables and indexes.
29
Status SetupTensorboardSqliteDb(
Sqlite
* db);
summary_db_writer.h
20
#include "tensorflow/core/lib/db/
sqlite
.h"
25
/// \brief Creates
SQLite
SummaryWriterInterface.
36
Status CreateSummaryDbWriter(
Sqlite
* db, const string& experiment_name,
vacuum.cc
17
#include "tensorflow/core/lib/db/
sqlite
.h"
25
LOG(INFO) << "Opening
SQLite
DB: " << path;
26
Sqlite
* db;
27
TF_CHECK_OK(
Sqlite
::Open(path, SQLITE_OPEN_READWRITE, &db));
115
std::cerr << "The vacuum tool rebuilds
SQLite
database files created by\n"
125
std::cerr << "Need at least one
SQLite
DB path.\n";
schema.cc
22
Status Run(
Sqlite
* db, const char* sql) {
30
Status SetupTensorboardSqliteDb(
Sqlite
* db) {
summary_db_writer.cc
25
#include "tensorflow/core/lib/db/
sqlite
.h"
54
// https://www.
sqlite
.org/fileformat.html#record_format
139
Status SetDescription(
Sqlite
* db, int64 id, const StringPiece& markdown) {
154
///
SQLite
's zigzag varint encoding. Then, each time a collision
163
IdAllocator(Env* env,
Sqlite
* db) : env_{env}, db_{db} {
181
// SQLITE_CONSTRAINT maps to INVALID_ARGUMENT in
sqlite
.cc
210
Sqlite
* const db_;
218
static Status Save(
Sqlite
* db, SqliteTransaction* txn, IdAllocator* ids,
231
GraphWriter(
Sqlite
* db, SqliteTransaction* txn, GraphDef* graph, uint64 now,
365
Sqlite
* const db_
[
all
...]
loader.cc
20
#include "tensorflow/core/lib/db/
sqlite
.h"
55
Flag("db", &path, "Path of
SQLite
DB file"),
65
<< "SummaryFileWriter, into the sorts of
SQLite
database files\n"
68
<< "defined by core/lib/db/
sqlite
.cc can also be set.\n\n"
75
LOG(INFO) << "Opening
SQLite
file: " << path;
76
Sqlite
* db;
77
TF_CHECK_OK(
Sqlite
::Open(
summary_db_writer_test.cc
23
#include "tensorflow/core/lib/db/
sqlite
.h"
52
TF_ASSERT_OK(
Sqlite
::Open(":memory:", SQLITE_OPEN_READWRITE, &db_));
99
Sqlite
* db_ = nullptr;
/external/tensorflow/tensorflow/core/lib/db/
sqlite.h
28
/// TensorFlow
SQLite
Veneer
38
///
SQLite
>=3.8.2 needs to be supported until April 2019, which is when
47
/// \brief
SQLite
connection object.
49
/// The
SQLite
connection is closed automatically by the destructor.
54
/// This class offers the same thread safety behaviors as the
SQLite
60
class LOCKABLE
Sqlite
: public core::RefCounted {
62
/// \brief Closes
SQLite
connection, which can take milliseconds.
63
virtual ~
Sqlite
();
65
/// \brief Opens
SQLite
database file.
79
/// variables. See
sqlite
.cc to learn more
[
all
...]
sqlite.cc
15
#include "tensorflow/core/lib/db/
sqlite
.h"
26
// See: https://
sqlite
.org/rescode.html
38
case SQLITE_INTERNAL: // Internal logic error in
SQLite
84
Status SetPragma(
Sqlite
* db, const char* pragma, const StringPiece& value) {
104
Status EnvPragma(
Sqlite
* db, const char* pragma, const char* var) {
113
Status
Sqlite
::Open(const string& path, int flags,
Sqlite
** db) {
116
sqlite3*
sqlite
= nullptr;
local
117
int rc = sqlite3_open_v2(path.c_str(), &
sqlite
, flags, nullptr);
120
return PrintfStatus(rc, "
Sqlite
::Open(%s) failed: %s", path.c_str()
[
all
...]
sqlite_test.cc
15
#include "tensorflow/core/lib/db/
sqlite
.h"
32
TF_ASSERT_OK(
Sqlite
::Open(":memory:", SQLITE_OPEN_READWRITE, &db_));
38
Sqlite
* db_;
248
Sqlite
* db;
249
TF_ASSERT_OK(
Sqlite
::Open(":memory:", SQLITE_OPEN_READWRITE, &db));
/external/tensorflow/tensorflow/core/kernels/data/experimental/sql/
sqlite_query_connection.h
21
#include "tensorflow/core/lib/db/
sqlite
.h"
45
Sqlite
* db_ = nullptr;
sqlite_query_connection.cc
38
TF_RETURN_IF_ERROR(
Sqlite
::Open(
/external/tensorflow/tensorflow/core/kernels/
summary_kernels.cc
19
#include "tensorflow/core/lib/db/
sqlite
.h"
84
Sqlite
* db;
85
TF_RETURN_IF_ERROR(
Sqlite
::Open(
Completed in 148 milliseconds