Searched defs:gSyspropList (Results 1 - 1 of 1) sorted by relevance

/frameworks/native/libs/utils/
H A Dmisc.cpp98 static Vector<sysprop_change_callback_info>* gSyspropList = NULL; member in namespace:android
104 if (gSyspropList == NULL) {
105 gSyspropList = new Vector<sysprop_change_callback_info>();
111 for (size_t i=0; i<gSyspropList->size(); i++) {
112 if (priority >= gSyspropList->itemAt(i).priority) {
113 gSyspropList->insertAt(info, i);
119 gSyspropList->add(info);
129 if (gSyspropList != NULL) {
130 listeners = *gSyspropList;

Completed in 88 milliseconds