HomeSort by relevance Sort by last modified time
    Searched full:path (Results 1601 - 1625 of 4958) sorted by null

<<61626364656667686970>>

  /ndk/build/core/
ndk-common.sh 28 # path to the current script.
46 echo "ERROR: The Android NDK installation path contains a space !"
70 # $1: log file path (optional)
486 # Result: set $1 to the full path of the corresponding command
510 # $1: source URL (e.g. http://foo.com, ssh://blah, /some/path)
528 # Accept both ssh://<path> or <machine>:<path>
542 # Accept both file://<path> or /<path>
  /system/core/run-as/
package.c 116 check_directory_ownership(const char* path, uid_t uid)
122 ret = lstat(path, &st);
148 /* This function is used to check the data directory path for safety.
151 * path is properly owned by the user ID.
160 /* the path should be absolute */
167 * directory separators in the input path and
168 * checking each sub-path independently
399 * <dataDir> is the path to the package's data directory (e.g. /data/data/com.example.foo)
448 /* fourth field is data directory path and must not contain
  /frameworks/base/graphics/java/android/graphics/
Paint.java 112 * The stroke ends with the path, and does not project beyond it.
117 * end of the path.
122 * of the path.
134 * join on a stroked path. The default is MITER.
583 * @param src input path
584 * @param dst output path (may be the same as src)
585 * @return true if the path should be filled, or false if it should be
588 public boolean getFillPath(Path src, Path dst) {
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Canvas.java 375 public boolean quickReject(Path path, EdgeType type) {
380 public boolean quickReject(Path path, _Original_Canvas.EdgeType type) {
946 * @see android.graphics.Canvas#drawPath(android.graphics.Path, android.graphics.Paint)
949 public void drawPath(Path path, Paint paint) {
957 g.fill(path.getAwtShape());
961 g.draw(path.getAwtShape());
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
PreCompilerBuilder.java 48 import org.eclipse.core.runtime.Path;
80 * "&lt;path&gt;:&lt;line&gt;: &lt;error&gt;"
82 * "&lt;path&gt;:&lt;line&gt; &lt;error&gt;"
570 // get the file system path
634 * @param osOutputPath the OS output path for the generated file. This is the source folder, not
636 * @param osResPath the OS path to the res folder for the main project
637 * @param osManifestPath the OS path to the manifest of the main project
823 StringBuilder path = new StringBuilder(); local
    [all...]
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/fortress/
PolicyUtils.java 300 String path = codebase.getFile(); local
302 if (path.length() == 0) {
304 path = "*";
306 return filePathToURI(new File(path)
320 * Converts a file path to URI without accessing file system
323 * @param path -
324 * file path.
328 public static URI filePathToURI(String path) throws URISyntaxException {
329 path = path.replace(File.separatorChar, '/')
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/ataricommon/
SDL_atarigl.c 121 int SDL_AtariGL_LoadLibrary(_THIS, const char *path)
137 /* Load library given by path */
138 handle = SDL_LoadObject(path);
141 path = SDL_getenv("SDL_VIDEO_GL_DRIVER");
142 if ( path != NULL ) {
143 handle = SDL_LoadObject(path);
148 path = PATH_OSMESA_LDG;
149 handle = SDL_LoadObject(path);
153 path = PATH_MESAGL_LDG;
154 handle = SDL_LoadObject(path);
    [all...]
  /external/webkit/WebKitTools/Scripts/
bisect-builds 32 # To override the location where the nightly builds are downloaded or the path
34 # the following lines (use "~/" to specify a path from your home directory):
37 # $nightlyDownloadDirectory = "~/path/to/nightly/downloads";
38 # $safariPath = "/path/to/Safari.app";
43 use File::Path;
88 "safari-path=s" => \$safariPath,
109 [--safari-path path] path to Safari application bundle (default: /Applications/Safari.app)
225 my $path = File::Spec->catfile($directory, $filename)
    [all...]
  /external/webkit/WebKitTools/Scripts/webkitpy/
scm_unittest.py 32 import os.path namespace
166 patch_path = os.path.join(self.svn_checkout_path, 'patch.diff')
175 webkit_scm = detect_scm_system(os.path.dirname(os.path.abspath(__file__)))
178 os.mkdir(os.path.dirname(local_scripts_directory))
278 self.assertFalse(os.path.exists('fizzbuzz7.gif'))
395 test_dir_path = os.path.join(self.svn_checkout_path, 'test_dir')
397 test_file_path = os.path.join(test_dir_path, 'test_file2')
402 scripts_path = os.path.join(self.svn_checkout_path, 'WebKitTools', 'Scripts')
404 create_patch_path = os.path.join(scripts_path, 'svn-create-patch'
    [all...]
  /ndk/
ndk-gdb 87 # Return native path representation from cygwin one
88 # $1: a cygwin-compatible path (e.g. /cygdrive/c/some/thing)
89 # Return: path in host windows representation, e.g. C:/some/thing
210 echo " --project=<path> Specify application project path"
211 echo " -p <path> Same as --project=<path>"
224 log "Android NDK installation path: $ANDROID_NDK_ROOT"
239 echo "ERROR: The 'adb' tool is not in your path."
240 echo " You can change your PATH variable, or use
    [all...]
  /packages/experimental/procstatlog/
procstatreport.py 160 files_dir = "%s_files" % os.path.splitext(filename)[0]
161 files_url = os.path.basename(files_dir)
162 if not os.path.isdir(files_dir): os.makedirs(files_dir)
197 os.path.join(files_dir, "total_cpu.csv"))
239 os.path.join(files_dir, "cpu_speed.csv"))
270 os.path.join(files_dir, "context_switches.csv"))
335 os.path.join(files_dir, "total_faults.csv"))
366 os.path.join(files_dir, "binder_calls.csv"))
418 os.path.join(files_dir, "net%d.csv" % num))
471 os.path.join(files_dir, "yaffs%d.csv" % num)
    [all...]
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
MmsProvider.java 380 String path = getContext().getDir("parts", 0).getPath() local
383 finalValues.put(Part._DATA, path);
385 File partFile = new File(path);
390 "Unable to create new partFile: " + path);
395 "Unable to create new partFile: " + path);
433 String path = getContext().getDir("parts", 0).getPath() local
436 finalValues.put("_data", path);
438 File partFile = new File(path);
443 "Unable to create new file: " + path);
448 "Unable to create new file: " + path);
624 String path = cursor.getString(0); local
    [all...]
  /bionic/libc/bionic/
