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

<<11121314151617181920>>

  /external/qemu/distrib/sdl-1.2.12/src/audio/
SDL_audiodev.c 50 int SDL_OpenAudioPath(char *path, int maxlen, int flags, int classic)
92 if ( path != NULL ) {
93 SDL_strlcpy(path, audiodev, maxlen);
94 path[maxlen-1] = '\0';
126 static int OpenUserDefinedDevice(char *path, int maxlen, int flags)
139 if ( path != NULL ) {
140 SDL_strlcpy(path, audiodev, maxlen);
141 path[maxlen-1] = '\0';
146 int SDL_OpenAudioPath(char *path, int maxlen, int flags, int classic)
153 audio_fd = OpenUserDefinedDevice(path,maxlen,flags)
    [all...]
  /external/skia/include/core/
SkRasterizer.h 32 /** Turn the path into a mask, respecting the specified local->device matrix.
34 bool rasterize(const SkPath& path, const SkMatrix& matrix,
42 virtual bool onRasterize(const SkPath& path, const SkMatrix& matrix,
  /external/webkit/WebCore/html/
File.cpp 33 File::File(const String& path)
34 : Blob(path)
35 , m_name(pathGetFileName(path))
  /frameworks/base/core/java/android/os/storage/
IMountServiceListener.aidl 36 * @param path The volume mount path.
42 void onStorageStateChanged(String path, String oldState, String newState);
MountServiceListener.java 36 * @param path The volume mount path.
42 void onStorageStateChange(String path, String oldState, String newState) {
StorageEventListener.java 33 * @param path the filesystem path for the storage
37 public void onStorageStateChanged(String path, String oldState, String newState) {
  /frameworks/base/libs/ui/
KeyCharacterMap.cpp 160 char path[PATH_MAX]; local
174 snprintf(path, sizeof(path), "%s/usr/keychars/%s.kcm.bin", root, tmpfn);
175 //LOGD("load: dev='%s' path='%s'\n", dev, path);
176 rv = try_file(path);
180 LOGW("Error loading keycharmap file '%s'. %s='%s'", path, propName, dev);
185 snprintf(path, sizeof(path), "%s/usr/keychars/qwerty.kcm.bin", root);
186 rv = try_file(path);
    [all...]
  /frameworks/base/media/java/android/media/
IMediaScannerListener.aidl 28 * @param path the path to the file that has been scanned.
32 void scanCompleted(String path, in Uri uri);
MediaScannerClient.java 24 public void scanFile(String path, long lastModified, long fileSize);
26 public void scanFile(String path, String mimeType, long lastModified, long fileSize);
28 public void addNoMediaFolder(String path);
  /ndk/
GNUmakefile 26 # Find the NDK root installation path, should be this file's location.
30 # Complain if the path contains spaces
32 $(info,The Android NDK installation path contains spaces: '$(NDK_ROOT)')
  /dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
URI.java 32 * the various components (scheme, host, port, userinfo, path, query
42 * port), path segment, query segment and fragment. Note that RFC 2396
49 * the entire scheme-specific part is treated as the "path" portion
128 /** If specified, stores the path for this URI; otherwise null.
166 * accordingly - setting the scheme, userinfo, host,port, path, query
169 * into a scheme and scheme-specific part (stored as the path) only.
201 * Only the scheme and scheme-specific part (stored as the path) are
240 * @param p_path the URI path - if the path contains '?' or '#',
242 * set from the path; however, if the query an
522 String path = new String(); local
    [all...]
  /external/libxml2/
uri.c 104 * path = [ abs_path | opaque_part ]
539 * Parse an path absolute or empty and fills in the appropriate fields
542 * path-abempty = *( "/" segment )
560 if (uri->path != NULL) xmlFree(uri->path);
562 uri->path = STRNDUP(*str, cur - *str);
564 uri->path = xmlURIUnescapeString(*str, cur - *str, NULL);
575 * Parse an path absolute and fills in the appropriate fields
578 * path-absolute = "/" [ segment-nz *( "/" segment ) ]
602 if (uri->path != NULL) xmlFree(uri->path)
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/utils/
URI.java 30 * the various components (scheme, host, port, userinfo, path, query
40 * port), path segment, query segment and fragment. Note that RFC 2396
47 * the entire scheme-specific part is treated as the "path" portion
131 /** If specified, stores the path for this URI; otherwise null.
169 * accordingly - setting the scheme, userinfo, host,port, path, query
172 * into a scheme and scheme-specific part (stored as the path) only.
204 * Only the scheme and scheme-specific part (stored as the path) are
243 * @param p_path the URI path - if the path contains '?' or '#',
245 * set from the path; however, if the query an
502 String path = new String(); local
    [all...]
  /external/bluetooth/bluez/test/
agent.c 81 const char *path; local
87 DBUS_TYPE_OBJECT_PATH, &path,
105 printf("Pincode request for device %s\n", path);
124 const char *path; local
132 DBUS_TYPE_OBJECT_PATH, &path,
150 printf("Passkey request for device %s\n", path);
228 const char *path, *uuid; local
230 if (!dbus_message_get_args(msg, NULL, DBUS_TYPE_OBJECT_PATH, &path,
249 printf("Authorizing request for %s\n", path);
297 fprintf(stderr, "Can't register object path for agent\n")
414 char *path; local
466 char *path; local
    [all...]
  /external/webkit/WebCore/platform/graphics/skia/
SkiaFontWin.cpp 48 CachedOutlineKey() : font(0), glyph(0), path(0) {}
49 CachedOutlineKey(HFONT f, WORD g) : font(f), glyph(g), path(0) {}
56 SkPath* path; member in struct:WebCore::CachedOutlineKey
96 // Removes the given key from the cached outlines, also deleting the path.
99 delete deleteMe->path;
103 static void addPolyCurveToPath(const TTPOLYCURVE* polyCurve, SkPath* path)
108 path->lineTo(FIXEDToSkScalar(polyCurve->apfx[i].x), -FIXEDToSkScalar(polyCurve->apfx[i].y));
128 path->quadTo(bx, -by, cx, -cy);
138 // The size of the glyph path buffer.
143 static bool getPathForGlyph(HDC dc, WORD glyph, SkPath* path)
278 const SkPath* path = SkiaWinOutlineCache::lookupOrCreatePathForGlyph(dc, hfont, glyphs[i]); local
    [all...]
  /external/yaffs2/yaffs2/direct/
yaffsfs.c 35 static yaffs_Object *yaffsfs_FindObject(yaffs_Object *relativeDirectory, const char *path, int symDepth);
135 // Stuff to search for a directory from a path
149 static yaffs_Device *yaffsfs_FindDevice(const char *path, char **restOfPath)
163 leftOver = path;
177 (!*leftOver || *leftOver == '/') && // no more in this path name part
190 static yaffs_Object *yaffsfs_FindRoot(const char *path, char **restOfPath)
195 dev= yaffsfs_FindDevice(path,restOfPath);
226 // Parse a path to determine the directory and the name within the directory.
229 static yaffs_Object *yaffsfs_DoFindDirectory(yaffs_Object *startDir,const char *path,char **name,int symDepth)
244 restOfPath = (char *)path;
    [all...]
  /development/ide/xcode/corecg.xcodeproj/
project.pbxproj 58 0026CE6709DC5A9E00D5B6BE /* SkBuffer.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = SkBuffer.cpp; path = ../../libs/corecg/SkBuffer.cpp; sourceTree = SOURCE_ROOT; };
59 0026CE7B09DC5B1F00D5B6BE /* Sk64.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = Sk64.h; path = ../../include/corecg/Sk64.h; sourceTree = SOURCE_ROOT; };
60 0026CE7C09DC5B1F00D5B6BE /* SkBuffer.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SkBuffer.h; path = ../../include/corecg/SkBuffer.h; sourceTree = SOURCE_ROOT; };
61 0026CE7D09DC5B1F00D5B6BE /* SkEndian.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SkEndian.h; path = ../../include/corecg/SkEndian.h; sourceTree = SOURCE_ROOT; };
62 0026CE7E09DC5B1F00D5B6BE /* SkFDot6.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SkFDot6.h; path = ../../include/corecg/SkFDot6.h; sourceTree = SOURCE_ROOT; };
63 0026CE7F09DC5B1F00D5B6BE /* SkFixed.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SkFixed.h; path = ../../include/corecg/SkFixed.h; sourceTree = SOURCE_ROOT; };
64 0026CE8009DC5B1F00D5B6BE /* SkFloatingPoint.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SkFloatingPoint.h; path = ../../include/corecg/SkFloatingPoint.h; sourceTree = SOURCE_ROOT; };
65 0026CE8109DC5B1F00D5B6BE /* SkMath.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SkMath.h; path = ../../include/corecg/SkMath.h; sourceTree = SOURCE_ROOT; };
66 0026CE8209DC5B1F00D5B6BE /* SkMatrix.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SkMatrix.h; path = ../../include/corecg/SkMatrix.h; sourceTree = SOURCE_ROOT; };
67 0026CE8309DC5B1F00D5B6BE /* SkPoint.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SkPoint.h; path = ../../include/corecg/SkPoint.h; sourceTree = SOURCE_ROOT; }
    [all...]
  /external/webkit/WebKitTools/Scripts/webkitpy/
scm.py 41 def detect_scm_system(path):
42 if SVN.in_working_directory(path):
43 return SVN(cwd=path)
45 if Git.in_working_directory(path):
46 return Git(cwd=path)
100 return os.path.join(self.checkout_root, "WebKitTools", "Scripts")
103 return os.path.join(self.scripts_directory(), script_name)
161 for path in paths:
162 if os.path.basename(path) == "ChangeLog"
    [all...]
  /bootable/recovery/
install.c 41 try_update_binary(const char *path, ZipArchive *zip) {
105 args[3] = (char*)path;
152 LOGE("Error in %s\n(Status %d)\n", path, WEXITSTATUS(status));
160 handle_update_package(const char *path, ZipArchive *zip)
165 int result = try_update_binary(path, zip);
257 char path[PATH_MAX] = ""; local
258 if (translate_root_path(root_path, path, sizeof(path)) == NULL) {
259 LOGE("Bad path %s\n", root_path);
264 LOGI("Update file path: %s\n", path)
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
FileObserverTest.java 39 private static final String PATH = "/PATH";
90 new MockFileObserver(PATH);
92 new MockFileObserver(PATH, FileObserver.ACCESS);
130 "android.os.FileObserver#onEvent(int event, String path) still got event "
236 public String path; field in class:FileObserverTest.FileEvent
238 public FileEvent(final int event, final String path) {
240 this.path = path;
251 public MockFileObserver(String path) {
    [all...]
  /external/webkit/WebKitExamplePlugins/NetscapeCoreAnimationMoviePlugin/NetscapeCoreAnimationMoviePlugin.xcodeproj/
project.pbxproj 25 089C167EFE841241C02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
26 1A624E580DCBC7F6006898C8 /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
27 1A6250410DCBC81B006898C8 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = "<absolute>"; };
28 1A8000190FDB2C85000F3646 /* MovieControllerLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MovieControllerLayer.h; sourceTree = "<group>"; };
29 1A80001A0FDB2C85000F3646 /* MovieControllerLayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MovieControllerLayer.m; sourceTree = "<group>"; };
30 1A8001140FDB2CB2000F3646 /* Pause.tiff */ = {isa = PBXFileReference; lastKnownFileType = image.tiff; path = Pause.tiff; sourceTree = "<group>"; };
31 1A8001150FDB2CB2000F3646 /* Play.tiff */ = {isa = PBXFileReference; lastKnownFileType = image.tiff; path = Play.tiff; sourceTree = "<group>"; };
32 1A8001160FDB2CB2000F3646 /* SliderTrackCenter.tiff */ = {isa = PBXFileReference; lastKnownFileType = image.tiff; path = SliderTrackCenter.tiff; sourceTree = "<group>"; };
33 1A8001170FDB2CB2000F3646 /* SliderTrackLeft.tiff */ = {isa = PBXFileReference; lastKnownFileType = image.tiff; path = SliderTrackLeft.tiff; sourceTree = "<group>"; };
34 1A8001180FDB2CB2000F3646 /* SliderTrackRight.tiff */ = {isa = PBXFileReference; lastKnownFileType = image.tiff; path = SliderTrackRight.tiff; sourceTree = "<group>"; }
    [all...]
  /development/ide/xcode/chipmunk.xcodeproj/
project.pbxproj 26 FE16E1270CE26C3D006BB7E0 /* chipmunk.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = chipmunk.c; path = "/Users/caryclark/Desktop/Chipmunk-4.0.2/src/chipmunk.c"; sourceTree = "<absolute>"; };
27 FE16E1280CE26C3D006BB7E0 /* chipmunk.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = chipmunk.h; path = "/Users/caryclark/Desktop/Chipmunk-4.0.2/src/chipmunk.h"; sourceTree = "<absolute>"; };
28 FE16E1290CE26C3D006BB7E0 /* CMakeLists.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; name = CMakeLists.txt; path = "/Users/caryclark/Desktop/Chipmunk-4.0.2/src/CMakeLists.txt"; sourceTree = "<absolute>"; };
29 FE16E12A0CE26C3D006BB7E0 /* cpArbiter.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = cpArbiter.c; path = "/Users/caryclark/Desktop/Chipmunk-4.0.2/src/cpArbiter.c"; sourceTree = "<absolute>"; };
30 FE16E12B0CE26C3D006BB7E0 /* cpArbiter.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = cpArbiter.h; path = "/Users/caryclark/Desktop/Chipmunk-4.0.2/src/cpArbiter.h"; sourceTree = "<absolute>"; };
31 FE16E12C0CE26C3D006BB7E0 /* cpArray.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = cpArray.c; path = "/Users/caryclark/Desktop/Chipmunk-4.0.2/src/cpArray.c"; sourceTree = "<absolute>"; };
32 FE16E12D0CE26C3D006BB7E0 /* cpArray.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = cpArray.h; path = "/Users/caryclark/Desktop/Chipmunk-4.0.2/src/cpArray.h"; sourceTree = "<absolute>"; };
33 FE16E12E0CE26C3D006BB7E0 /* cpBB.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = cpBB.c; path = "/Users/caryclark/Desktop/Chipmunk-4.0.2/src/cpBB.c"; sourceTree = "<absolute>"; };
34 FE16E12F0CE26C3D006BB7E0 /* cpBB.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = cpBB.h; path = "/Users/caryclark/Desktop/Chipmunk-4.0.2/src/cpBB.h"; sourceTree = "<absolute>"; };
35 FE16E1300CE26C3D006BB7E0 /* cpBody.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = cpBody.c; path = "/Users/caryclark/Desktop/Chipmunk-4.0.2/src/cpBody.c"; sourceTree = "<absolute>"; }
    [all...]
  /external/bluetooth/bluez/gdbus/
object.c 147 struct generic_data *data, const char *path)
158 g_string_append_printf(gstr, "<node name=\"%s\">\n", path);
171 if (!dbus_connection_list_registered(conn, path, &children))
333 const char *path)
337 if (dbus_connection_get_object_path_data(connection, path,
351 if (!dbus_connection_register_object_path(connection, path,
358 invalidate_parent_data(connection, path);
363 static void object_path_unref(DBusConnection *connection, const char *path)
367 if (dbus_connection_get_object_path_data(connection, path,
379 invalidate_parent_data(connection, path);
    [all...]
  /external/skia/xcode/chipmunk.xcodeproj/
project.pbxproj 26 FE16E1270CE26C3D006BB7E0 /* chipmunk.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = chipmunk.c; path = "/Users/caryclark/Desktop/Chipmunk-4.0.2/src/chipmunk.c"; sourceTree = "<absolute>"; };
27 FE16E1280CE26C3D006BB7E0 /* chipmunk.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = chipmunk.h; path = "/Users/caryclark/Desktop/Chipmunk-4.0.2/src/chipmunk.h"; sourceTree = "<absolute>"; };
28 FE16E1290CE26C3D006BB7E0 /* CMakeLists.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; name = CMakeLists.txt; path = "/Users/caryclark/Desktop/Chipmunk-4.0.2/src/CMakeLists.txt"; sourceTree = "<absolute>"; };
29 FE16E12A0CE26C3D006BB7E0 /* cpArbiter.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = cpArbiter.c; path = "/Users/caryclark/Desktop/Chipmunk-4.0.2/src/cpArbiter.c"; sourceTree = "<absolute>"; };
30 FE16E12B0CE26C3D006BB7E0 /* cpArbiter.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = cpArbiter.h; path = "/Users/caryclark/Desktop/Chipmunk-4.0.2/src/cpArbiter.h"; sourceTree = "<absolute>"; };
31 FE16E12C0CE26C3D006BB7E0 /* cpArray.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = cpArray.c; path = "/Users/caryclark/Desktop/Chipmunk-4.0.2/src/cpArray.c"; sourceTree = "<absolute>"; };
32 FE16E12D0CE26C3D006BB7E0 /* cpArray.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = cpArray.h; path = "/Users/caryclark/Desktop/Chipmunk-4.0.2/src/cpArray.h"; sourceTree = "<absolute>"; };
33 FE16E12E0CE26C3D006BB7E0 /* cpBB.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = cpBB.c; path = "/Users/caryclark/Desktop/Chipmunk-4.0.2/src/cpBB.c"; sourceTree = "<absolute>"; };
34 FE16E12F0CE26C3D006BB7E0 /* cpBB.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = cpBB.h; path = "/Users/caryclark/Desktop/Chipmunk-4.0.2/src/cpBB.h"; sourceTree = "<absolute>"; };
35 FE16E1300CE26C3D006BB7E0 /* cpBody.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = cpBody.c; path = "/Users/caryclark/Desktop/Chipmunk-4.0.2/src/cpBody.c"; sourceTree = "<absolute>"; }
    [all...]
  /dalvik/libcore/luni/src/main/java/java/io/
FilePermission.java 53 // canonical path of this permission
75 * Constructs a new FilePermission with the path and actions specified.
77 * @param path
80 * the actions for the {@code path}. May be any combination of
87 * if {@code path} is {@code null}.
89 public FilePermission(String path, String actions) {
90 super(path);
91 init(path, actions);
94 private void init(final String path, String pathActions) {
100 if (path == null)
    [all...]

Completed in 74 milliseconds

<<11121314151617181920>>