HomeSort by relevance Sort by last modified time
    Searched defs:cmdCode (Results 1 - 4 of 4) sorted by null

  /frameworks/av/media/libaudioclient/
IEffectClient.cpp 59 void commandExecuted(uint32_t cmdCode,
68 data.writeInt32(cmdCode);
115 uint32_t cmdCode = data.readInt32();
128 commandExecuted(cmdCode, cmdSize, cmd, replySize, resp);
IEffect.cpp 65 status_t command(uint32_t cmdCode,
74 data.writeInt32(cmdCode);
158 uint32_t cmdCode = data.readInt32();
189 status_t status = command(cmdCode, cmdSize, cmd, &replySz, resp);
  /cts/tests/tests/security/src/android/security/cts/
EffectBundleTest.java 260 int cmdCode = EFFECT_CMD_SET_PARAM;
271 byte[].class).invoke(af, cmdCode, command, reply);
303 int cmdCode = 8; // EFFECT_CMD_GET_PARAM
314 byte[].class).invoke(af, cmdCode, command, reply);
  /external/brotli/java/org/brotli/dec/
Decode.java 635 int cmdCode = readSymbol(state.hGroup1.codes, state.treeCommandOffset, br);
636 int rangeIdx = cmdCode >>> 6;
642 int insertCode = Prefix.INSERT_RANGE_LUT[rangeIdx] + ((cmdCode >>> 3) & 7);
643 int copyCode = Prefix.COPY_RANGE_LUT[rangeIdx] + (cmdCode & 7);

Completed in 811 milliseconds