Home
last modified time | relevance | path

Searched refs:ccall (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/libucl/haskell/
H A Dhucl.hs22 foreign import ccall "ucl_parser_new" ucl_parser_new :: CInt -> ParserHandle
23 foreign import ccall "ucl_parser_add_string" ucl_parser_add_string :: ParserHandle -> CString -> CU…
24 foreign import ccall "ucl_parser_add_file" ucl_parser_add_file :: ParserHandle -> CString -> IO Bool
25 foreign import ccall "ucl_parser_get_object" ucl_parser_get_object :: ParserHandle -> UCLObjectHand…
26 foreign import ccall "ucl_parser_get_error" ucl_parser_get_error :: ParserHandle -> CString
28 foreign import ccall "ucl_object_iterate_new" ucl_object_iterate_new :: UCLObjectHandle -> UCLIterH…
29 foreign import ccall "ucl_object_iterate_safe" ucl_object_iterate_safe :: UCLIterHandle -> Bool -> …
30 foreign import ccall "ucl_object_type" ucl_object_type :: UCLObjectHandle -> CUInt
31 foreign import ccall "ucl_object_key" ucl_object_key :: UCLObjectHandle -> CString
32 foreign import ccall "ucl_object_toint" ucl_object_toint :: UCLObjectHandle -> CInt
[all …]
/freebsd/contrib/lua/src/
H A Dldo.c628 l_sinline void ccall (lua_State *L, StkId func, int nResults, l_uint32 inc) { in ccall() function
647 ccall(L, func, nResults, 1); in luaD_call()
655 ccall(L, func, nResults, nyci); in luaD_callnoyield()
790 ccall(L, firstArg - 1, LUA_MULTRET, 0); /* just call its body */ in resume()