Home
last modified time | relevance | path

Searched refs:argp (Results 1 – 15 of 15) sorted by relevance

/AliOS-Things-master/components/mbedtls/programs/test/
A Dselftest.c303 char **argp; in mbedtls_selftest_main() local
333 for( argp = argv + ( argc >= 1 ? 1 : argc ); *argp != NULL; ++argp ) in mbedtls_selftest_main()
335 if( strcmp( *argp, "--quiet" ) == 0 || in mbedtls_selftest_main()
336 strcmp( *argp, "-q" ) == 0 ) in mbedtls_selftest_main()
340 else if( strcmp( *argp, "--exclude" ) == 0 || in mbedtls_selftest_main()
341 strcmp( *argp, "-x" ) == 0 ) in mbedtls_selftest_main()
358 if( *argp != NULL && exclude_mode == 0 ) in mbedtls_selftest_main()
361 for( ; *argp != NULL; argp++ ) in mbedtls_selftest_main()
365 if( !strcmp( *argp, test->name ) ) in mbedtls_selftest_main()
377 mbedtls_printf( " Test suite %s not available -> failed\n\n", *argp ); in mbedtls_selftest_main()
[all …]
/AliOS-Things-master/components/mbedtls/library/
A Dplatform.c90 va_list argp; in mbedtls_platform_win32_snprintf() local
96 va_start( argp, fmt ); in mbedtls_platform_win32_snprintf()
98 ret = _vsnprintf_s( s, n, _TRUNCATE, fmt, argp ); in mbedtls_platform_win32_snprintf()
100 ret = _vsnprintf( s, n, fmt, argp ); in mbedtls_platform_win32_snprintf()
107 va_end( argp ); in mbedtls_platform_win32_snprintf()
A Ddebug.c85 va_list argp; in mbedtls_debug_print_msg() local
92 va_start( argp, format ); in mbedtls_debug_print_msg()
95 ret = _vsnprintf_s( str, DEBUG_BUF_SIZE, _TRUNCATE, format, argp ); in mbedtls_debug_print_msg()
97 ret = _vsnprintf( str, DEBUG_BUF_SIZE, format, argp ); in mbedtls_debug_print_msg()
105 ret = vsnprintf( str, DEBUG_BUF_SIZE, format, argp ); in mbedtls_debug_print_msg()
107 va_end( argp ); in mbedtls_debug_print_msg()
/AliOS-Things-master/components/SDL2/src/thread/psp/
A DSDL_systhread.c38 static int ThreadEntry(SceSize args, void *argp) in ThreadEntry() argument
40 SDL_RunThread(*(SDL_Thread **) argp); in ThreadEntry()
/AliOS-Things-master/components/netmgr/net/include/sys/
A Dsocket.h104 int net_ioctl(int s, long cmd, void *argp);
198 #define ioctlsocket(s,cmd,argp) net_ioctl(s,cmd,argp) argument
240 #define ioctlsocket(s,cmd,argp) net_ioctl(s,cmd,argp) argument
/AliOS-Things-master/hardware/chip/haas1000/drivers/net/lwip/src/include/lwip/
A Dsockets.h508 int lwip_ioctl(int s, long cmd, void *argp);
548 #define ioctlsocket(s,cmd,argp) lwip_ioctl(s,cmd,argp) argument
562 #define ioctl(s,cmd,argp) lwip_ioctl(s,cmd,argp) argument
/AliOS-Things-master/components/SDL2/src/main/psp/
A DSDL_psp_main.c34 int sdl_psp_callback_thread(SceSize args, void *argp) in sdl_psp_callback_thread() argument
/AliOS-Things-master/components/netmgr/net/
A Dnet_impl.c194 int net_ioctl(int s, long cmd, void *argp) { in net_ioctl() argument
196 return lwip_ioctl(s, cmd, argp); in net_ioctl()
/AliOS-Things-master/components/libc_stub/
A Dnewlib_stub.c207 void *argp = NULL; in ioctl() local
223 argp = va_arg(args, void *); in ioctl()
224 ret = lwip_ioctl(fildes, request, argp); in ioctl()
/AliOS-Things-master/components/lwip/lwip2.0.0/api/
A Dsockets.c3108 lwip_ioctl(int s, long cmd, void *argp) in lwip_ioctl() argument
3127 ifreq = (struct ifreq*) argp; in lwip_ioctl()
3179 if (!argp) { in lwip_ioctl()
3188 *((int*)argp) = p->tot_len - sock->lastoffset; in lwip_ioctl()
3193 *((int*)argp) = 0; in lwip_ioctl()
3197 *((int*)argp) = 0; in lwip_ioctl()
3201 *((int*)argp) = rxbuf->p->tot_len; in lwip_ioctl()
3215 *((int*)argp) = recv_avail; in lwip_ioctl()
3226 *((int*)argp) += buflen; in lwip_ioctl()
3229 …WIP_DEBUGF(SOCKETS_DEBUG, ("lwip_ioctl(%d, FIONREAD, %p) = %"U16_F"\n", s, argp, *((u16_t*)argp))); in lwip_ioctl()
[all …]
/AliOS-Things-master/components/SDL2/src/haptic/linux/
A DSDL_syshaptic.c139 unsigned long argp[40]; in EV_IsMouse() local
142 if (ioctl(fd, EVIOCGBIT(EV_KEY, sizeof(argp)), argp) < 0) { in EV_IsMouse()
147 if (test_bit(BTN_MOUSE, argp) != 0) { in EV_IsMouse()
/AliOS-Things-master/components/lwip/
A DREADME.md262 int ioctlsocket(int s, long cmd, void *argp)
269 |argp |操作命令所带参数|
/AliOS-Things-master/components/lwip/lwip2.0.0/include/lwip/
A Dsockets.h574 int lwip_ioctl(int s, long cmd, void *argp);
/AliOS-Things-master/components/SDL2/src/image/autom4te.cache/
A Dtraces.2852 AC_DEFINE([__error_t_defined], [1], [Define so that glibc/gnulib argp.h
A Dtraces.08 AC_DEFINE([__error_t_defined], [1], [Define so that glibc/gnulib argp.h

Completed in 28 milliseconds