HomeSort by relevance Sort by last modified time
    Searched refs:data_source_name (Results 1 - 12 of 12) sorted by null

  /external/tensorflow/tensorflow/core/kernels/data/sql/
query_connection.h 42 // Opens a connection to the database named by `data_source_name`. Prepares to
48 virtual Status Open(const string& data_source_name, const string& query,
sqlite_query_connection.h 32 Status Open(const string& data_source_name, const string& query,
sqlite_query_connection.cc 31 Status SqliteQueryConnection::Open(const string& data_source_name,
39 data_source_name, SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, &db_));
  /external/tensorflow/tensorflow/core/kernels/data/
sql_dataset_ops.cc 58 string data_source_name; variable
59 OP_REQUIRES_OK(ctx, ParseScalarArgument<string>(ctx, "data_source_name",
60 &data_source_name));
73 *output = new Dataset(driver_name, data_source_name, query, output_types_,
80 Dataset(const string& driver_name, const string& data_source_name,
84 data_source_name_(data_source_name),
  /external/perfetto/src/tracing/test/
mock_producer.cc 108 const std::string& data_source_name) {
109 PERFETTO_DCHECK(data_source_instances_.count(data_source_name));
110 BufferID buf_id = data_source_instances_[data_source_name].target_buffer;
mock_producer.h 55 const std::string& data_source_name);
  /external/perfetto/protos/perfetto/ipc/
producer_port.proto 88 optional string data_source_name = 1;
  /external/tensorflow/tensorflow/contrib/data/python/ops/
readers.py 152 def __init__(self, driver_name, data_source_name, query, output_types):
175 data_source_name: A 0-D `tf.string` tensor containing a connection string
185 data_source_name, dtype=dtypes.string, name="data_source_name")
  /external/perfetto/src/tracing/core/
service_impl.h 198 std::string data_source_name; member in struct:perfetto::ServiceImpl::DataSourceInstance
service_impl.cc 764 if (it->first == producer_id && it->second.data_source_name == name) {
    [all...]
  /external/perfetto/src/tracing/ipc/service/
producer_ipc_service.cc 127 producer->service_endpoint->UnregisterDataSource(req.data_source_name());
  /external/tensorflow/tensorflow/contrib/data/python/kernel_tests/
sql_dataset_op_test.py 35 dataset = readers.SqlDataset(self.driver_name, self.data_source_name,
43 self.data_source_name = os.path.join(test.get_temp_dir(), "tftest.sqlite")
48 conn = sqlite3.connect(self.data_source_name)

Completed in 569 milliseconds