Searched refs:stat_buf (Results 1 – 2 of 2) sorted by relevance
/AliOS-Things-master/components/lwip/lwip2.0.0/apps/sendfile/ |
A D | sendfile.c | 234 struct stat stat_buf; /* argument to fstat */ in sendfile_server_thread() local 309 ret = fstat(fd, &stat_buf); in sendfile_server_thread() 317 snprintf(buf, sizeof(buf), "mode=%d size=%ld\n", stat_buf.st_mode, stat_buf.st_size); in sendfile_server_thread() 328 ret = sendfile(connfd, fd, &offset, stat_buf.st_size); in sendfile_server_thread() 342 if (ret != stat_buf.st_size) { in sendfile_server_thread() 344 ret, (int)stat_buf.st_size)); in sendfile_server_thread()
|
/AliOS-Things-master/components/py_engine/external/unzip/src/ |
A D | miniunz.c | 208 struct stat stat_buf; in direct_is_exist() local 209 if (stat(path, &stat_buf) == 0) { in direct_is_exist() 210 return (stat_buf.st_mode & S_IFMT) == S_IFDIR; in direct_is_exist()
|
Completed in 4 milliseconds