/hardware/nxp/secure_element/snxxx/libese-spi/p73/utils/ |
D | ese_config.cpp | 59 bool EseConfig::hasKey(const std::string& key) { in hasKey() function in EseConfig 60 return getInstance().config_.hasKey(key); in hasKey() 69 if (hasKey(key)) return getString(key); in getString() 79 if (hasKey(key)) return getUnsigned(key); in getUnsigned()
|
D | config.cpp | 135 CHECK(!hasKey(key)); in parseFromString() 142 bool ConfigFile::hasKey(const std::string& key) { in hasKey() function in ConfigFile
|
D | ese_config.h | 55 static bool hasKey(const std::string& key);
|
D | config.h | 65 bool hasKey(const std::string& key);
|
/hardware/nxp/secure_element/pn8x/libese-spi/p73/utils/ |
D | ese_config.cpp | 59 bool EseConfig::hasKey(const std::string& key) { in hasKey() function in EseConfig 60 return getInstance().config_.hasKey(key); in hasKey() 69 if (hasKey(key)) return getString(key); in getString() 79 if (hasKey(key)) return getUnsigned(key); in getUnsigned()
|
D | ese_config.h | 41 static bool hasKey(const std::string& key);
|
D | config.cpp | 116 CHECK(!hasKey(key)); in parseFromString() 123 bool ConfigFile::hasKey(const std::string& key) { in hasKey() function in ConfigFile
|
D | config.h | 46 bool hasKey(const std::string& key);
|
/hardware/st/secure_element/ese-spi-driver/utils-lib/ |
D | ese_config.cc | 61 bool EseConfig::hasKey(const std::string& key) { in hasKey() function in EseConfig 62 return getInstance().config_.hasKey(key); in hasKey() 71 if (hasKey(key)) return getString(key); in getString() 81 if (hasKey(key)) return getUnsigned(key); in getUnsigned()
|
D | ese_config.h | 36 static bool hasKey(const std::string& key);
|
D | config.cc | 111 CHECK(!hasKey(key)); in parseFromString() 118 bool ConfigFile::hasKey(const std::string& key) { in hasKey() function in ConfigFile
|
D | config.h | 45 bool hasKey(const std::string& key);
|
/hardware/libhardware/modules/input/evdev/ |
D | InputDevice.cpp | 123 if (mDeviceNode->hasKey(BTN_MOUSE) in createMappers() 141 if (mDeviceNode->hasKey(BTN_TOUCH) || !haveGamepadButtons) { in createMappers() 146 } else if (mDeviceNode->hasKey(BTN_TOUCH) in createMappers() 152 } else if ((mDeviceNode->hasAbsoluteAxis(ABS_PRESSURE) || mDeviceNode->hasKey(BTN_TOUCH)) in createMappers()
|
D | MouseInputMapper.cpp | 79 if (devNode->hasKey(codeMap[i].scancode)) { in configureInputReport()
|
D | InputHub.h | 79 virtual bool hasKey(int32_t key) const = 0;
|
D | InputHub.cpp | 91 virtual bool hasKey(int32_t key) const override; 259 bool EvdevDeviceNode::hasKey(int32_t key) const { in hasKey() function in android::EvdevDeviceNode
|
/hardware/nxp/secure_element/snxxx/libese-spi/p73/lib/ |
D | phNxpEse_Api.cpp | 162 if (EseConfig::hasKey(NAME_RNACK_RETRY_DELAY)) { in phNxpEse_init() 170 if (EseConfig::hasKey(NAME_NXP_MAX_RNACK_RETRY)) { in phNxpEse_init() 179 if (EseConfig::hasKey(NAME_NXP_SPI_INTF_RST_ENABLE)) { in phNxpEse_init() 194 if (EseConfig::hasKey(NAME_NXP_WTX_NTF_COUNT)) { in phNxpEse_init() 241 (EseConfig::hasKey(NAME_NXP_ESE_IFSD_VALUE))) { in phNxpEse_init() 253 (EseConfig::hasKey(NAME_NXP_EUICC_IFSD_VALUE))) { in phNxpEse_init() 310 if (EseConfig::hasKey(NAME_NXP_OS_VERSION)) { in phNxpEse_open() 320 if (EseConfig::hasKey(NAME_NXP_TP_MEASUREMENT)) { in phNxpEse_open() 331 if (EseConfig::hasKey(NAME_NXP_POWER_SCHEME)) { in phNxpEse_open() 346 if (EseConfig::hasKey(NAME_NXP_NAD_POLL_RETRY_TIME)) { in phNxpEse_open() [all …]
|
/hardware/nxp/secure_element/pn8x/libese-spi/p73/lib/ |
D | phNxpEse_Api.cpp | 100 if (EseConfig::hasKey(NAME_NXP_WTX_COUNT_VALUE)) { in phNxpEse_init() 108 if (EseConfig::hasKey(NAME_NXP_MAX_RNACK_RETRY)) { in phNxpEse_init() 117 if (EseConfig::hasKey(NAME_NXP_SPI_INTF_RST_ENABLE)) { in phNxpEse_init() 186 if (EseConfig::hasKey(NAME_NXP_TP_MEASUREMENT)) { in phNxpEse_open() 196 if (EseConfig::hasKey(NAME_NXP_POWER_SCHEME)) { in phNxpEse_open() 363 if (EseConfig::hasKey(NAME_NXP_POWER_SCHEME)) { in phNxpEse_openPrioSession() 373 if (EseConfig::hasKey(NAME_NXP_TP_MEASUREMENT)) { in phNxpEse_openPrioSession() 702 if (EseConfig::hasKey(NAME_NXP_POWER_SCHEME)) { in phNxpEse_resetJcopUpdate()
|
/hardware/nxp/secure_element/snxxx/libese-spi/p73/pal/spi/ |
D | EseSpiTransport.cpp | 191 if (EseConfig::hasKey(NAME_NXP_SOF_WRITE)) { in OpenAndConfigure() 196 if (EseConfig::hasKey(NAME_NXP_SPI_WRITE_TIMEOUT)) { in OpenAndConfigure() 203 if (EseConfig::hasKey(NAME_NXP_P61_COLD_RESET_INTERFACE)) { in OpenAndConfigure()
|
/hardware/nxp/secure_element/pn8x/libese-spi/p73/pal/spi/ |
D | phNxpEsePal_spi.cpp | 134 if (EseConfig::hasKey(NAME_NXP_SOF_WRITE)) { in phPalEse_spi_open_and_configure() 140 if (EseConfig::hasKey(NAME_NXP_SPI_WRITE_TIMEOUT)) { in phPalEse_spi_open_and_configure()
|
/hardware/libhardware/tests/input/evdev/ |
D | InputMocks.h | 55 virtual bool hasKey(int32_t key) const override { return mKeys.count(key); } in hasKey() function
|