Home
last modified time | relevance | path

Searched refs:rep (Results 1 – 6 of 6) sorted by relevance

/base/location/services/location_geocode/geocode/include/
Dgeo_convert_skeleton.h34 virtual int IsGeoConvertAvailable(MessageParcel &rep) = 0;
35 virtual int GetAddressByCoordinate(MessageParcel &data, MessageParcel &rep) = 0;
36 virtual int GetAddressByLocationName(MessageParcel &data, MessageParcel &rep) = 0;
Dgeo_convert_service.h68 int RemoteToService(uint32_t code, MessageParcel &data, MessageParcel &rep);
/base/msdp/device_status/tools/vdev/include/
Dvirtual_device.h49 bool SupportRep(size_t rep) const;
127 inline bool VirtualDevice::SupportRep(size_t rep) const in SupportRep() argument
129 return ((inputDev_ != nullptr) && inputDev_->SupportRep(rep)); in SupportRep()
Dv_input_device.h80 bool SupportRep(size_t rep) const;
165 inline bool VInputDevice::SupportRep(size_t rep) const in SupportRep() argument
167 return (TestBit(EV_REP, evBitmask_) && TestBit(rep, repBitmask_)); in SupportRep()
/base/msdp/device_status/tools/vdev/src/
Dvirtual_device_builder.cpp542 for (uint32_t rep = REP_DELAY; rep < REP_MAX; ++rep) { in CopyEvents() local
543 if (vDev->SupportRep(rep)) { in CopyEvents()
544 repeats_.push_back(rep); in CopyEvents()
/base/msdp/device_status/rust/ipc/service/src/
Dlib.rs150 let rep = { in send_request() localVariable
162 self.transfer_data(&rep, reply) in send_request()