Lines Matching refs:idsCopy
385 uint32_t* idsCopy = new uint32_t[count]; in removeGeofencesCommand() local
386 if (nullptr == idsCopy) { in removeGeofencesCommand()
390 COPY_IF_NOT_NULL(idsCopy, ids, count); in removeGeofencesCommand()
391 sendMsg(new MsgRemoveGeofences(*this, *mLocApi, client, count, idsCopy)); in removeGeofencesCommand()
460 uint32_t* idsCopy = new uint32_t[count]; in pauseGeofencesCommand() local
461 if (nullptr == idsCopy) { in pauseGeofencesCommand()
465 COPY_IF_NOT_NULL(idsCopy, ids, count); in pauseGeofencesCommand()
466 sendMsg(new MsgPauseGeofences(*this, *mLocApi, client, count, idsCopy)); in pauseGeofencesCommand()
536 uint32_t* idsCopy = new uint32_t[count]; in resumeGeofencesCommand() local
537 if (nullptr == idsCopy) { in resumeGeofencesCommand()
541 COPY_IF_NOT_NULL(idsCopy, ids, count); in resumeGeofencesCommand()
542 sendMsg(new MsgResumeGeofences(*this, *mLocApi, client, count, idsCopy)); in resumeGeofencesCommand()
623 uint32_t* idsCopy = new uint32_t[count]; in modifyGeofencesCommand() local
624 if (nullptr == idsCopy) { in modifyGeofencesCommand()
628 COPY_IF_NOT_NULL(idsCopy, ids, count); in modifyGeofencesCommand()
641 sendMsg(new MsgModifyGeofences(*this, *mLocApi, client, count, idsCopy, optionsCopy)); in modifyGeofencesCommand()