fts.c 96 * Start out with 1K of path space, and enough, in any case,
189 * known that the path will fit.
225 /* Free up child linked list, sort array, path buffer, stream ptr.*/
246 * Special case of "/" at the end of the path so that slashes aren't
507 * If using chdir on a relative path and called BEFORE fts_read does
596 * chdir into the directory, it will have to return different path
622 * current path -- the inner loop allocates more path as necessary.
624 * could do them in fts_read before returning the path, but it's a
628 * each new name into the path
    [all...]
  /external/wpa_supplicant/
wpa_supplicant.conf 13 # not relative to working directory) path in order to allow working directory
122 # configure the path to the pkcs11 module required by the pkcs11 engine
299 # ca_cert: File path to CA certificate file (PEM/DER). This file can have one
303 # EAP-TLS/TTLS/PEAP. Full path should be used since working directory may
311 # ca_path: Directory path for CA certificate files (PEM). This path may
317 # client_cert: File path to client certificate file (PEM/DER)
318 # Full path should be used since working directory may change when
322 # private_key: File path to client private key file (PEM/DER/PFX)
325 # the PKCS#12 file in this case. Full path should be used since workin
    [all...]
  /system/core/sh/
eval.c 613 static char def_path[] = "PATH=/usr/bin:/bin:/usr/sbin:/sbin";
621 memcpy(sys_path, "PATH=", 5);
696 const char *path = pathval(); local
786 static const char PATH[] = "PATH=";
790 * Modify the command lookup path, if a PATH= assignment
794 if (strncmp(sp->text, PATH, sizeof(PATH) - 1) == 0)
795 path = sp->text + sizeof(PATH) - 1
    [all...]
  /build/tools/releasetools/
