Searched defs:prefix (Results 1 - 12 of 12) sorted by relevance
/system/core/sh/ |
H A D | mystring.c | 91 * prefix -- see if pfx is a prefix of string. 95 prefix(const char *pfx, const char *string) function
|
/system/bluetooth/brfpatch/ |
H A D | brfpatch.c | 57 unsigned char prefix = 0x01; // H4 UART command packet local 58 fwrite(&prefix, 1, 1, fpo);
|
/system/core/init/ |
H A D | ueventd.c | 83 int prefix = 0; local 117 prefix = 1; 145 add_dev_perms(name, attr, perm, uid, gid, prefix);
|
H A D | property_service.c | 57 const char *prefix; member in struct:__anon70 234 for (i = 0; property_perms[i].prefix; i++) { 236 if (strncmp(property_perms[i].prefix, name, 237 strlen(property_perms[i].prefix)) == 0) {
|
H A D | devices.c | 91 unsigned short prefix; member in struct:perms_ 104 unsigned short prefix) { 122 node->dp.prefix = prefix; 143 if (dp->prefix) { 175 if (dp->prefix) { 102 add_dev_perms(const char *name, const char *attr, mode_t perm, unsigned int uid, unsigned int gid, unsigned short prefix) argument
|
/system/core/nexus/ |
H A D | CommandListener.cpp | 197 char *prefix = NULL; local 200 prefix = argv[1]; 202 if (!(pc = NetworkManager::Instance()->getPropMngr()->createPropertyList(prefix))) {
|
H A D | PropertyManager.cpp | 255 android::List<char *> *PropertyManager::createPropertyList(const char *prefix) { argument 271 if (!prefix || 272 (prefix && !strncasecmp(fqn, prefix, strlen(prefix)))) {
|
/system/core/cpio/ |
H A D | mkbootfs.c | 227 void archive(const char *start, const char *prefix) argument 233 strcpy(out, prefix);
|
/system/core/include/private/ |
H A D | android_filesystem_config.h | 126 const char *prefix; member in struct:fs_path_config 211 for(; pc->prefix; pc++){ 212 int len = strlen(pc->prefix); 215 if(!strncmp(pc->prefix, path, len)) break; 219 if (pc->prefix[len -1] == '*') { 220 if(!strncmp(pc->prefix, path, len - 1)) break; 222 if(!strncmp(pc->prefix, path, len)) break; 231 path, pc->prefix ? pc->prefix : "", *uid, *gid, *mode);
|
/system/extras/librank/ |
H A D | librank.c | 167 char *prefix; local 189 prefix = NULL; 199 prefix = argv[++i]; 200 prefix_len = strlen(prefix); 246 if (prefix && (strncmp(pm_map_name(maps[j]), prefix, prefix_len)))
|
/system/wlan/ti/sta_dk_4_0_4_32/CUDK/CLI/ |
H A D | eth_utils.c | 399 unsigned char prefix; local 410 /* Read the packet prefix - one byte */ 411 result = read(socket_id, &prefix, sizeof(prefix)); 416 if (prefix == PACKET_PREFIX)
|
/system/core/adb/ |
H A D | commandline.c | 320 const char* prefix = "host"; local 322 prefix = "host-usb"; 324 prefix = "host-local"; 326 snprintf(buffer, buflen, "%s:%s", prefix, command);
|
Completed in 140 milliseconds