Searched refs:newfile (Results 1 – 4 of 4) sorted by relevance
/linux-4.4.14/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.4.14/net/ |
D | socket.c | 393 struct file *newfile; in sock_map_fd() local 398 newfile = sock_alloc_file(sock, flags, NULL); in sock_map_fd() 399 if (likely(!IS_ERR(newfile))) { in sock_map_fd() 400 fd_install(fd, newfile); in sock_map_fd() 405 return PTR_ERR(newfile); in sock_map_fd() 1429 struct file *newfile; in SYSCALL_DEFINE4() local 1463 newfile = sock_alloc_file(newsock, flags, sock->sk->sk_prot_creator->name); in SYSCALL_DEFINE4() 1464 if (IS_ERR(newfile)) { in SYSCALL_DEFINE4() 1465 err = PTR_ERR(newfile); in SYSCALL_DEFINE4() 1493 fd_install(newfd, newfile); in SYSCALL_DEFINE4() [all …]
|
/linux-4.4.14/scripts/ |
D | checkpatch.pl | 5846 my $newfile = $filename; 5847 $newfile .= ".EXPERIMENTAL-checkpatch-fixes" if (!$fix_inplace); 5853 open($f, '>', $newfile) 5854 or die "$P: Can't open $newfile for write\n"; 5871 Wrote EXPERIMENTAL --fix correction(s) to '$newfile'
|
/linux-4.4.14/net/sctp/ |
D | socket.c | 4455 struct file *newfile; in sctp_getsockopt_peeloff() local 4475 newfile = sock_alloc_file(newsock, 0, NULL); in sctp_getsockopt_peeloff() 4476 if (IS_ERR(newfile)) { in sctp_getsockopt_peeloff() 4479 return PTR_ERR(newfile); in sctp_getsockopt_peeloff() 4487 fput(newfile); in sctp_getsockopt_peeloff() 4493 fput(newfile); in sctp_getsockopt_peeloff() 4497 fd_install(retval, newfile); in sctp_getsockopt_peeloff()
|