Lines Matching refs:code

556 BParameterWeb::AllowsTypeCode(type_code code) const
558 return code == TypeCode();
563 BParameterWeb::Unflatten(type_code code, const void* buffer, ssize_t size)
567 if (!AllowsTypeCode(code)) {
568 ERROR("BParameterWeb::Unflatten(): wrong type code\n");
1013 BParameterGroup::AllowsTypeCode(type_code code) const
1015 return code == TypeCode();
1020 BParameterGroup::Unflatten(type_code code, const void* buffer, ssize_t size)
1024 if (!AllowsTypeCode(code)) {
1025 ERROR("BParameterGroup::Unflatten() wrong type code\n");
1610 BParameter::AllowsTypeCode(type_code code) const
1612 return code == TypeCode();
1617 BParameter::Unflatten(type_code code, const void* buffer, ssize_t size)
1621 if (!AllowsTypeCode(code)) {
1622 ERROR("BParameter::Unflatten(): wrong type code\n");
1919 BContinuousParameter::Unflatten(type_code code, const void* buffer,
1927 if (!AllowsTypeCode(code)) {
1928 ERROR("BContinuousParameter::Unflatten wrong type code\n");
1944 status_t status = BParameter::Unflatten(code, buffer, size);
2167 BDiscreteParameter::Unflatten(type_code code, const void* buffer, ssize_t size)
2171 if (!AllowsTypeCode(code)) {
2172 ERROR("BDiscreteParameter::Unflatten(): bad type code\n");
2190 status_t status = BParameter::Unflatten(code, buffer, size);
2308 BTextParameter::Unflatten(type_code code, const void* buffer, ssize_t size)
2313 if (!AllowsTypeCode(code)) {
2314 ERROR("BTextParameter::Unflatten wrong type code\n");
2328 status_t status = BParameter::Unflatten(code, buffer, size);
2388 BNullParameter::Unflatten(type_code code, const void* buffer, ssize_t size)
2390 return BParameter::Unflatten(code, buffer, size);