Searched refs:name (Results 151 - 175 of 327) sorted by relevance

1234567891011>>

/xnu-2422.115.4/osfmk/kern/
H A Dsync_sema.c74 mach_port_name_t name,
85 mach_port_name_t name,
225 * specified task is the SAME task name specified at the semaphore's
787 mach_port_name_t name,
793 kr = port_name_to_semaphore(name, &semaphore);
860 mach_port_name_t name,
874 kr = port_name_to_semaphore(name, &semaphore);
786 semaphore_wait_trap_internal( mach_port_name_t name, void (*caller_cont)(kern_return_t)) argument
859 semaphore_timedwait_trap_internal( mach_port_name_t name, unsigned int sec, clock_res_t nsec, void (*caller_cont)(kern_return_t)) argument
H A Dipc_host.c164 mach_port_name_t name; local
167 name = ipc_port_copyout_send(sright, current_space());
168 return name;
/xnu-2422.115.4/bsd/sys/
H A Dvnode.h45 * 4. Neither the name of the University nor the names of its contributors
183 char *cn_nameptr; /* pointer to looked up name */
185 uint32_t cn_hash; /* hash value of looked up name */
190 * component name operations (for VNOP_LOOKUP)
192 #define LOOKUP 0 /* perform name lookup only */
199 * component name operational modifier flags
205 * component name parameter descriptors.
207 #define ISDOTDOT 0x00002000 /* current component name is .. */
208 #define MAKEENTRY 0x00004000 /* entry is to be added to name cache */
226 struct componentname * vnfs_cnp; /* component name t
[all...]
H A Dkern_control.h91 control name to a kernel control id.
93 #define CTLIOCGINFO _IOWR('N', 3, struct ctl_info) /* get id from name */
110 translate from a kernel control name to a control id.
112 @field ctl_name The kernel control name to find.
173 to find the dynamically assigned id based on the control name
470 u_int32_t ctl_id_by_name(const char *name);
/xnu-2422.115.4/bsd/hfs/
H A Dhfs_search.c87 u_char name[kHFSPlusMaxFileNameBytes]; member in struct:searchinfospec
747 /* First, attempt to match the name -- either partial or complete */
758 * a partial name match. Consider that if you are doing a partial
759 * name match ("all files that begin with 'image'"), the likelihood is
767 /* Check for partial/full HFS Plus name match */
773 (UniChar*)searchInfo1->name,
777 /* Full name match. Are we HFSX (case sensitive) or HFS+ ? */
781 (UniChar*)searchInfo1->name,
787 (UniChar*)searchInfo1->name,
794 /* Check for partial/full HFS name matc
[all...]
H A Dhfs.h215 u_int8_t vcbVN[256]; /* volume name in UTF-8 */
469 #define MAKE_INODE_NAME(name, size, linkno) \
470 (void) snprintf((name), size, "%s%d", HFS_INODE_PREFIX, (linkno))
473 #define MAKE_DIRINODE_NAME(name, size, linkno) \
474 (void) snprintf((name), size, "%s%d", HFS_DIRINODE_PREFIX, (linkno))
765 extern u_int32_t GetFileInfo(ExtendedVCB *vcb, u_int32_t dirid, const char *name,
H A Dhfs_vfsutils.c151 /* convert hfs encoded name into UTF-8 string */
154 * When an HFS name cannot be encoded with the current
159 /* If we fail to encode to UTF8 from Mac Roman, the name is bad. Deny the mount */
675 * Pick up volume name and create date
677 * Acquiring the volume name should not manipulate the bitmap, only the catalog
696 /* Send the volume name down to CoreStorage if necessary */
1489 GetFileInfo(ExtendedVCB *vcb, __unused u_int32_t dirid, const char *name, argument
1504 jdesc.cd_nameptr = (const u_int8_t *)name;
1505 jdesc.cd_namelen = strlen(name);
1977 const u_int8_t * name; local
2045 const u_int8_t * name; local
2077 const u_int8_t * name; local
2376 const char *name = vnode_getname_printable(devvp); local
2642 const char *name = vnode_getname_printable(devvp); local
[all...]
/xnu-2422.115.4/bsd/kern/
H A Dsubr_prof.c45 * 4. Neither the name of the University nor the names of its contributors
164 sysctl_doprof(int *name, u_int namelen, user_addr_t oldp, size_t *oldlenp, argument
168 int *name = arg1; /* oid element argument vector */ local
182 switch (name[0]) {
H A Dkdebug.c370 /* Does each entry have a function and a name? */
819 * <rdar://problem/13351477> Some IOP clients are not providing a name.
1458 bzero(cpus[index].name, sizeof(cpus->name));
1459 strlcpy(cpus[index].name, iops->callback.iop_name, sizeof(cpus->name));
1468 bzero(cpus[index].name, sizeof(cpus->name));
1469 strlcpy(cpus[index].name, "AP", sizeof(cpus->name));
2260 kdbg_control(int *name, u_int namelen, user_addr_t where, size_t *sizep) argument
[all...]
H A Dmcache.c179 char name[32]; local
200 (void) snprintf(name, sizeof (name), "bkt_%d",
202 btp->bt_cache = mcache_create(name,
249 mcache_create(const char *name, size_t bufsize, size_t align, argument
252 return (mcache_create_common(name, bufsize, align, mcache_slab_alloc,
263 mcache_create_ext(const char *name, size_t bufsize, argument
268 return (mcache_create_common(name, bufsize, 0, allocfn,
276 mcache_create_common(const char *name, size_t bufsize, size_t align, argument
341 (void) snprintf(cp->mc_name, sizeof (cp->mc_name), "mcache.%s", name);
[all...]
/xnu-2422.115.4/pexpert/gen/
H A Ddevice_tree.c162 if (DTGetProperty(child, "name", (void **)&str, &dummy) != kSuccess) {
222 if (strcmp (propP->name, propName) == 0) {
419 if (strcmp(prop->name, propertyName) == 0) {
467 *foundProperty = iter->currentProperty->name;
/xnu-2422.115.4/bsd/netinet/
H A Ddhcp_options.c611 char * name; member in struct:test
638 for (i = 0; tests[i].name; i++) {
644 printf("test '%s' FAILED\n", tests[i].name);
647 printf("test '%s' PASSED\n", tests[i].name);
/xnu-2422.115.4/tools/tests/perf_index/
H A Dperf_index.h25 char *name; member in struct:__anon1278
H A Dmain.c43 fprintf(stderr, "%s ", stress_tests[i]->name);
66 if(strcmp(argv[1], stress_tests[i]->name) == 0) {
/xnu-2422.115.4/iokit/IOKit/
H A DIOStatistics.h181 char name[kIOStatisticsClassNameLength]; member in struct:IOStatisticsClassName
H A DIOTypes.h138 const char *name; member in struct:__anon117
/xnu-2422.115.4/pexpert/i386/
H A Dpe_init.c104 char name[32]; member in struct:__anon1148
238 void PE_display_icon( __unused unsigned int flags, __unused const char * name )
/xnu-2422.115.4/libkern/kxld/
H A Dkxld_util.c79 kxld_set_logging_callback_data(const char *name, void *user_data) argument
81 s_callback_name = name;
94 const char *name = (s_callback_name) ? s_callback_name : "internal"; local
101 name, in_format);
109 name, in_format);
/xnu-2422.115.4/iokit/Kernel/
H A DIORegistryEntry.cpp186 const IORegistryPlane * IORegistryEntry::makePlane( const char * name )
197 strlcpy( key, name, kIOMaxPlaneName + 1 );
250 const IORegistryPlane * IORegistryEntry::getPlane( const char * name )
255 plane = (const IORegistryPlane *) gIORegistryPlanes->getObject( name );
561 IOLog("%s: IORegistryEntry name %s with key \"%s\" \n",
782 void IORegistryEntry::setName( const OSSymbol * name, argument
787 if( name) {
794 registryTable()->setObject( key, (OSObject *) name);
799 void IORegistryEntry::setName( const char * name, argument
802 OSSymbol * sym = (OSSymbol *)OSSymbol::withCString( name );
837 compareName( OSString * name, OSString ** matched ) const argument
[all...]
/xnu-2422.115.4/bsd/netinet6/
H A Din6_ifattach.c41 * 3. Neither the name of the project nor the names of its contributors
606 const char *name,
617 if (!namelen || !name)
620 p = name;
621 while (p && *p && *p != '.' && p - name < namelen)
623 if (p - name > sizeof (n) - 1)
625 l = p - name;
626 strncpy(n, name, l);
604 in6_nigroup( struct ifnet *ifp, const char *name, int namelen, struct in6_addr *in6) argument
H A Dip6_fw.c44 * 3. Neither the name of the project nor the names of its contributors
378 /* Check by name or by IP address */
384 /* Check name */
385 if (strncmp(ifp->if_name, ifu->fu_via_if.name, IP6FW_IFNLEN))
426 char action2[32], proto[102], name[18]; local
433 /* Print command name */
434 snprintf(SNPARGS(name, 0), "ip6fw: %d", f ? f->fw_number : -1);
524 name, action, proto, if_name(oif));
527 name, action, proto, if_name(rif));
530 name, actio
[all...]
/xnu-2422.115.4/bsd/miscfs/devfs/
H A Ddevfs_vnops.c195 * whether the name is to be looked up, created, renamed, or deleted.
209 * look for name in cache, if found, then if at end of path
210 * and deleting or creating, drop it, else return name
211 * search for name in directory, to found or notfound
219 * if not at end, add name to cache; if at end and neither creating
220 * nor deleting, add name to cache
230 struct componentname * a_cnp; the name we want
246 char heldchar; /* the char at the end of the name componet */
369 * Step through the translation in the name. We do not unlock the
795 * assume that the name i
1181 devfs_make_symlink(devnode_t *dir_p, char *name, int mode, char *target, devdirent_t **newent) argument
1287 const char *name; local
[all...]
/xnu-2422.115.4/osfmk/console/panic_ui/
H A Dgenimage.c171 char name[32]; /* name of codec ( in case not installed ) */ member in struct:QTHeader
1521 strlcpy(image_header.name, " None", sizeof(image_header.name));
1522 image_header.name[0] = 4;
1534 char * name; local
1541 name = "appleclut8.qtif";
1546 name = "unknownclut.qtif";
1550 if ( (ostream = fopen(name, "wb")) == NULL ) {
1551 fprintf(stderr,"Err: Could not open output index file %s.\n\n", name);
[all...]
/xnu-2422.115.4/tools/lldbmacros/core/
H A Dcvalue.py84 def __getattr__(self, name):
85 child_sbvalue = self._sbval19k84obscure747.GetChildMemberWithName (name)
88 raise AttributeError("No field by name: "+name )
439 field_name - str, name of the field inside the struct ex. 'ip_messages'
443 TypeError - - In case the struct_type has no field with the name field_name
451 raise TypeError('Field name "%s" not found in type "%s"' % (field_name, str(struct_type)))
/xnu-2422.115.4/SETUP/config/
H A Dconfig.h43 * by the University of California, Berkeley. The name of the
65 char *f_fn; /* the name */
126 const char *d_name; /* name of device (e.g. rk11) */
143 char *d_init; /* pseudo device init routine name */
155 * being used. It uses the name of the machine in choosing
156 * files and directories. Thus if the name of the machine is ``vax'',
235 dev_t nametodev(char *name, int defunit, char defpartition);

Completed in 102 milliseconds

1234567891011>>