代码搜索:cli
找到约 6,094 项符合「cli」的源代码
代码结果 6,094
www.eeworm.com/read/149140/12398960
s int.s
.global setup_idt,fatal_interruption_routine
.global disable_interruption,restore_interruption
disable_interruption:
pushfl
popl %eax
cli
ret
restore_interruption:
movl 0x04(%esp),%eax
www.eeworm.com/read/148608/12448050
makefile
OPENSSLDIR=/users/ekr/src/freebsd/openssl-0.9.4
CFLAGS=-g -I$(OPENSSLDIR)/include
LD=-L$(OPENSSLDIR) -lssl -lcrypto
OBJS=common.o
all: sclient sserver rclient mserver pclient
sclient: sclient.o cli
www.eeworm.com/read/233301/14158429
dsr datareportdeliver.dsr
VERSION 5.00
Begin {78E93846-85FD-11D0-8487-00A0C90DC8A9} DataReportDeliver
Bindings = "DataReportDeliver.dsx":0000
Caption = "送货单信息"
ClientHeight = 10950
Cli
www.eeworm.com/read/129891/14218888
c strclithread.c
#include "unpthread.h"
void *copyto(void *);
static int sockfd; /* global for both threads to access */
static FILE *fp;
void
str_cli(FILE *fp_arg, int sockfd_arg)
{
char recvline[MAXLINE];
pth
www.eeworm.com/read/129891/14219456
c dgclitimeo.c
#include "unp.h"
void
dg_cli(FILE *fp, int sockfd, const SA *pservaddr, socklen_t servlen)
{
int n;
char sendline[MAXLINE], recvline[MAXLINE + 1];
while (Fgets(sendline, MAXLINE, fp) != NULL) {
www.eeworm.com/read/129891/14219489
c dgclitimeo1.c
#include "unp.h"
void
dg_cli(FILE *fp, int sockfd, const SA *pservaddr, socklen_t servlen)
{
int n;
char sendline[MAXLINE], recvline[MAXLINE + 1];
while (Fgets(sendline, MAXLINE, fp) != NULL) {
www.eeworm.com/read/129891/14219504
c strcliselect02.c
#include "unp.h"
void
str_cli(FILE *fp, int sockfd)
{
int maxfdp1, stdineof;
fd_set rset;
char sendline[MAXLINE], recvline[MAXLINE];
stdineof = 0;
FD_ZERO(&rset);
for ( ; ; ) {
if (stdin
www.eeworm.com/read/129891/14219634
c dgclibig.c
#include "unp.h"
#undef MAXLINE
#define MAXLINE 65507
void
dg_cli(FILE *fp, int sockfd, const SA *pservaddr, socklen_t servlen)
{
int size;
char sendline[MAXLINE], recvline[MAXLINE + 1];
ssize
www.eeworm.com/read/129891/14219654
c dgcliloop1.c
#include "unp.h"
#define NDG 2000 /* #datagrams to send */
#define DGLEN 1400 /* length of each datagram */
void
dg_cli(FILE *fp, int sockfd, const SA *pservaddr, socklen_t servlen)
{
int i;
cha
www.eeworm.com/read/129891/14219656
c dgcliconnect.c
#include "unp.h"
void
dg_cli(FILE *fp, int sockfd, const SA *pservaddr, socklen_t servlen)
{
int n;
char sendline[MAXLINE], recvline[MAXLINE + 1];
Connect(sockfd, (SA *) pservaddr, servlen);
w