Home
last modified time | relevance | path

Searched refs:attachment_point (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/sql/
Dconnection.cc102 bool ValidAttachmentPoint(const char* attachment_point) { in ValidAttachmentPoint() argument
103 for (size_t i = 0; attachment_point[i]; ++i) { in ValidAttachmentPoint()
104 if (!((attachment_point[i] >= '0' && attachment_point[i] <= '9') || in ValidAttachmentPoint()
105 (attachment_point[i] >= 'a' && attachment_point[i] <= 'z') || in ValidAttachmentPoint()
106 (attachment_point[i] >= 'A' && attachment_point[i] <= 'Z') || in ValidAttachmentPoint()
107 attachment_point[i] == '_')) { in ValidAttachmentPoint()
632 const char* attachment_point) { in AttachDatabase() argument
633 DCHECK(ValidAttachmentPoint(attachment_point)); in AttachDatabase()
641 s.BindString(1, attachment_point); in AttachDatabase()
645 bool Connection::DetachDatabase(const char* attachment_point) { in DetachDatabase() argument
[all …]
Dconnection.h301 const char* attachment_point);
302 bool DetachDatabase(const char* attachment_point);