OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:match_rule
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/dbus/
mock_bus.h
54
MOCK_METHOD2(AddMatch, void(const std::string&
match_rule
,
56
MOCK_METHOD2(RemoveMatch, bool(const std::string&
match_rule
,
object_proxy.cc
392
// Add a
match_rule
listening NameOwnerChanged for the well-known name
426
const std::string
match_rule
=
local
430
return AddMatchRuleWithCallback(
match_rule
,
590
const std::string&
match_rule
,
593
DCHECK(!
match_rule
.empty());
597
if (match_rules_.find(
match_rule
) == match_rules_.end()) {
599
bus_->AddMatch(
match_rule
, error.get());
601
LOG(ERROR) << "Failed to add match rule \"" <<
match_rule
<< "\". Got "
606
match_rules_.insert(
match_rule
);
619
const std::string&
match_rule
,
[
all
...]
object_proxy.h
260
bool AddMatchRuleWithCallback(const std::string&
match_rule
,
265
bool AddMatchRuleWithoutCallback(const std::string&
match_rule
,
bus.cc
691
void Bus::AddMatch(const std::string&
match_rule
, DBusError* error) {
696
match_rules_added_.find(
match_rule
);
701
VLOG(1) << "Match rule already exists: " <<
match_rule
;
705
dbus_bus_add_match(connection_,
match_rule
.c_str(), error);
706
match_rules_added_[
match_rule
] = 1;
709
bool Bus::RemoveMatch(const std::string&
match_rule
, DBusError* error) {
714
match_rules_added_.find(
match_rule
);
716
LOG(ERROR) << "Requested to remove an unknown match rule: " <<
match_rule
;
723
dbus_bus_remove_match(connection_,
match_rule
.c_str(), error);
724
match_rules_added_.erase(
match_rule
);
[
all
...]
bus.h
506
virtual void AddMatch(const std::string&
match_rule
, DBusError* error);
513
virtual bool RemoveMatch(const std::string&
match_rule
, DBusError* error);
Completed in 1775 milliseconds