Searched refs:newfile (Results 1 – 4 of 4) sorted by relevance
/linux-4.1.27/drivers/scsi/aic7xxx/aicasm/ |
D | aicasm_scan.l | 466 FILE *newfile; 469 newfile = NULL; 472 newfile = fopen(file_name, "r"); 474 if (newfile == NULL && type != SOURCE_FILE) { 488 if ((newfile = fopen(fullname, "r")) != NULL) 493 if (newfile == NULL) { 511 yy_switch_to_buffer(yy_create_buffer(newfile, YY_BUF_SIZE));
|
/linux-4.1.27/net/ |
D | socket.c | 392 struct file *newfile; in sock_map_fd() local 397 newfile = sock_alloc_file(sock, flags, NULL); in sock_map_fd() 398 if (likely(!IS_ERR(newfile))) { in sock_map_fd() 399 fd_install(fd, newfile); in sock_map_fd() 404 return PTR_ERR(newfile); in sock_map_fd() 1438 struct file *newfile; in SYSCALL_DEFINE4() local 1472 newfile = sock_alloc_file(newsock, flags, sock->sk->sk_prot_creator->name); in SYSCALL_DEFINE4() 1473 if (unlikely(IS_ERR(newfile))) { in SYSCALL_DEFINE4() 1474 err = PTR_ERR(newfile); in SYSCALL_DEFINE4() 1502 fd_install(newfd, newfile); in SYSCALL_DEFINE4() [all …]
|
/linux-4.1.27/scripts/ |
D | checkpatch.pl | 5535 my $newfile = $filename; 5536 $newfile .= ".EXPERIMENTAL-checkpatch-fixes" if (!$fix_inplace); 5542 open($f, '>', $newfile) 5543 or die "$P: Can't open $newfile for write\n"; 5559 Wrote EXPERIMENTAL --fix correction(s) to '$newfile'
|
/linux-4.1.27/net/sctp/ |
D | socket.c | 4468 struct file *newfile; in sctp_getsockopt_peeloff() local 4488 newfile = sock_alloc_file(newsock, 0, NULL); in sctp_getsockopt_peeloff() 4489 if (unlikely(IS_ERR(newfile))) { in sctp_getsockopt_peeloff() 4492 return PTR_ERR(newfile); in sctp_getsockopt_peeloff() 4500 fput(newfile); in sctp_getsockopt_peeloff() 4506 fput(newfile); in sctp_getsockopt_peeloff() 4510 fd_install(retval, newfile); in sctp_getsockopt_peeloff()
|