Lines Matching refs:of

6        create_links() : crate links of different types
9 change_file_perms() : Change permission of files
11 compare_self_stat() : compares the first 13 elements of the
12 stat with the corresponding named key values of
23 $filename = Name of the file
24 $mode = Mode as specified in fopen call, read documentation of fopen() call for more info
42 "text" = fills with string of size $file_size
43 "numeric" = fills with numeric value of size $file_size
55 $data = "line\nline of text\n";
87 "text" = fills with string of size $file_size
88 "numeric" = fills with numeric value of size $file_size
105 $data = "line\nline of text\n";
121 // write in terms of a chunk of 1 K to avoid memory size overflow
156 $count = no. of files, default is 1
157 $perms = new permission of the file, similar to $mode args of chmod() call
163 Integer, Count of total files permission changed.
201 Description: Creates given number of files with specified mode and
202 permissions. File is filled with content of size specified.
207 $count = total no. of files to be created, default = 1
212 $content_type = Specify type of the content to fill in the file.
219 $size = size of the fill in terms of kilobyte, i.e size of the file.
221 $flag = specify if size has to be treated as no of total bytes or
222 multiple of KB.
223 "kilobytes" = take size in terms of multiple of KB
224 "byte" = take size in terms of bytes
282 // fill the file with specifiec type of data and size
290 } // end of if
299 } // end of for
323 Description: Creates given number of links with specified mode and
324 permissions.Link is filled with content of size specified.
325 $file_path = location of the file and where links need to be created
329 $link_count = total no. of links to be created to given file, default = 1
332 $link_file_content = Type of the content to fill in the file.
338 $size = size of the fill in terms of kilobyte, i.e size of the file.
339 $link_type = type of the link to be created
401 // fill the file with specific type of data and size
407 } // end of if
416 // change the permission of the link file, only if hard link.
451 Description: Deletes given number of files if exists.
452 $file_path = location of the files
453 $name_prefix = prefix for the filename, rest of the name is incremental(increment by 1 only)
455 $count = number of files to be deleted
458 deleted = Number of files deleted.
459 notfound = Count of non existing file
460 failed = Count of failed to delete
484 } // end of for
494 Description: Deletes given number of links if exists. Uses delete_files() function
495 $file_path = location of link files
496 $link_file_count = Number of link files
497 $link_name_prefix = prefix for the linkname, rest of the name is incremental(increment by 1 only)
502 deleted = Number of links deleted.
503 notfound = Count of non existing link
504 failed = Count of failed to delete
527 Compares the each of the first 13 values of the stat array with the
528 corresponding next 13 values of the same stat for equality
531 Returns: true when all of them match, false otherwise
558 } // end of foreach
568 }// end of compare_self_stat
578 $op = type of the comparison to be perform between elements of stat1 and stat2
581 ">" if each element of stat1 is > than stat2
582 "<" if each element of stat1 is < than stat2
583 $fields = contains the key of the elements that needs to be compared.
584 type of the comparison is based on $op argument value
604 // compare values of given key from each stat array
623 // do nothing as its not equal, else will take care of if equal