Home | History | Annotate | Download | only in test

Lines Matching refs:orig_data

190 randomly_shorten_or_lengthen (const DBusString *orig_data,
195 if (orig_data != mutated)
199 if (!_dbus_string_copy (orig_data, 0, mutated, 0))
230 randomly_change_one_byte (const DBusString *orig_data,
235 if (orig_data != mutated)
239 if (!_dbus_string_copy (orig_data, 0, mutated, 0))
253 randomly_remove_one_byte (const DBusString *orig_data,
258 if (orig_data != mutated)
262 if (!_dbus_string_copy (orig_data, 0, mutated, 0))
276 randomly_add_one_byte (const DBusString *orig_data,
281 if (orig_data != mutated)
285 if (!_dbus_string_copy (orig_data, 0, mutated, 0))
296 randomly_modify_length (const DBusString *orig_data,
305 if (orig_data != mutated)
309 if (!_dbus_string_copy (orig_data, 0, mutated, 0))
336 randomly_set_extreme_ints (const DBusString *orig_data,
363 if (orig_data != mutated)
367 if (!_dbus_string_copy (orig_data, 0, mutated, 0))
422 randomly_change_one_type (const DBusString *orig_data,
428 if (orig_data != mutated)
432 if (!_dbus_string_copy (orig_data, 0, mutated, 0))
461 randomly_do_n_things (const DBusString *orig_data,
466 void (* functions[]) (const DBusString *orig_data,
480 if (!_dbus_string_copy (orig_data, 0, mutated, 0))
503 DBusString orig_data;
513 if (!_dbus_string_init (&orig_data))
520 &orig_data))
530 randomly_change_one_byte (&orig_data, &mutated);
540 randomly_modify_length (&orig_data, &mutated);
550 randomly_remove_one_byte (&orig_data, &mutated);
560 randomly_add_one_byte (&orig_data, &mutated);
570 randomly_set_extreme_ints (&orig_data, &mutated);
580 randomly_change_one_type (&orig_data, &mutated);
590 randomly_shorten_or_lengthen (&orig_data, &mutated);
600 randomly_do_n_things (&orig_data, &mutated, 2);
610 randomly_do_n_things (&orig_data, &mutated, 3);
620 randomly_do_n_things (&orig_data, &mutated, 4);
630 _dbus_string_free (&orig_data);