• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/dbus-1.6.8/dbus/

Lines Matching defs:vp

434   const DBusBasicValue *vp;
436 vp = value;
441 _dbus_string_set_byte (str, pos, vp->byt);
451 set_2_octets (str, pos, vp->u16, byte_order);
463 set_4_octets (str, pos, vp->u32, byte_order);
474 set_8_octets (str, pos, *vp, byte_order);
484 _dbus_assert (vp->str != NULL);
485 return set_string (str, pos, vp->str, byte_order,
489 _dbus_assert (vp->str != NULL);
490 return set_signature (str, pos, vp->str, byte_order,
569 volatile unsigned char *vp = value;
570 *vp = (unsigned char) _dbus_string_get_byte (str, pos);
577 volatile dbus_uint16_t *vp = value;
579 *vp = *(dbus_uint16_t *)(str_data + pos);
581 *vp = DBUS_UINT16_SWAP_LE_BE (*vp);
590 volatile dbus_uint32_t *vp = value;
592 *vp = *(dbus_uint32_t *)(str_data + pos);
594 *vp = DBUS_UINT32_SWAP_LE_BE (*vp);
602 volatile dbus_uint64_t *vp = value;
606 *vp = DBUS_UINT64_SWAP_LE_BE (*(dbus_uint64_t*)(str_data + pos));
608 *vp = *(dbus_uint64_t*)(str_data + pos);
610 *vp = *(DBus8ByteStruct*) (str_data + pos);
611 swap_8_octets (vp, byte_order);
620 volatile char **vp = value;
624 *vp = (char*) str_data + pos;
632 volatile char **vp = value;
637 *vp = (char*) str_data + pos;
862 const DBusBasicValue *vp;
866 vp = value;
871 if (!_dbus_string_insert_byte (str, insert_at, vp->byt))
879 return marshal_2_octets (str, insert_at, vp->u16,
883 return marshal_4_octets (str, insert_at, vp->u32 != FALSE,
889 return marshal_4_octets (str, insert_at, vp->u32,
895 return marshal_8_octets (str, insert_at, *vp, byte_order, pos_after);
900 _dbus_assert (vp->str != NULL);
901 return marshal_string (str, insert_at, vp->str, byte_order, pos_after);
904 _dbus_assert (vp->str != NULL);
905 return marshal_signature (str, insert_at, vp->str, pos_after);
1093 const void* vp = *(const DBusBasicValue**)value;
1106 return marshal_1_octets_array (str, insert_at, vp, n_elements, byte_order, pos_after);
1110 return marshal_fixed_multi (str, insert_at, vp, n_elements, byte_order, 2, pos_after);
1115 return marshal_fixed_multi (str, insert_at, vp, n_elements, byte_order, 4, pos_after);
1120 return marshal_fixed_multi (str, insert_at, vp, n_elements, byte_order, 8, pos_after);