Lines Matching defs:pl
3275 int Arguments::PropertyList_count(SystemProperty* pl) {
3277 while(pl != NULL) {
3279 pl = pl->next();
3284 const char* Arguments::PropertyList_get_value(SystemProperty *pl, const char* key) {
3287 for (prop = pl; prop != NULL; prop = prop->next()) {
3293 const char* Arguments::PropertyList_get_key_at(SystemProperty *pl, int index) {
3297 while(pl != NULL) {
3299 ret_val = pl->key();
3303 pl = pl->next();
3309 char* Arguments::PropertyList_get_value_at(SystemProperty* pl, int index) {
3313 while(pl != NULL) {
3315 ret_val = pl->value();
3319 pl = pl->next();