/external/bluetooth/glib/gio/ |
glocalfile.c | 526 match_prefix (const char *path, 532 if (strncmp (path, prefix, prefix_len) != 0) 541 return path + prefix_len; 759 const char *path, 771 if (g_lstat (path, &buf) != 0) 797 mountpoint = find_mountpoint_for (path, buf.st_dev); 860 get_volume_for_path (const char *path) 866 wpath = g_utf8_to_utf16 (path, -1, NULL, NULL, NULL); 909 const char *path) 913 rootdir = get_volume_for_path (path); [all...] |
gdesktopappinfo.c | 95 char *path; member in struct:_GDesktopAppInfo 159 g_free (info->path); 257 info->path = g_key_file_get_string (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_PATH, NULL); 292 if (info->path && info->path[0] == '\0') 294 g_free (info->path); 295 info->path = NULL; 303 * @filename: the path of a desktop file, in the GLib filename encoding 427 new_info->path = g_strdup (info->path); 519 char *path, *name; local 1220 char *path, *display_name; local 2082 char *path; member in struct:__anon1173 [all...] |
/frameworks/base/awt/com/android/internal/awt/ |
AndroidGraphics2D.java | 69 import android.graphics.Path; 182 private Path getPath(Shape s) { 183 Path path = new Path(); local 186 getCurrentSegment(pi, path); 189 return path; 192 private void getCurrentSegment(PathIterator pi, Path path) { 197 path.moveTo(coordinates[0], coordinates[1]) 357 Path path = new Path(); local 1087 Path path = getPath(filledPolygon); local [all...] |
/external/icu4c/tools/genrb/ |
gendtjar.pl | 26 use File::Path; 67 $path=$ENV{'PATH'}; 72 $path .=":$icuBinDir:$icuLibDir"; 83 $path .=":$icuBinDir:$icuLibDir"; 91 $path .=":$icuBinDir:$icuLibDir"; 98 $path .=$icuBinDir; 101 $ENV{'PATH'} = $path; 102 #print ("##### PATH = $ENV{'PATH'}\n") [all...] |
/external/icu4c/tools/tzcode/ |
zdump.c | 471 char path[FILENAME_MAX + 1]; local 472 strcpy(path, dirarg); 473 strcat(path, "/"); 474 zstart = strlen(path); 475 strcat(path, argv[i]); 477 while(path[++zstart] != 0) { 478 if (path[zstart] == '/') { 479 path[zstart] = '-'; 482 if ((fp = fopen(path, "w")) == NULL) { 483 fprintf(stderr, "cannot create output file %s\n", path); 987 char path[FILENAME_MAX + 1]; local [all...] |
/external/webkit/WebKitTools/Scripts/webkitpy/style/ |
checker_unittest.py | 180 # Try using the path specifier (as an "end-to-end" check). 386 for path in paths_to_skip: 387 self.assertTrue(dispatcher.should_skip_with_warning(path), 388 "Checking: " + path) 403 for path in paths_to_skip: 404 self.assertTrue(dispatcher.should_skip_without_warning(path), 405 "Checking: " + path) 416 """Call dispatch_processor() with the given file path.""" 433 'For path "%(file_path)s" got %(got_class)s when ' 456 for path in paths [all...] |
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/ |
FileListingService.java | 219 * Return the full path of the entry. 220 * @return a path string using {@link FileListingService#FILE_SEPARATOR} as separator. 233 * Return the fully escaped path of the entry. This path is safe to use in a 235 * @return a path string using {@link FileListingService#FILE_SEPARATOR} as separator 245 * Returns the path as a list of segments. 342 * Recursively fills the pathBuilder with the full path 343 * @param pathBuilder a StringBuilder used to create the path. 344 * @param escapePath Whether the path need to be escaped for consumption by 360 * Recursively fills the segment list with the full path [all...] |
/dalvik/libcore/xml/src/main/java/org/apache/xalan/templates/ |
RedundentExprEliminator.java | 180 * For a given path, see if there are any partitial matches in the list, 544 * For the reduction of location path parts, create a list of all 564 // Assuming location path iterators should be OK. 746 * Count the steps in a given location path. 748 * @param lpi The location path iterator that owns the steps. 749 * @return The number of steps in the given location path. 906 // If the location path contains variables, we have to insert the [all...] |
/external/srec/srec/crec/ |
astar.c | 244 void print_path(partial_path* path, srec* rec, char* msg); 253 void append_arc_arriving(partial_path* path, partial_path* prev_path) 256 for (pprev = &path->first_prev_arc; (*pprev); pprev = &(*pprev)->linkl_prev_arc) 265 for (i = 0, k = path->first_prev_arc; k; k = k->linkl_prev_arc) 276 static void remove_path_arriving(partial_path* path, partial_path* prev_path) 279 if (!path) return; 280 for (pprev = &path->first_prev_arc; (*pprev); pprev = &(*pprev)->linkl_prev_arc) 318 /* finding the netcost of this path extension */ 415 printf("extend path returned %x\n", extended_parp); 430 * make a blank partial path, free one if necessar 925 partial_path* path; local [all...] |
/external/ipsec-tools/src/racoon/ |
privsep.c | 170 /* If running as root, we don't use the privsep code path */ 176 * are mandatory, as they enable us to check path safety 182 "require path cert and path script in the config file\n"); 451 * Check script path and name 703 privsep_eay_get_pkcs1privkey(path) 704 char *path; 711 return eay_get_pkcs1privkey(path); 713 len = sizeof(*msg) + strlen(path) + 1; 723 memcpy(msg + 1, path, msg->bufs.buflen[0]) 1125 char *path; local [all...] |
/packages/providers/MediaProvider/src/com/android/providers/media/ |
MediaProvider.java | 342 mPendingThumbs.remove(d.path); 552 "_data TEXT," + // _data is path for file based playlists, or null 1069 String path = parentFile.toString().toLowerCase(); local 1125 String path = c.getString(1); local 1770 String path = values.getAsString("_data"); local 2247 String path = values.getAsString("_data"); local 2478 String path; field in class:MediaProvider.ThumbData 2962 String path = Environment.getExternalStorageDirectory().getPath(); local [all...] |
/external/icu4c/test/cintltst/ |
udatatst.c | 127 char* path=(char*)malloc(sizeof(char) * (strlen(ctest_dataOutDir()) local 142 strcat(strcpy(path, ctest_dataOutDir()), U_ICUDATA_NAME); 147 log_data_err("FAIL: udata_open() failed for path = %s, name=%s, type=%s, \n errorcode=%s\n", testPath, name, type, myErrorName(status)); 158 icuDataFilePath = (char *)malloc(strlen(path) + 10); 159 strcpy(icuDataFilePath, path); 169 result=udata_open(path, memMap[i][1], memMap[i][0], &status); 171 log_data_err("FAIL: udata_open() failed for path = %s, name=%s, type=%s, \n errorcode=%s\n", path, memMap[i][0], memMap[i][1], myErrorName(status)); 173 log_verbose("PASS: udata_open worked for path = %s, name=%s, type=%s\n", path, memMap[i][0], memMap[i][1]) 700 const char* path = loadTestData(&status); local [all...] |
/external/quake/quake/src/QW/client/ |
common.c | 87 The "base directory" is the path to the directory holding the quake.exe and all game directories. The sys_* files pass this to host_init in quakeparms_t->basedir. This can be overridden with the "-basedir" command line parm to allow code debugging in a different directory. The base directory is 90 The "game directory" is the first tree on the search path and directory that all generated files (savegames, screenshots, demos, config files) will be saved to. This can be overridden with the "-game" command line parameter. The game directory can never be changed while quake is executing. This is a precacution against having a malicious server instruct clients to write files over areas they shouldn't. 93 specified, when a file is found by the normal search path, it will be mirrored 985 void COM_DefaultExtension (char *path, char *extension) 989 // if path doesn't have a .EXT, append extension 992 src = path + strlen(path) - 1; 994 while (*src != '/' && src != path) 1001 strcat (path, extension); 1227 Cmd_AddCommand ("path", COM_Path_f) [all...] |
/dalvik/libcore/xml/src/main/java/org/apache/xpath/axes/ |
UnionPathIterator.java | 96 * @param expr non-null reference to a location path iterator. 146 * of location path iterators from the opcode list, and call back 300 * Create a new location path iterator. 306 * @return New location path iterator. 319 * Initialize the location path iterators. Recursive. 463 * The location path iterators, one for each 465 * path</a> contained in the union expression. 472 * The location path iterators, one for each 474 * path</a> contained in the union expression.
|
/external/dhcpcd/ |
configure.c | 49 #define DEFAULT_PATH "PATH=/usr/bin:/usr/sbin:/bin:/sbin" 89 char *path; local 99 path = getenv("PATH"); 100 if (path) { 101 e = strlen("PATH") + strlen(path) + 2; 103 snprintf(env[0], e, "PATH=%s", path);
|
/external/gtest/test/ |
gtest-filepath_test.cc | 65 int remove(const char* path) { 66 LPCWSTR wpath = String::AnsiToUtf16(path); 72 int _rmdir(const char* path) { 73 FilePath filepath(path); 402 FilePath non_default_path("path"); 409 FilePath non_default_path("path"); 412 EXPECT_STREQ("path", default_path.c_str()); 413 EXPECT_STREQ("path", non_default_path.c_str()); // RHS var is unchanged. 418 FilePath non_default_path("path");
|
/external/icu4c/common/unicode/ |
udata.h | 176 * @param path Specifies an absolute path and/or a basename for the 193 udata_open(const char *path, const char *type, const char *name, 217 * <p>If <code>path==NULL</code>, then ICU data is loaded. 225 * @param path Specifies an absolute path and/or a basename for the 245 udata_openChoice(const char *path, const char *type, const char *name, 339 * data with the specifed path that has already been opened, or 340 * if setAppData with the same path has already been called.
|
/external/iproute2/tc/ |
m_ipt.c | 227 char path[strlen(lib_dir) + sizeof ("/libipt_.so") + strlen(name)]; local 263 sprintf(path, "%s/libxt_%s.so", lib_dir, new_name); 264 handle = dlopen(path, RTLD_LAZY); 267 sprintf(path, "%s/libipt_%s.so", lib_dir, new_name); 268 handle = dlopen(path, RTLD_LAZY); 271 sprintf(path, "%s/libxt_%s.so", lib_dir , lname); 272 handle = dlopen(path, RTLD_LAZY); 276 sprintf(path, "%s/libipt_%s.so", lib_dir , lname); 277 handle = dlopen(path, RTLD_LAZY);
|
/external/opencore/engines/author/test/src/ |
test_pv_author_engine_typedefs.h | 341 // Other tests deliberately induces errors at various points in the data path. The error point is send through 374 ErrorHandling_MediaInputNode_DataPath_Stall = 523, //MediaInputNode Stall the data path. 384 ErrorHandling_MP4Composer_DataPathStall = 533, //MP4ComposerNode Stall the data path. 386 ErrorHandling_VideoEncodeNode_DataPathStall_Before_ProcessingData = 535, //VideoEncodeNode Stall the data path before processing starts. 387 ErrorHandling_VideoEncodeNode_DataPathStall_After_ProcessingData = 536, //VideoEncodeNode Stall the data path post processing. 390 ErrorHandling_AudioEncodeNode_DataPathStall_Before_ProcessingData = 539, //AudioEncodeNode Stall data path before processing starts. 391 ErrorHandling_AudioEncodeNode_DataPathStall_After_ProcessingData = 540, //AudioEncodeNode Stall data path post processing. 393 ErrorHandling_AVCEncodeNode_DataPathStall_Before_ProcessingData = 542, //AVCEncodeNode Stall the data path before processing starts. 394 ErrorHandling_AVCEncodeNode_DataPathStall_After_ProcessingData = 543, //AVCEncodeNode Stall the data path post processing.
|
/external/openssl/crypto/conf/ |
conf_mod.c | 251 char *path = NULL; local 254 /* Look for alternative path in module section */ 255 path = NCONF_get_string(cnf, value, "path"); 256 if (!path) 259 path = name; 261 dso = DSO_load(NULL, path, NULL, 0); 286 ERR_add_error_data(4, "module=", name, ", path=", path);
|
/external/srec/srec/include/ |
srec.h | 49 costdata costdelta; /* cost relative to path being propagated */ 50 wordID word; /* alternative word, diff from path b.p. */ 51 wtokenID word_backtrace; /* alternative backtrace, diff from path b.p.*/ 70 wordID word[MAX_HMM]; /* when the path encounters an output 90 wordID word; /* when the path encounters an output*/ 108 costdata cost; /* cost for path up to this point*/ 270 top choice path, to make sure they're not 305 ftokenID *best_token_for_node; /* array (size max_fsm_nodes) best path into 308 stokenID *best_token_for_arc; /* array (size max_fsm_arcs) best path into
|
/frameworks/base/cmds/bootanimation/ |
BootAnimation.cpp | 369 char path[256]; local 376 if (sscanf(l, "p %d %d %s", &count, &pause, path) == 3) { 377 //LOGD("> count=%d, pause=%d, path=%s", count, pause, path); 381 part.path = path; 394 const String8 path(entryName.getPathDir()); 398 if (path == animation.parts[j].path) {
|
/frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/ |
DefaultContainerService.java | 71 * @return Returns the new cache path where the resource has been copied into 169 void eraseFiles(File path) { 170 if (path.isDirectory()) { 171 String[] files = path.list(); 174 eraseFiles(new File(path, file)); 178 path.delete(); 203 + " at path : " + newCachePath); 213 Log.e(TAG, "Failed to finalize " + newCid + " at path " + newCachePath); 220 " at path " + newCachePath);
|
/frameworks/base/tools/aapt/ |
Main.cpp | 27 * This operates in-place on the path string. 29 void convertPath(char *path) { 30 if (path != NULL && OS_PATH_SEPARATOR != '/') { 31 for (; *path; path++) { 32 if (*path == '/') { 33 *path = OS_PATH_SEPARATOR; 104 " -k junk path of file(s) added\n" 119 " -M specify full path to AndroidManifest.xml to include in zip\n"
|
/hardware/msm7k/libaudio-qsd8k/ |
AudioHardware.cpp | 648 uint32_t path[2]; local 745 path[0] = out_device; 746 path[1] = rx_acdb_id; 747 if (ioctl(fd, AUDIO_SWITCH_DEVICE, &path)) { 752 path[0] = mic_device; 753 path[1] = tx_acdb_id; 754 if (ioctl(fd, AUDIO_SWITCH_DEVICE, &path)) { 772 path[0] = rx_acdb_id; 773 path[1] = tx_acdb_id; 774 if (ioctl(fd, AUDIO_START_VOICE, &path)) { 912 static const char *const path = "\/dev\/audience_a1026"; local [all...] |