Home
last modified time | relevance | path

Searched refs:statusPtr (Results 1 – 25 of 83) sorted by relevance

1234

/dports/net-im/psi/psi-1.5/src/
H A Dpsiiconset.h58 PsiIcon *statusPtr(int);
59 PsiIcon *statusPtr(const XMPP::Status &);
66 PsiIcon *statusPtr(const XMPP::Jid &, int);
67 PsiIcon *statusPtr(const XMPP::Jid &, const XMPP::Status &);
79 PsiIcon *statusPtr(UserListItem *);
H A Dpsiiconset.cpp780 PsiIcon *PsiIconset::statusPtr(int s) in statusPtr() function in PsiIconset
787 PsiIcon *icon = statusPtr(s); in status()
793 PsiIcon *PsiIconset::statusPtr(const XMPP::Status &s) in statusPtr() function in PsiIconset
795 return statusPtr(makeSTATUS(s)); in statusPtr()
818 icon = statusPtr(s); in transportStatusPtr()
851 return statusPtr(jid, makeSTATUS(s)); in statusPtr()
856 PsiIcon *icon = statusPtr(jid, s); in status()
864 PsiIcon *icon = statusPtr(jid, s); in status()
870 PsiIcon *PsiIconset::statusPtr(UserListItem *u) in statusPtr() function in PsiIconset
893 return statusPtr(u->jid(), s); in statusPtr()
[all …]
/dports/sysutils/LPRng/lprng-3.8.C/src/common/
H A Dchild.c46 pid_t plp_waitpid (pid_t pid, plp_status_t *statusPtr, int options) in plp_waitpid() argument
49 memset(statusPtr,0,sizeof(statusPtr[0])); in plp_waitpid()
51 report = waitpid(pid, statusPtr, options ); in plp_waitpid()
53 Decode_status( statusPtr ) ); in plp_waitpid()
/dports/lang/tcl86/tcl8.6.12/compat/
H A Dwaitpid.c68 int *statusPtr, /* Where to store wait status for the in waitpid() argument
97 *statusPtr = *((int *) &waitPtr->status); in waitpid()
142 *statusPtr = *((int *) &status); in waitpid()
/dports/lang/tcl85/tcl8.5.19/compat/
H A Dwaitpid.c68 int *statusPtr, /* Where to store wait status for the in waitpid() argument
97 *statusPtr = *((int *) &waitPtr->status); in waitpid()
142 *statusPtr = *((int *) &status); in waitpid()
/dports/lang/tcl87/tcl8.7a5/compat/
H A Dwaitpid.c68 int *statusPtr, /* Where to store wait status for the in waitpid() argument
97 *statusPtr = *((int *) &waitPtr->status); in waitpid()
142 *statusPtr = *((int *) &status); in waitpid()
/dports/www/wt/wt-4.6.1/examples/widgetgallery/examples/
H A DPopup.cpp20 auto statusPtr = std::make_unique<Wt::WText>(); variable
21 auto status = statusPtr.get();
111 container->addWidget(std::move(statusPtr));
/dports/textproc/hs-pandoc-crossref/pandoc-crossref-0.3.12.0/_cabal_deps/hslua-1.3.0.1/src/Foreign/Lua/Core/
H A DError.hs120 (result, status) <- Lua.liftLua $ \l -> alloca $ \statusPtr -> do
121 result <- f l statusPtr
122 status <- Lua.toStatus <$> F.peek statusPtr
/dports/textproc/hs-pandoc/pandoc-2.14.2/_cabal_deps/hslua-1.3.0.1/src/Foreign/Lua/Core/
H A DError.hs120 (result, status) <- Lua.liftLua $ \l -> alloca $ \statusPtr -> do
121 result <- f l statusPtr
122 status <- Lua.toStatus <$> F.peek statusPtr
/dports/textproc/gitlab-elasticsearch-indexer/gitlab-elasticsearch-indexer-ef1440548effec15831eda2d246dacc43233cefb/vendor/gitlab.com/lupine/icu/
H A Ddetect.go50 statusPtr := unsafe.Pointer(&status)
52 det.ptr = C.ucsdet_open((*C.UErrorCode)(statusPtr))
/dports/emulators/ppsspp-qt5/ppsspp-1.12.3/Core/HLE/
H A DsceKernel.cpp646 static int sceKernelReferSystemStatus(u32 statusPtr) { in sceKernelReferSystemStatus() argument
647 DEBUG_LOG(SCEKERNEL, "sceKernelReferSystemStatus(%08x)", statusPtr); in sceKernelReferSystemStatus()
648 if (Memory::IsValidAddress(statusPtr)) { in sceKernelReferSystemStatus()
653 Memory::WriteStruct(statusPtr, &status); in sceKernelReferSystemStatus()
681 static u32 sceKernelReferThreadProfiler(u32 statusPtr) { in sceKernelReferThreadProfiler() argument
695 static int sceKernelReferGlobalProfiler(u32 statusPtr) { in sceKernelReferGlobalProfiler() argument
696 ERROR_LOG(SCEKERNEL, "UNIMPL sceKernelReferGlobalProfiler(%08x)", statusPtr); in sceKernelReferGlobalProfiler()
H A DsceKernelEventFlag.cpp517 u32 sceKernelReferEventFlagStatus(SceUID id, u32 statusPtr) { in sceKernelReferEventFlagStatus() argument
521 if (!Memory::IsValidAddress(statusPtr)) in sceKernelReferEventFlagStatus()
527 if (Memory::Read_U32(statusPtr) != 0) in sceKernelReferEventFlagStatus()
528 Memory::WriteStruct(statusPtr, &e->nef); in sceKernelReferEventFlagStatus()
H A DsceKernelMsgPipe.cpp1009 int sceKernelReferMsgPipeStatus(SceUID uid, u32 statusPtr) in sceKernelReferMsgPipeStatus() argument
1015 if (!Memory::IsValidAddress(statusPtr)) in sceKernelReferMsgPipeStatus()
1017 ERROR_LOG(SCEKERNEL, "sceKernelReferMsgPipeStatus(%i, %08x): invalid address", uid, statusPtr); in sceKernelReferMsgPipeStatus()
1021 DEBUG_LOG(SCEKERNEL, "sceKernelReferMsgPipeStatus(%i, %08x)", uid, statusPtr); in sceKernelReferMsgPipeStatus()
1029 if (Memory::Read_U32(statusPtr) != 0) in sceKernelReferMsgPipeStatus()
1030 Memory::WriteStruct(statusPtr, &m->nmp); in sceKernelReferMsgPipeStatus()
1035 DEBUG_LOG(SCEKERNEL, "sceKernelReferMsgPipeStatus(%i, %08x): bad message pipe", uid, statusPtr); in sceKernelReferMsgPipeStatus()
H A DsceKernelEventFlag.h27 u32 sceKernelReferEventFlagStatus(SceUID id, u32 statusPtr);
/dports/emulators/ppsspp/ppsspp-1.12.3/Core/HLE/
H A DsceKernel.cpp646 static int sceKernelReferSystemStatus(u32 statusPtr) { in sceKernelReferSystemStatus() argument
647 DEBUG_LOG(SCEKERNEL, "sceKernelReferSystemStatus(%08x)", statusPtr); in sceKernelReferSystemStatus()
648 if (Memory::IsValidAddress(statusPtr)) { in sceKernelReferSystemStatus()
653 Memory::WriteStruct(statusPtr, &status); in sceKernelReferSystemStatus()
681 static u32 sceKernelReferThreadProfiler(u32 statusPtr) { in sceKernelReferThreadProfiler() argument
695 static int sceKernelReferGlobalProfiler(u32 statusPtr) { in sceKernelReferGlobalProfiler() argument
696 ERROR_LOG(SCEKERNEL, "UNIMPL sceKernelReferGlobalProfiler(%08x)", statusPtr); in sceKernelReferGlobalProfiler()
H A DsceKernelEventFlag.cpp517 u32 sceKernelReferEventFlagStatus(SceUID id, u32 statusPtr) { in sceKernelReferEventFlagStatus() argument
521 if (!Memory::IsValidAddress(statusPtr)) in sceKernelReferEventFlagStatus()
527 if (Memory::Read_U32(statusPtr) != 0) in sceKernelReferEventFlagStatus()
528 Memory::WriteStruct(statusPtr, &e->nef); in sceKernelReferEventFlagStatus()
H A DsceKernelMsgPipe.cpp1009 int sceKernelReferMsgPipeStatus(SceUID uid, u32 statusPtr) in sceKernelReferMsgPipeStatus() argument
1015 if (!Memory::IsValidAddress(statusPtr)) in sceKernelReferMsgPipeStatus()
1017 ERROR_LOG(SCEKERNEL, "sceKernelReferMsgPipeStatus(%i, %08x): invalid address", uid, statusPtr); in sceKernelReferMsgPipeStatus()
1021 DEBUG_LOG(SCEKERNEL, "sceKernelReferMsgPipeStatus(%i, %08x)", uid, statusPtr); in sceKernelReferMsgPipeStatus()
1029 if (Memory::Read_U32(statusPtr) != 0) in sceKernelReferMsgPipeStatus()
1030 Memory::WriteStruct(statusPtr, &m->nmp); in sceKernelReferMsgPipeStatus()
1035 DEBUG_LOG(SCEKERNEL, "sceKernelReferMsgPipeStatus(%i, %08x): bad message pipe", uid, statusPtr); in sceKernelReferMsgPipeStatus()
/dports/emulators/libretro-ppsspp/ppsspp-1.12.3/Core/HLE/
H A DsceKernel.cpp646 static int sceKernelReferSystemStatus(u32 statusPtr) { in sceKernelReferSystemStatus() argument
647 DEBUG_LOG(SCEKERNEL, "sceKernelReferSystemStatus(%08x)", statusPtr); in sceKernelReferSystemStatus()
648 if (Memory::IsValidAddress(statusPtr)) { in sceKernelReferSystemStatus()
653 Memory::WriteStruct(statusPtr, &status); in sceKernelReferSystemStatus()
681 static u32 sceKernelReferThreadProfiler(u32 statusPtr) { in sceKernelReferThreadProfiler() argument
695 static int sceKernelReferGlobalProfiler(u32 statusPtr) { in sceKernelReferGlobalProfiler() argument
696 ERROR_LOG(SCEKERNEL, "UNIMPL sceKernelReferGlobalProfiler(%08x)", statusPtr); in sceKernelReferGlobalProfiler()
H A DsceKernelEventFlag.cpp517 u32 sceKernelReferEventFlagStatus(SceUID id, u32 statusPtr) { in sceKernelReferEventFlagStatus() argument
521 if (!Memory::IsValidAddress(statusPtr)) in sceKernelReferEventFlagStatus()
527 if (Memory::Read_U32(statusPtr) != 0) in sceKernelReferEventFlagStatus()
528 Memory::WriteStruct(statusPtr, &e->nef); in sceKernelReferEventFlagStatus()
H A DsceKernelMsgPipe.cpp1009 int sceKernelReferMsgPipeStatus(SceUID uid, u32 statusPtr) in sceKernelReferMsgPipeStatus() argument
1015 if (!Memory::IsValidAddress(statusPtr)) in sceKernelReferMsgPipeStatus()
1017 ERROR_LOG(SCEKERNEL, "sceKernelReferMsgPipeStatus(%i, %08x): invalid address", uid, statusPtr); in sceKernelReferMsgPipeStatus()
1021 DEBUG_LOG(SCEKERNEL, "sceKernelReferMsgPipeStatus(%i, %08x)", uid, statusPtr); in sceKernelReferMsgPipeStatus()
1029 if (Memory::Read_U32(statusPtr) != 0) in sceKernelReferMsgPipeStatus()
1030 Memory::WriteStruct(statusPtr, &m->nmp); in sceKernelReferMsgPipeStatus()
1035 DEBUG_LOG(SCEKERNEL, "sceKernelReferMsgPipeStatus(%i, %08x): bad message pipe", uid, statusPtr); in sceKernelReferMsgPipeStatus()
/dports/games/libretro-play/Play--3cd0a367b5e24c061a6310c68c9fa7f6b531ebd4/Source/iop/
H A DIop_Thsema.cpp133 uint32 CThsema::ReferSemaphoreStatus(uint32 semaphoreId, uint32 statusPtr) in ReferSemaphoreStatus() argument
135 return m_bios.ReferSemaphoreStatus(semaphoreId, statusPtr); in ReferSemaphoreStatus()
H A DIop_Thmsgbx.cpp136 uint32 CThmsgbx::ReferMbxStatus(uint32 boxId, uint32 statusPtr) in ReferMbxStatus() argument
138 return m_bios.ReferMessageBoxStatus(boxId, statusPtr); in ReferMbxStatus()
H A DIop_Thbase.cpp312 uint32 CThbase::ReferThreadStatus(uint32 threadId, uint32 statusPtr) in ReferThreadStatus() argument
314 return m_bios.ReferThreadStatus(threadId, statusPtr, false); in ReferThreadStatus()
317 uint32 CThbase::iReferThreadStatus(uint32 threadId, uint32 statusPtr) in iReferThreadStatus() argument
319 return m_bios.ReferThreadStatus(threadId, statusPtr, true); in iReferThreadStatus()
/dports/games/avp/avp-20170505/src/avp/
H A Ddecal.c915 PREDATOR_STATUS_BLOCK *statusPtr = (PREDATOR_STATUS_BLOCK *)sbPtr->SBdataptr; in HandleDecalSystem() local
916 LOCALASSERT(statusPtr); in HandleDecalSystem()
919 if(statusPtr->Pred_Laser_On) in HandleDecalSystem()
921 if (statusPtr->Pred_Laser_Sight.DotIsOnPlayer) in HandleDecalSystem()
924 RenderLightFlare(&(statusPtr->Pred_Laser_Sight.LightSource),0xffff0000); in HandleDecalSystem()
929 RenderLaserTarget(&(statusPtr->Pred_Laser_Sight)); in HandleDecalSystem()
/dports/sysutils/LPRng/lprng-3.8.C/src/include/
H A Dchild.h15 pid_t plp_waitpid (pid_t pid, plp_status_t *statusPtr, int options);

1234