Home | History | Annotate | Download | only in android

Lines Matching refs:prop

47     BootProperty*  prop = android_alloc( sizeof(*prop) + length + 1 );
50 prop->next = NULL;
51 prop->property = p = (char*)(prop + 1);
52 prop->length = length;
61 return prop;
94 BootProperty* prop;
125 prop = boot_property_alloc(name, namelen, value, valuelen);
127 *_boot_properties_tail = prop;
128 _boot_properties_tail = &prop->next;
303 BootProperty* prop;
304 for (prop = _boot_properties; prop != NULL; prop = prop->next) {
305 qemud_client_send(client, (uint8_t*)prop->property, prop->length);