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