Home
last modified time | relevance | path

Searched refs:EntryAttributes (Results 1 – 25 of 53) sorted by relevance

123

/dports/security/keepassxc/keepassxc-2.6.6/src/core/
H A DEntryAttributes.cpp23 const QString EntryAttributes::TitleKey = "Title";
26 const QString EntryAttributes::URLKey = "URL";
37 EntryAttributes::EntryAttributes(QObject* parent) in EntryAttributes() function in EntryAttributes
43 QList<QString> EntryAttributes::keys() const in keys()
192 void EntryAttributes::copyCustomKeysFrom(const EntryAttributes* other) in copyCustomKeysFrom()
223 bool EntryAttributes::areCustomKeysDifferent(const EntryAttributes* other) in areCustomKeysDifferent()
244 void EntryAttributes::copyDataFrom(const EntryAttributes* other) in copyDataFrom()
275 bool EntryAttributes::operator==(const EntryAttributes& other) const in operator ==()
280 bool EntryAttributes::operator!=(const EntryAttributes& other) const in operator !=()
294 void EntryAttributes::clear() in clear()
[all …]
H A DEntry.cpp40 : m_attributes(new EntryAttributes(this)) in Entry()
111 if (field == EntryAttributes::TitleKey) { in buildReference()
117 } else if (field == EntryAttributes::URLKey) { in buildReference()
119 } else if (field == EntryAttributes::NotesKey) { in buildReference()
412 EntryAttributes* Entry::attributes() in attributes()
417 const EntryAttributes* Entry::attributes() const in attributes()
578 …m_attributes->set(EntryAttributes::TitleKey, title, m_attributes->isProtected(EntryAttributes::Tit… in setTitle()
589 …m_attributes->set(EntryAttributes::URLKey, url, m_attributes->isProtected(EntryAttributes::URLKey)… in setUrl()
594 …m_attributes->set(EntryAttributes::UserNameKey, username, m_attributes->isProtected(EntryAttribute… in setUsername()
599 …m_attributes->set(EntryAttributes::PasswordKey, password, m_attributes->isProtected(EntryAttribute… in setPassword()
[all …]
H A DEntryAttributes.h29 class EntryAttributes : public QObject
34 explicit EntryAttributes(QObject* parent = nullptr);
47 void copyCustomKeysFrom(const EntryAttributes* other);
48 bool areCustomKeysDifferent(const EntryAttributes* other);
51 void copyDataFrom(const EntryAttributes* other);
53 bool operator==(const EntryAttributes& other) const;
54 bool operator!=(const EntryAttributes& other) const;
H A DEntry.h121 EntryAttributes* attributes();
122 const EntryAttributes* attributes() const;
277 QPointer<EntryAttributes> m_attributes;
/dports/security/keepassx-devel/keepassx-55869e8/src/core/
H A DEntryAttributes.cpp23 const QString EntryAttributes::URLKey = "URL";
28 EntryAttributes::EntryAttributes(QObject* parent) in EntryAttributes() function in EntryAttributes
34 QList<QString> EntryAttributes::keys() const in keys()
44 QList<QString> EntryAttributes::customKeys() in customKeys()
157 void EntryAttributes::copyCustomKeysFrom(const EntryAttributes* other) in copyCustomKeysFrom()
188 bool EntryAttributes::areCustomKeysDifferent(const EntryAttributes* other) in areCustomKeysDifferent()
209 void EntryAttributes::copyDataFrom(const EntryAttributes* other) in copyDataFrom()
222 bool EntryAttributes::operator==(const EntryAttributes& other) const in operator ==()
228 bool EntryAttributes::operator!=(const EntryAttributes& other) const in operator !=()
234 void EntryAttributes::clear() in clear()
[all …]
H A DEntryAttributes.h26 class EntryAttributes : public QObject
31 explicit EntryAttributes(QObject* parent = nullptr);
40 void copyCustomKeysFrom(const EntryAttributes* other);
41 bool areCustomKeysDifferent(const EntryAttributes* other);
44 void copyDataFrom(const EntryAttributes* other);
45 bool operator==(const EntryAttributes& other) const;
46 bool operator!=(const EntryAttributes& other) const;
H A DEntry.cpp28 : m_attributes(new EntryAttributes(this)) in Entry()
200 return m_attributes->value(EntryAttributes::TitleKey); in title()
205 return m_attributes->value(EntryAttributes::URLKey); in url()
220 return m_attributes->value(EntryAttributes::NotesKey); in notes()
228 EntryAttributes* Entry::attributes() in attributes()
233 const EntryAttributes* Entry::attributes() const in attributes()
322 …m_attributes->set(EntryAttributes::TitleKey, title, m_attributes->isProtected(EntryAttributes::Tit… in setTitle()
327 …m_attributes->set(EntryAttributes::URLKey, url, m_attributes->isProtected(EntryAttributes::URLKey)… in setUrl()
332 …m_attributes->set(EntryAttributes::UserNameKey, username, m_attributes->isProtected(EntryAttribute… in setUsername()
337 …m_attributes->set(EntryAttributes::PasswordKey, password, m_attributes->isProtected(EntryAttribute… in setPassword()
[all …]
H A DEntry.h81 EntryAttributes* attributes();
82 const EntryAttributes* attributes() const;
163 EntryAttributes* const m_attributes;
/dports/devel/py-llfuse/llfuse-1.3.8/rst/
H A Ddata.rst62 .. autoclass:: EntryAttributes
100 method that the `~EntryAttributes.st_atime_ns` field contains an
106 method that the `~EntryAttributes.st_mtime_ns` field contains an
112 method that the `~EntryAttributes.st_mode` field contains an
118 method that the `~EntryAttributes.st_uid` field contains an
124 method that the `~EntryAttributes.st_gid` field contains an
130 method that the `~EntryAttributes.st_size` field contains an
/dports/security/keepassxc/keepassxc-2.6.6/src/gui/entry/
H A DEntryURLModel.h25 class EntryAttributes; variable
46 void setEntryAttributes(EntryAttributes* entryAttributes);
58 EntryAttributes* m_entryAttributes;
H A DEntryAttributesModel.h23 class EntryAttributes; variable
31 void setEntryAttributes(EntryAttributes* entryAttributes);
55 EntryAttributes* m_entryAttributes;
H A DEntryURLModel.cpp35 void EntryURLModel::setEntryAttributes(EntryAttributes* entryAttributes) in setEntryAttributes()
97 …if (EntryAttributes::isDefaultAttribute(key) || m_entryAttributes->containsValue(value.toString())… in setData()
140 if (!EntryAttributes::isDefaultAttribute(key) && key.contains("KP2A_URL")) { in updateAttributes()
H A DEntryModel.cpp141 EntryAttributes* attr = entry->attributes(); in data()
153 if (attr->isReference(EntryAttributes::TitleKey)) { in data()
163 if (attr->isReference(EntryAttributes::UserNameKey)) { in data()
176 if (attr->isReference(EntryAttributes::PasswordKey)) { in data()
185 if (attr->isReference(EntryAttributes::URLKey)) { in data()
197 if (attr->isReference(EntryAttributes::NotesKey)) { in data()
H A DEntryAttributesModel.cpp32 void EntryAttributesModel::setEntryAttributes(EntryAttributes* entryAttributes) in setEntryAttributes()
108 if (EntryAttributes::isDefaultAttribute(newKey) || m_entryAttributes->keys().contains(newKey)) { in setData()
234 if (!EntryAttributes::isDefaultAttribute(key)) { in updateAttributes()
H A DEditEntryWidget.h40 class EntryAttributes; variable
192 EntryAttributes* const m_entryAttributes;
/dports/security/keepassx-devel/keepassx-55869e8/src/gui/entry/
H A DEntryAttributesModel.h23 class EntryAttributes; variable
31 void setEntryAttributes(EntryAttributes* entryAttributes);
55 EntryAttributes* m_entryAttributes;
H A DEntryAttributesModel.cpp32 void EntryAttributesModel::setEntryAttributes(EntryAttributes* entryAttributes) in setEntryAttributes()
105 if (EntryAttributes::isDefaultAttribute(newKey) in setData()
237 if (!EntryAttributes::isDefaultAttribute(key)) { in updateAttributes()
H A DEditEntryWidget.h35 class EntryAttributes; variable
131 EntryAttributes* const m_entryAttributes;
/dports/devel/py-llfuse/llfuse-1.3.8/src/
H A Dhandlers.pxi33 cdef EntryAttributes entry
76 cdef EntryAttributes entry
96 cdef EntryAttributes entry
102 entry = EntryAttributes()
168 cdef EntryAttributes entry
187 cdef EntryAttributes entry
241 cdef EntryAttributes entry
278 cdef EntryAttributes entry
454 cdef EntryAttributes entry
710 cdef EntryAttributes entry
[all …]
H A Doperations.pxi53 This method should return an `EntryAttributes` instance for the
57 `EntryAttributes` instance with zero ``st_ino`` value (in which case
101 This method should return an `EntryAttributes` instance with the
102 attributes of *inode*. The `~EntryAttributes.entry_timeout` attribute is
113 attributes are to be updated. *attr* will be an `EntryAttributes`
118 `~EntryAttributes.st_ctime_ns` attribute to the current time (to
130 The method should return an `EntryAttributes` instance (containing both
170 This method must return an `EntryAttributes` instance with the
271 The method must return an `EntryAttributes` instance with the
387 {next_})`, where *attr* is an `EntryAttributes` instance and *next_*
[all …]
/dports/security/keepassxc/keepassxc-2.6.6/src/format/
H A DOpVaultReaderSections.cpp150 return EntryAttributes::PasswordKey; in resolveAttributeName()
152 return EntryAttributes::UserNameKey; in resolveAttributeName()
155 return EntryAttributes::URLKey; in resolveAttributeName()
/dports/devel/py-llfuse/llfuse-1.3.8/
H A DChanges.rst69 * `EntryAttributes` and `StatvfsData` instances can now be pickled and
88 * Fixed the description of the `EntryAttributes` structure
89 (descriptions of `~EntryAttributes.attr_timeout` and
90 `~EntryAttributes.entry_timeout` were switched).
107 the `~llfuse.EntryAttributes` class from Python on 32-bit systems.
157 * Ducktyping the `EntryAttributes` class is no longer allowed,
161 * The `!st_Xtime` attributes of the `EntryAttributes` have been
165 `EntryAttributes` instance. To determine which attributes should
198 * Added more reasonable default values for `llfuse.EntryAttributes`.
/dports/devel/py-llfuse/llfuse-1.3.8/test/
H A Dtest_api.py66 a = llfuse.EntryAttributes()
102 for (inst, attr) in ((llfuse.EntryAttributes(), 'st_mode'),
/dports/security/keepassxc/keepassxc-2.6.6/src/fdosecrets/objects/
H A DItem.cpp87 for (const auto& attr : EntryAttributes::DefaultAttributes) { in attributes()
88 if (entryAttrs->isProtected(attr) || attr == EntryAttributes::PasswordKey) { in attributes()
127 if (entryAttrs->isProtected(it.key()) || it.key() == EntryAttributes::PasswordKey) { in setAttributes()
/dports/security/keepassxc/keepassxc-2.6.6/src/cli/
H A DUtils.h56 QStringList findAttributes(const EntryAttributes& attributes, const QString& name);

123