Home | History | Annotate | Download | only in android

Lines Matching defs:property

38     char*                 property;
51 prop->property = p = (char*)(prop + 1);
88 /* Appends a new boot property to the end of the internal list.
105 * property name
121 D("Adding boot property: '%.*s' = '%.*s'",
142 dwarning("boot property name too long: '%.*s'",
146 dwarning("boot property value too long: '%.*s'",
150 dwarning("boot property name contains invalid chars: %.*s",
174 char *split = strchr(p->property, '=');
177 __FUNCTION__, p->property);
182 *split = '\0'; /* p->property is now "<key>\0<value>\0" */
184 uint32_t key_buf_len = (split - p->property) + 1; // +1: '\0' terminator
186 qemu_put_buffer(f, (uint8_t*) p->property, key_buf_len);
192 *split = '='; /* restore property to "<key>=<value>\0" */
197 /* Loads a single boot property from a snapshot file
222 /* add the property */
225 D("%s: load failed: cannot add boot property (details follow)\n",
305 qemud_client_send(client, (uint8_t*)prop->property, prop->length);
363 dwarning("boot property missing (=) separator: %s", param);