Home | History | Annotate | Download | only in dbus

Lines Matching defs:BOOL

43 CHROME_DBUS_EXPORT bool IsDBusTypeUnixFdSupported();
71 BOOL = DBUS_TYPE_BOOLEAN,
99 bool SetDestination(const std::string& destination);
100 bool SetPath(const ObjectPath& path);
101 bool SetInterface(const std::string& interface);
102 bool SetMember(const std::string& member);
103 bool SetErrorName(const std::string& error_name);
104 bool SetSender(const std::string& sender);
278 void AppendBool(bool value);
339 bool AppendProtoAsArrayOfBytes(const google::protobuf::MessageLite& protobuf);
346 void AppendVariantOfBool(bool value);
366 bool container_is_open_;
388 bool HasMoreData();
393 bool PopByte(uint8_t* value);
394 bool PopBool(bool* value);
395 bool PopInt16(int16_t* value);
396 bool PopUint16(uint16_t* value);
397 bool PopInt32(int32_t* value);
398 bool PopUint32(uint32_t* value);
399 bool PopInt64(int64_t* value);
400 bool PopUint64(uint64_t* value);
401 bool PopDouble(double* value);
402 bool PopString(std::string* value);
403 bool PopObjectPath(ObjectPath* value);
404 bool PopFileDescriptor(base::ScopedFD* value);
410 bool PopArray(MessageReader* sub_reader);
411 bool PopStruct(MessageReader* sub_reader);
412 bool PopDictEntry(MessageReader* sub_reader);
413 bool PopVariant(MessageReader* sub_reader);
424 bool PopArrayOfBytes(const uint8_t** bytes, size_t* length);
427 bool PopArrayOfDoubles(const double** doubles, size_t* length);
436 bool PopArrayOfStrings(std::vector<std::string>* strings);
445 bool PopArrayOfObjectPaths(std::vector<ObjectPath>* object_paths);
453 bool PopArrayOfBytesAsProto(google::protobuf::MessageLite* protobuf);
462 bool PopVariantOfByte(uint8_t* value);
463 bool PopVariantOfBool(bool* value);
464 bool PopVariantOfInt16(int16_t* value);
465 bool PopVariantOfUint16(uint16_t* value);
466 bool PopVariantOfInt32(int32_t* value);
467 bool PopVariantOfUint32(uint32_t* value);
468 bool PopVariantOfInt64(int64_t* value);
469 bool PopVariantOfUint64(uint64_t* value);
470 bool PopVariantOfDouble(double* value);
471 bool PopVariantOfString(std::string* value);
472 bool PopVariantOfObjectPath(ObjectPath* value);
487 bool CheckDataType(int dbus_type);
490 bool PopBasic(int dbus_type, void *value);
493 bool PopContainer(int dbus_type, MessageReader* sub_reader);
496 bool PopVariantOfBasic(int dbus_type, void* value);