Lines Matching defs:index

86 									int32 index, const void** data,
89 inline status_t FindBool(const char* name, int32 index,
92 inline status_t FindInt8(const char* name, int32 index,
95 inline status_t FindInt16(const char* name, int32 index,
98 inline status_t FindInt32(const char* name, int32 index,
101 inline status_t FindInt64(const char* name, int32 index,
105 inline status_t FindPointer(const char* name, int32 index,
109 inline status_t FindString(const char* name, int32 index,
114 inline bool GetBool(const char* name, int32 index,
118 inline int8 GetInt8(const char* name, int32 index,
122 inline int16 GetInt16(const char* name, int32 index,
126 inline int32 GetInt32(const char* name, int32 index,
130 inline int64 GetInt64(const char* name, int32 index,
134 inline void* GetPointer(const char* name, int32 index,
138 inline const char* GetString(const char* name, int32 index,
229 int32 index, T* value) const;
233 int32 index, const T& defaultValue) const;
264 const void* ElementAt(int32 index,
348 KMessage::_FindType(const char* name, type_code type, int32 index,
353 status_t error = FindData(name, type, index, &data, &size);
374 KMessage::FindBool(const char* name, int32 index, bool* value) const
376 return _FindType(name, B_BOOL_TYPE, index, value);
388 KMessage::FindInt8(const char* name, int32 index, int8* value) const
390 return _FindType(name, B_INT8_TYPE, index, value);
402 KMessage::FindInt16(const char* name, int32 index, int16* value) const
404 return _FindType(name, B_INT16_TYPE, index, value);
416 KMessage::FindInt32(const char* name, int32 index, int32* value) const
418 return _FindType(name, B_INT32_TYPE, index, value);
430 KMessage::FindInt64(const char* name, int32 index, int64* value) const
432 return _FindType(name, B_INT64_TYPE, index, value);
444 KMessage::FindPointer(const char* name, int32 index, void** value) const
446 return _FindType(name, B_POINTER_TYPE, index, value);
458 KMessage::FindString(const char* name, int32 index, const char** value) const
461 return FindData(name, B_STRING_TYPE, index, (const void**)value, &size);
467 KMessage::_GetType(const char* name, type_code type, int32 index,
471 if (_FindType(name, type, index, &value) == B_OK)
485 KMessage::GetBool(const char* name, int32 index, bool defaultValue) const
487 return _GetType(name, B_BOOL_TYPE, index, defaultValue);
499 KMessage::GetInt8(const char* name, int32 index, int8 defaultValue) const
501 return _GetType(name, B_INT8_TYPE, index, defaultValue);
513 KMessage::GetInt16(const char* name, int32 index, int16 defaultValue) const
515 return _GetType(name, B_INT16_TYPE, index, defaultValue);
527 KMessage::GetInt32(const char* name, int32 index, int32 defaultValue) const
529 return _GetType(name, B_INT32_TYPE, index, defaultValue);
541 KMessage::GetInt64(const char* name, int32 index, int64 defaultValue) const
543 return _GetType(name, B_INT64_TYPE, index, defaultValue);
555 KMessage::GetPointer(const char* name, int32 index,
558 return const_cast<void*>(_GetType(name, B_POINTER_TYPE, index,
564 KMessage::GetString(const char* name, int32 index,
570 if (FindData(name, B_STRING_TYPE, index, (const void**)&value, &size)