Home | History | Annotate | Download | only in nexus

Lines Matching refs:ns

43 PropertyNamespace *PropertyManager::lookupNamespace_UNLOCKED(const char *ns) {
47 if (!strcasecmp(ns, (*ns_it)->getName()))
54 Property *PropertyManager::lookupProperty_UNLOCKED(PropertyNamespace *ns, const char *name) {
57 for (it = ns->getProperties()->begin();
58 it != ns->getProperties()->end(); ++it) {
67 PropertyNamespace *ns;
71 if (!(ns = lookupNamespace_UNLOCKED(ns_name))) {
73 ns = new PropertyNamespace(ns_name);
74 mNamespaces->push_back(ns);
77 if (lookupProperty_UNLOCKED(ns, p->getName())) {
85 ns->getProperties()->push_back(p);
91 PropertyNamespace *ns;
95 if (!(ns = lookupNamespace_UNLOCKED(ns_name))) {
103 for (it = ns->getProperties()->begin();
104 it != ns->getProperties()->end(); ++it) {
107 ns->getProperties()->erase(it);