Lines Matching defs:intSave
28 VOID LOS_TaskLockSave(UINT32 *intSave)
30 *intSave = LOS_IntLock();
34 VOID LOS_TaskUnlockRestore(UINT32 intSave)
39 LOS_IntRestore(intSave);
45 LOS_IntRestore(intSave);
50 #define LOS_SpinLockSave(lock, intSave) LOS_TaskLockSave(intSave)
51 #define LOS_SpinUnlockRestore(lock, intSave) LOS_TaskUnlockRestore(intSave)
230 uint32_t intSave;
232 LOS_SpinLockSave(&nic->recvLock, &intSave);
236 LOS_SpinUnlockRestore(&nic->recvLock, intSave);
320 uint32_t intSave;
324 LOS_SpinLockSave(&nic->transLock, &intSave);
326 LOS_SpinUnlockRestore(&nic->transLock, intSave);
339 LOS_SpinUnlockRestore(&nic->transLock, intSave);