Home
last modified time | relevance | path

Searched refs:blockIndex (Results 1 – 24 of 24) sorted by relevance

/ohos5.0/foundation/communication/nfc/interfaces/inner_api/tags/
H A Dmifare_classic_tag.cpp142 if (blockIndex >= MC_MAX_BLOCK_INDEX) { in ReadSingleBlock()
163 if (blockIndex >= MC_MAX_BLOCK_INDEX) { in WriteSingleBlock()
180 int MifareClassicTag::IncrementBlock(uint32_t blockIndex, int value) in IncrementBlock() argument
186 if (blockIndex >= MC_MAX_BLOCK_INDEX) { in IncrementBlock()
209 if (blockIndex >= MC_MAX_BLOCK_INDEX) { in DecrementBlock()
226 int MifareClassicTag::TransferToBlock(uint32_t blockIndex) in TransferToBlock() argument
232 if (blockIndex >= MC_MAX_BLOCK_INDEX) { in TransferToBlock()
244 int MifareClassicTag::RestoreFromBlock(uint32_t blockIndex) in RestoreFromBlock() argument
250 if (blockIndex >= MC_MAX_BLOCK_INDEX) { in RestoreFromBlock()
325 if (blockIndex < 0 || blockIndex >= MC_MAX_BLOCK_INDEX) { in GetSectorIndexFromBlock()
[all …]
H A Diso15693_tag.cpp54 if (flag >= ISO15693_MAX_FLAG_COUNT || (blockIndex >= ISO15693_MAX_BLOCK_INDEX)) { in ReadSingleBlock()
62 sendCommand = sendCommand + tagUid + char(blockIndex & 0xFF); in ReadSingleBlock()
72 if (flag >= ISO15693_MAX_FLAG_COUNT || (blockIndex >= ISO15693_MAX_BLOCK_INDEX)) { in WriteSingleBlock()
80 sendCommand = sendCommand + tagUid + char(blockIndex & 0xFF) + hexCmdData; in WriteSingleBlock()
86 int Iso15693Tag::LockSingleBlock(uint32_t flag, uint32_t blockIndex) in LockSingleBlock() argument
92 if (flag >= ISO15693_MAX_FLAG_COUNT || (blockIndex >= ISO15693_MAX_BLOCK_INDEX)) { in LockSingleBlock()
100 sendCommand = sendCommand + tagUid + char(blockIndex & 0xFF); in LockSingleBlock()
108 if (flag >= ISO15693_MAX_FLAG_COUNT || (blockIndex >= ISO15693_MAX_BLOCK_INDEX) || in ReadMultipleBlock()
112 "blockNum=%{public}d err", flag, blockIndex, blockNum); in ReadMultipleBlock()
119 sendCommand = sendCommand + tagUid + char(blockIndex & 0xFF) + char(blockNum & 0xFF); in ReadMultipleBlock()
[all …]
H A Dmifare_classic_tag.h99 int ReadSingleBlock(uint32_t blockIndex, std::string &hexRespData);
106 int WriteSingleBlock(uint32_t blockIndex, const std::string& hexData);
113 int IncrementBlock(uint32_t blockIndex, int value);
120 int DecrementBlock(uint32_t blockIndex, int value);
126 int TransferToBlock(uint32_t blockIndex);
132 int RestoreFromBlock(uint32_t blockIndex);
174 int GetSectorIndexFromBlock(int blockIndex) const;
H A Diso15693_tag.h53 int ReadSingleBlock(uint32_t flag, uint32_t blockIndex, std::string &hexRespData);
63 int WriteSingleBlock(uint32_t flag, uint32_t blockIndex, const std::string& hexCmdData);
72 int LockSingleBlock(uint32_t flag, uint32_t blockIndex);
83 …int ReadMultipleBlock(uint32_t flag, uint32_t blockIndex, uint32_t blockNum, std::string &hexRespD…
94 …int WriteMultipleBlock(uint32_t flag, uint32_t blockIndex, uint32_t blockNum, const std::string& h…
/ohos5.0/foundation/communication/nfc/test/fuzztest/tags_test/mifareclassictag/mifareclassictag_fuzzer/
H A Dmifareclassictag_fuzzer.cpp106 int blockIndex = ConvertToUint32(data); in FuzzReadSingleBlock() local
119 int blockIndex = ConvertToUint32(data); in FuzzWriteSingleBlock() local
134 uint32_t blockIndex = ConvertToUint32(data); in FuzzIncrementBlock() local
135 mifareClassisTag->IncrementBlock(blockIndex, value); in FuzzIncrementBlock()
147 uint32_t blockIndex = ConvertToUint32(data); in FuzzDecrementBlock() local
148 mifareClassisTag->DecrementBlock(blockIndex, value); in FuzzDecrementBlock()
159 uint32_t blockIndex = ConvertToUint32(data); in FuzzTransferToBlock() local
160 mifareClassisTag->TransferToBlock(blockIndex); in FuzzTransferToBlock()
171 uint32_t blockIndex = ConvertToUint32(data); in FuzzRestoreFromBlock() local
172 mifareClassisTag->RestoreFromBlock(blockIndex); in FuzzRestoreFromBlock()
[all …]
/ohos5.0/docs/zh-cn/release-notes/api-diff/v3.2-beta2/
H A Djs-apidiff-communicate.md17 | nfctech | MifareClassicTag | getSectorIndex(blockIndex: number): number; | 新增 |
24 …ech | MifareClassicTag | restoreFromBlock(blockIndex: number): Promise\<number>;<br>restoreFromBlo…
25 …tech | MifareClassicTag | transferToBlock(blockIndex: number): Promise\<number>;<br>transferToBloc…
26 … MifareClassicTag | decrementBlock(blockIndex: number, value: number): Promise\<number>;<br>decrem…
27 … MifareClassicTag | incrementBlock(blockIndex: number, value: number): Promise\<number>;<br>increm…
28 …ifareClassicTag | writeSingleBlock(blockIndex: number, data: string): Promise\<number>;<br>writeSi…
29 …tech | MifareClassicTag | readSingleBlock(blockIndex: number): Promise\<string>;<br>readSingleBloc…
/ohos5.0/docs/en/release-notes/api-diff/v3.2-beta2/
H A Djs-apidiff-communicate.md17 | nfctech | MifareClassicTag | getSectorIndex(blockIndex: number): number; | Added|
24 …ech | MifareClassicTag | restoreFromBlock(blockIndex: number): Promise\<number>;<br>restoreFromBlo…
25 …tech | MifareClassicTag | transferToBlock(blockIndex: number): Promise\<number>;<br>transferToBloc…
26 … MifareClassicTag | decrementBlock(blockIndex: number, value: number): Promise\<number>;<br>decrem…
27 … MifareClassicTag | incrementBlock(blockIndex: number, value: number): Promise\<number>;<br>increm…
28 …ifareClassicTag | writeSingleBlock(blockIndex: number, data: string): Promise\<number>;<br>writeSi…
29 …tech | MifareClassicTag | readSingleBlock(blockIndex: number): Promise\<string>;<br>readSingleBloc…
/ohos5.0/foundation/communication/nfc/frameworks/js/napi/tag/
H A Dnfc_napi_tag_mifare_classic.cpp215 int blockIndex = nfcMifareClassicTagPtr->GetBlockIndexFromSector(sectorIndex); in GetBlockIndex() local
216 napi_create_int32(env, blockIndex, &result); in GetBlockIndex()
242 int32_t blockIndex; in GetSectorIndex() local
243 ParseInt32(env, blockIndex, argv[ARGV_INDEX_0]); in GetSectorIndex()
249 int sectorIndex = nfcMifareClassicTagPtr->GetSectorIndexFromBlock(blockIndex); in GetSectorIndex()
414 napi_get_value_int32(env, params[ARGV_INDEX_0], &context->blockIndex); in ReadSingleBlock()
497 napi_get_value_int32(env, params[ARGV_INDEX_0], &context->blockIndex); in WriteSingleBlock()
581 napi_get_value_int32(env, params[ARGV_INDEX_0], &context->blockIndex); in IncrementBlock()
662 napi_get_value_int32(env, params[ARGV_INDEX_0], &context->blockIndex); in DecrementBlock()
722 napi_get_value_int32(env, params[ARGV_INDEX_0], &context->blockIndex); in TransferToBlock()
[all …]
H A Dnfc_napi_tag_mifare_classic.h53 int blockIndex; member
/ohos5.0/docs/zh-cn/application-dev/reference/apis-connectivity-kit/
H A Djs-apis-nfctech.md1167 | blockIndex | number | 是 | 要读取的块索引,从0开始。 |
1233 | blockIndex | number | 是 | 要读取的块索引,从0开始。 |
1296 | blockIndex | number | 是 | 要写入的块索引,从0开始。 |
1365 | blockIndex | number | 是 | 要写入的块索引,从0开始。 |
1500 | blockIndex | number | 是 | 要被运算的块索引,从0开始。 |
1565 | blockIndex | number | 是 | 要被运算的块索引,从0开始。 |
1699 | blockIndex | number | 是 | 被操作的块的索引,从0开始。 |
1829 | blockIndex | number | 是 | 被操作的块的索引,从0开始。|
2139 console.info("mifareClassic blockIndex: " + blockIndex);
2148 getSectorIndex(blockIndex: number): number
[all …]
/ohos5.0/base/startup/appspawn/standard/
H A Dappspawn_msgmgr.c68 uint32_t blockIndex = index / 32; // 32 max bit in int in CheckAppSpawnMsgFlag() local
70 APPSPAWN_CHECK(blockIndex < msgFlags->count, return 0, in CheckAppSpawnMsgFlag()
72 return CHECK_FLAGS_BY_INDEX(msgFlags->flags[blockIndex], bitIndex); in CheckAppSpawnMsgFlag()
77 uint32_t blockIndex = index / 32; // 32 max bit in int in SetSpawnMsgFlags() local
79 APPSPAWN_CHECK(blockIndex < msgFlags->count, return APPSPAWN_ARG_INVALID, in SetSpawnMsgFlags()
80 … "Invalid index %{public}u blockIndex %{public}u %{public}u ", index, blockIndex, msgFlags->count); in SetSpawnMsgFlags()
81 msgFlags->flags[blockIndex] |= (1 << bitIndex); in SetSpawnMsgFlags()
/ohos5.0/docs/en/application-dev/reference/apis-connectivity-kit/
H A Djs-apis-nfctech.md1204 let blockIndex = 1; // Change it as required.
1265 let blockIndex = 1; // Change it as required.
1334 let blockIndex = 1; // Change it as required.
1398 let blockIndex = 1; // Change it as required.
1470 let blockIndex = 1; // Change it as required.
1533 let blockIndex = 1; // Change it as required.
1685 transferToBlock(blockIndex: number): Promise\<void>
1815 restoreFromBlock(blockIndex: number): Promise\<void>
2139 console.info("mifareClassic blockIndex: " + blockIndex);
2148 getSectorIndex(blockIndex: number): number
[all …]
/ohos5.0/foundation/communication/nfc/test/unittest/services/tags_test/
H A Dmifare_classic_tag_test.cpp311 int blockIndex = MC_MAX_BLOCK_INDEX + 1; variable
312 sectorCount = mifareClassic->GetBlockCountInSector(blockIndex);
373 int blockIndex = MifareClassicTag::MC_ERROR_VALUE; variable
375 int sectorCount = mifareClassic->GetSectorIndexFromBlock(blockIndex);
397 … int blockIndex = MifareClassicTag::MC_SECTOR_COUNT_OF_SIZE_2K * MifareClassicTag::MC_BLOCK_COUNT; variable
399 int sectorCount = mifareClassic->GetSectorIndexFromBlock(blockIndex);
/ohos5.0/base/startup/appspawn/interfaces/innerkits/client/
H A Dappspawn_msg.c30 uint32_t blockIndex = index / 32; // 32 max bit in int in SetAppSpawnMsgFlags() local
32 if (blockIndex < msgFlags->count) { in SetAppSpawnMsgFlags()
33 msgFlags->flags[blockIndex] |= (1 << bitIndex); in SetAppSpawnMsgFlags()
/ohos5.0/docs/zh-cn/release-notes/api-diff/monthly-202210/
H A Djs-apidiff-communication.md536 |新增|NA|方法名 or 属性名:readSingleBlock<br>函数:readSingleBlock(blockIndex: number): Promise<number[]>;|nfc…
537 |新增|NA|方法名 or 属性名:readSingleBlock<br>函数:readSingleBlock(blockIndex: number, callback: AsyncCallback…
538 |新增|NA|方法名 or 属性名:writeSingleBlock<br>函数:writeSingleBlock(blockIndex: number, data: number[]): Prom…
540 |新增|NA|方法名 or 属性名:incrementBlock<br>函数:incrementBlock(blockIndex: number, value: number): Promise<v…
541 |新增|NA|方法名 or 属性名:incrementBlock<br>函数:incrementBlock(blockIndex: number, value: number, callback: …
542 |新增|NA|方法名 or 属性名:decrementBlock<br>函数:decrementBlock(blockIndex: number, value: number): Promise<v…
543 |新增|NA|方法名 or 属性名:decrementBlock<br>函数:decrementBlock(blockIndex: number, value: number, callback: …
544 |新增|NA|方法名 or 属性名:transferToBlock<br>函数:transferToBlock(blockIndex: number): Promise<void>;|nfctech…
545 |新增|NA|方法名 or 属性名:transferToBlock<br>函数:transferToBlock(blockIndex: number, callback: AsyncCallback…
546 |新增|NA|方法名 or 属性名:restoreFromBlock<br>函数:restoreFromBlock(blockIndex: number): Promise<void>;|nfcte…
[all …]
/ohos5.0/docs/zh-cn/release-notes/api-diff/v4.0-Release to v4.0-beta2/
H A Djs-apidiff-communication.md865 …ingleBlock(blockIndex: number, callback: AsyncCallback\<number[]>): void;<br>旧版本信息:|类名:MifareClass…
866 …lock(blockIndex: number, data: number[], callback: AsyncCallback\<void>): void;<br>旧版本信息:|类名:Mifar…
867 …Block(blockIndex: number, value: number, callback: AsyncCallback\<void>): void;<br>旧版本信息:|类名:Mifar…
868 …Block(blockIndex: number, value: number, callback: AsyncCallback\<void>): void;<br>旧版本信息:|类名:Mifar…
869 …nsferToBlock(blockIndex: number, callback: AsyncCallback\<void>): void;<br>旧版本信息:|类名:MifareClassic…
870 …oreFromBlock(blockIndex: number, callback: AsyncCallback\<void>): void;<br>旧版本信息:|类名:MifareClassic…
1039 …ingleBlock(blockIndex: number, callback: AsyncCallback\<number[]>): void;<br>旧版本信息:|类名:MifareClass…
1041 …Block(blockIndex: number, value: number, callback: AsyncCallback\<void>): void;<br>旧版本信息:|类名:Mifar…
1042 …Block(blockIndex: number, value: number, callback: AsyncCallback\<void>): void;<br>旧版本信息:|类名:Mifar…
1043 …nsferToBlock(blockIndex: number, callback: AsyncCallback\<void>): void;<br>旧版本信息:|类名:MifareClassic…
[all …]
/ohos5.0/docs/zh-cn/release-notes/api-diff/v3.2-beta4/
H A Djs-apidiff-communication.md547 |新增|NA|方法名 or 属性名:readSingleBlock<br>函数:readSingleBlock(blockIndex: number): Promise<number[]>;|nfc…
548 |新增|NA|方法名 or 属性名:readSingleBlock<br>函数:readSingleBlock(blockIndex: number, callback: AsyncCallback…
549 |新增|NA|方法名 or 属性名:writeSingleBlock<br>函数:writeSingleBlock(blockIndex: number, data: number[]): Prom…
551 |新增|NA|方法名 or 属性名:incrementBlock<br>函数:incrementBlock(blockIndex: number, value: number): Promise<v…
552 |新增|NA|方法名 or 属性名:incrementBlock<br>函数:incrementBlock(blockIndex: number, value: number, callback: …
553 |新增|NA|方法名 or 属性名:decrementBlock<br>函数:decrementBlock(blockIndex: number, value: number): Promise<v…
554 |新增|NA|方法名 or 属性名:decrementBlock<br>函数:decrementBlock(blockIndex: number, value: number, callback: …
555 |新增|NA|方法名 or 属性名:transferToBlock<br>函数:transferToBlock(blockIndex: number): Promise<void>;|nfctech…
556 |新增|NA|方法名 or 属性名:transferToBlock<br>函数:transferToBlock(blockIndex: number, callback: AsyncCallback…
557 |新增|NA|方法名 or 属性名:restoreFromBlock<br>函数:restoreFromBlock(blockIndex: number): Promise<void>;|nfcte…
[all …]
/ohos5.0/docs/en/release-notes/api-diff/v4.0-Release-vs-v4.0-beta2/
H A Djs-apidiff-communication.md865blockIndex: number, callback: AsyncCallback\<number[]>): void;<br>Old version information: |Class …
866blockIndex: number, data: number[], callback: AsyncCallback\<void>): void;<br>Old version informat…
867blockIndex: number, value: number, callback: AsyncCallback\<void>): void;<br>Old version informati…
868blockIndex: number, value: number, callback: AsyncCallback\<void>): void;<br>Old version informati…
869blockIndex: number, callback: AsyncCallback\<void>): void;<br>Old version information: |Class name…
870blockIndex: number, callback: AsyncCallback\<void>): void;<br>Old version information: |Class name…
1039blockIndex: number, callback: AsyncCallback\<number[]>): void;<br>Old version information: |Class …
1041blockIndex: number, value: number, callback: AsyncCallback\<void>): void;<br>Old version informati…
1042blockIndex: number, value: number, callback: AsyncCallback\<void>): void;<br>Old version informati…
1043blockIndex: number, callback: AsyncCallback\<void>): void;<br>Old version information: |Class name…
[all …]
/ohos5.0/docs/en/release-notes/api-diff/monthly-202210/
H A Djs-apidiff-communication.md536 |Added|NA|Method or attribute name: readSingleBlock<br>Function name: readSingleBlock(blockIndex: n…
537 |Added|NA|Method or attribute name: readSingleBlock<br>Function name: readSingleBlock(blockIndex: n…
538 |Added|NA|Method or attribute name: writeSingleBlock<br>Function name: writeSingleBlock(blockIndex:…
540 |Added|NA|Method or attribute name: incrementBlock<br>Function name: incrementBlock(blockIndex: num…
541 |Added|NA|Method or attribute name: incrementBlock<br>Function name: incrementBlock(blockIndex: num…
542 |Added|NA|Method or attribute name: decrementBlock<br>Function name: decrementBlock(blockIndex: num…
543 |Added|NA|Method or attribute name: decrementBlock<br>Function name: decrementBlock(blockIndex: num…
544 |Added|NA|Method or attribute name: transferToBlock<br>Function name: transferToBlock(blockIndex: n…
545 |Added|NA|Method or attribute name: transferToBlock<br>Function name: transferToBlock(blockIndex: n…
546 |Added|NA|Method or attribute name: restoreFromBlock<br>Function name: restoreFromBlock(blockIndex:…
[all …]
/ohos5.0/docs/en/release-notes/api-diff/v3.2-beta4/
H A Djs-apidiff-communication.md547 |Added|NA|Method or attribute name: readSingleBlock<br>Function name: readSingleBlock(blockIndex: n…
548 |Added|NA|Method or attribute name: readSingleBlock<br>Function name: readSingleBlock(blockIndex: n…
549 |Added|NA|Method or attribute name: writeSingleBlock<br>Function name: writeSingleBlock(blockIndex:…
551 |Added|NA|Method or attribute name: incrementBlock<br>Function name: incrementBlock(blockIndex: num…
552 |Added|NA|Method or attribute name: incrementBlock<br>Function name: incrementBlock(blockIndex: num…
553 |Added|NA|Method or attribute name: decrementBlock<br>Function name: decrementBlock(blockIndex: num…
554 |Added|NA|Method or attribute name: decrementBlock<br>Function name: decrementBlock(blockIndex: num…
555 |Added|NA|Method or attribute name: transferToBlock<br>Function name: transferToBlock(blockIndex: n…
556 |Added|NA|Method or attribute name: transferToBlock<br>Function name: transferToBlock(blockIndex: n…
557 |Added|NA|Method or attribute name: restoreFromBlock<br>Function name: restoreFromBlock(blockIndex:…
[all …]
/ohos5.0/docs/zh-cn/release-notes/api-diff/v4.0-Release to v3.2-Release/
H A Djs-apidiff-communication.md1188 …ingleBlock(blockIndex: number, callback: AsyncCallback\<number[]>): void;<br>旧版本信息:|类名:MifareClass…
1189 …lock(blockIndex: number, data: number[], callback: AsyncCallback\<void>): void;<br>旧版本信息:|类名:Mifar…
1190 …Block(blockIndex: number, value: number, callback: AsyncCallback\<void>): void;<br>旧版本信息:|类名:Mifar…
1191 …Block(blockIndex: number, value: number, callback: AsyncCallback\<void>): void;<br>旧版本信息:|类名:Mifar…
1192 …nsferToBlock(blockIndex: number, callback: AsyncCallback\<void>): void;<br>旧版本信息:|类名:MifareClassic…
1193 …oreFromBlock(blockIndex: number, callback: AsyncCallback\<void>): void;<br>旧版本信息:|类名:MifareClassic…
1565 …ingleBlock(blockIndex: number, callback: AsyncCallback\<number[]>): void;<br>旧版本信息:|类名:MifareClass…
1567 …Block(blockIndex: number, value: number, callback: AsyncCallback\<void>): void;<br>旧版本信息:|类名:Mifar…
1568 …Block(blockIndex: number, value: number, callback: AsyncCallback\<void>): void;<br>旧版本信息:|类名:Mifar…
1569 …nsferToBlock(blockIndex: number, callback: AsyncCallback\<void>): void;<br>旧版本信息:|类名:MifareClassic…
[all …]
/ohos5.0/docs/zh-cn/release-notes/api-diff/v3.2-Release/
H A Djs-apidiff-communication.md928 |新增|NA|类名:MifareClassicTag;<br>方法or属性:readSingleBlock(blockIndex: number): Promise\<number[]>;|nfct…
929 |新增|NA|类名:MifareClassicTag;<br>方法or属性:readSingleBlock(blockIndex: number, callback: AsyncCallback\<…
930 |新增|NA|类名:MifareClassicTag;<br>方法or属性:writeSingleBlock(blockIndex: number, data: number[]): Promise…
932 |新增|NA|类名:MifareClassicTag;<br>方法or属性:incrementBlock(blockIndex: number, value: number): Promise\<v…
933 |新增|NA|类名:MifareClassicTag;<br>方法or属性:incrementBlock(blockIndex: number, value: number, callback: A…
934 |新增|NA|类名:MifareClassicTag;<br>方法or属性:decrementBlock(blockIndex: number, value: number): Promise\<v…
936 |新增|NA|类名:MifareClassicTag;<br>方法or属性:transferToBlock(blockIndex: number): Promise\<void>;|nfctech.…
937 |新增|NA|类名:MifareClassicTag;<br>方法or属性:transferToBlock(blockIndex: number, callback: AsyncCallback\<…
938 |新增|NA|类名:MifareClassicTag;<br>方法or属性:restoreFromBlock(blockIndex: number): Promise\<void>;|nfctech…
939 |新增|NA|类名:MifareClassicTag;<br>方法or属性:restoreFromBlock(blockIndex: number, callback: AsyncCallback\…
[all …]
/ohos5.0/docs/en/release-notes/api-diff/v4.0-Release-vs-v3.2-Release/
H A Djs-apidiff-communication.md1188blockIndex: number, callback: AsyncCallback\<number[]>): void;<br>Old version information: |Class …
1189blockIndex: number, data: number[], callback: AsyncCallback\<void>): void;<br>Old version informat…
1190blockIndex: number, value: number, callback: AsyncCallback\<void>): void;<br>Old version informati…
1191blockIndex: number, value: number, callback: AsyncCallback\<void>): void;<br>Old version informati…
1192blockIndex: number, callback: AsyncCallback\<void>): void;<br>Old version information: |Class name…
1193blockIndex: number, callback: AsyncCallback\<void>): void;<br>Old version information: |Class name…
1565blockIndex: number, callback: AsyncCallback\<number[]>): void;<br>Old version information: |Class …
1567blockIndex: number, value: number, callback: AsyncCallback\<void>): void;<br>Old version informati…
1568blockIndex: number, value: number, callback: AsyncCallback\<void>): void;<br>Old version informati…
1569blockIndex: number, callback: AsyncCallback\<void>): void;<br>Old version information: |Class name…
[all …]
/ohos5.0/docs/en/release-notes/api-diff/v3.2-Release/
H A Djs-apidiff-communication.md928 |Added|NA|Class name: MifareClassicTag;<br>Method or attribute name: readSingleBlock(blockIndex: nu…
929 |Added|NA|Class name: MifareClassicTag;<br>Method or attribute name: readSingleBlock(blockIndex: nu…
930 |Added|NA|Class name: MifareClassicTag;<br>Method or attribute name: writeSingleBlock(blockIndex: n…
932 |Added|NA|Class name: MifareClassicTag;<br>Method or attribute name: incrementBlock(blockIndex: num…
933 |Added|NA|Class name: MifareClassicTag;<br>Method or attribute name: incrementBlock(blockIndex: num…
934 |Added|NA|Class name: MifareClassicTag;<br>Method or attribute name: decrementBlock(blockIndex: num…
936 |Added|NA|Class name: MifareClassicTag;<br>Method or attribute name: transferToBlock(blockIndex: nu…
937 |Added|NA|Class name: MifareClassicTag;<br>Method or attribute name: transferToBlock(blockIndex: nu…
938 |Added|NA|Class name: MifareClassicTag;<br>Method or attribute name: restoreFromBlock(blockIndex: n…
939 |Added|NA|Class name: MifareClassicTag;<br>Method or attribute name: restoreFromBlock(blockIndex: n…
[all …]