amend_generator.py 38 """Convert a file path to the 'root' notation used by amend."""
113 def Mount(self, kind, what, path):
184 """Recursively set path ownership and permissions."""
206 path for binaries instead of input_zip."""
217 data = input_zip.read(os.path.join("OTA/bin", sourcefn))
219 data = open(os.path.join(input_path, sourcefn)).read()
  /dalvik/libcore/security/src/test/java/tests/api/java/security/
AccessControlContextTest.java 78 final Permission perm = new PropertyPermission("java.class.path",
254 final Permission perm1 = new PropertyPermission("java.class.path",
256 final Permission perm2 = new PropertyPermission("java.path", "write");
317 final Permission perm1 = new PropertyPermission("java.class.path",
351 final Permission perm1 = new PropertyPermission("java.class.path",
353 final Permission perm2 = new PropertyPermission("java.path", "write");
  /development/pdk/docs/porting/
debugging_gdb.jd 76 set solib-absolute-prefix /<i>absolute-source-path</i>/out/target/product/<i>product-name</i>/symbols
77 set solib-search-path /<i>absolute-source-path</i>/out/target/product/<i>product-name</i>/symbols/system/lib
80 <i>absolute-source-path</i> is the path to your source tree; for example, <code>/work/device</code> or <code>/Users/hoser/android/device</code>.<BR>
144 <p>Otherwise you need to determine the path of the crashing binary and follow the
  /development/tools/monkeyrunner/src/com/android/monkeyrunner/
MonkeyRecorder.java 108 scriptName = scriptFile.getName(); // Get rid of path
125 * @param scriptName filename (not path) of the monkey script, stored as attribute in the xml file
215 * @param filename file name of the screenshot to be stored (Not path name)
234 * @param filename path of file to be stamped
248 * @param filename path of file to be stripped of type information
261 * @param filename path of file to be stripped of type information
  /external/dbus/tools/
dbus-send.c 35 fprintf (stderr, "Usage: %s [--help] [--system | --session] [--dest=NAME] [--type=TYPE] [--print-reply=(literal)] [--reply-timeout=MSEC] <destination object path> <message name> [contents ...]\n", appname);
225 const char *path = NULL; local
266 else if (path == NULL)
267 path = arg;
314 path,
332 message = dbus_message_new_signal (path, name, last_dot + 1);
  /external/emma/core/java12/com/vladium/emma/rt/
ClassPathProcessorST.java 48 // construct instr path enumerator [throws on illegal input only]:
61 // actual work is driven by the path enumerator:
287 ClassPathProcessorST (final File [] path, final boolean canonical,
291 if (path == null) throw new IllegalArgumentException ("null input: path");
294 m_path = path;
  /external/ipsec-tools/src/racoon/
racoon.conf.5 109 .It Ar path
159 .It Ic chroot Ar path ;
181 .Ss Path Specification
189 restart is required if you want path changes to be taken into account.
191 .It Ic path include Ar path ;
192 Specifies a path to include a file.
195 .It Ic path pre_shared_key Ar file ;
199 .It Ic path certificate Ar path ;
    [all...]
  /external/openssl/crypto/ocsp/
ocsp_ht.c 121 OCSP_REQ_CTX *OCSP_sendreq_new(BIO *io, char *path, OCSP_REQUEST *req,
138 if (!path)
139 path = "/";
141 if (BIO_printf(rctx->mem, post_hdr, path,
453 OCSP_RESPONSE *OCSP_sendreq_bio(BIO *b, char *path, OCSP_REQUEST *req)
459 ctx = OCSP_sendreq_new(b, path, req, -1);
  /external/qemu/
sockets.h 165 * sockets, the path is stored in a heap-allocated block,
181 const char* path; member in struct:__anon4836::__anon4837::__anon4840
201 /* Intialize a Unix socket address, this will copy the 'path' string into the
205 void sock_address_init_unix( SockAddress* a, const char* path );
233 /* return the path of a given Unix socket, returns NULL for non-Unix ones */
376 /* create a server socket listening to a Unix domain path */
  /external/quake/quake/src/QW/client/
common.h 183 void COM_DefaultExtension (char *path, char *extension);
200 byte *COM_LoadStackFile (char *path, void *buffer, int bufsize);
201 byte *COM_LoadTempFile (char *path);
202 byte *COM_LoadHunkFile (char *path);
203 void COM_LoadCacheFile (char *path, struct cache_user_s *cu);
204 void COM_CreatePath (char *path);

Completed in 315 milliseconds

<<61626364656667686970>>