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

  /bootable/recovery/applypatch/
main.c 51 char*** sha1s, Value*** patches, int* num_patches) {
52 *num_patches = argc;
53 *sha1s = malloc(*num_patches * sizeof(char*));
54 *patches = malloc(*num_patches * sizeof(Value*));
55 memset(*patches, 0, *num_patches * sizeof(Value*));
60 for (i = 0; i < *num_patches; ++i) {
90 for (i = 0; i < *num_patches; ++i) {
131 int num_patches; local
132 if (ParsePatchArgs(argc-5, argv+5, &sha1s, &patches, &num_patches) != 0) {
138 num_patches, sha1s, patches, bonus)
    [all...]
  /frameworks/av/media/libmedia/
IAudioFlinger.cpp 855 virtual status_t listAudioPatches(unsigned int *num_patches,
858 if (num_patches == NULL || *num_patches == 0 || patches == NULL) {
863 data.writeInt32(*num_patches);
869 *num_patches = (unsigned int)reply.readInt32();
870 reply.read(patches, *num_patches * sizeof(struct audio_patch));
1339 unsigned int num_patches = data.readInt32(); local
    [all...]

Completed in 241 milliseconds