Searched refs:fPath (Results 1 - 25 of 155) sorted by last modified time

1234567

/haiku/src/kits/package/
H A DPackageInfo.cpp139 fPath(path),
146 fPath(NULL),
153 return fPath;
162 const char* fPath; member in struct:BPackageKit::BPackageInfo::PackageFileLocation
/haiku/src/tools/fs_shell/
H A Dcommand_cp.cpp315 fPath(NULL)
321 if (fPath)
322 free(fPath);
332 fPath = strdup(path);
333 if (!fPath)
341 fssh_ssize_t bytesRead = readlink(fPath, buffer, bufferSize);
346 char *fPath; member in class:FSShell::HostSymLink
/haiku/src/servers/package/
H A DVolume.cpp145 fPath(),
229 fPath = path.Path();
230 if (fPath.IsEmpty())
307 fPath.String(), strerror(error));
/haiku/src/apps/haikudepot/util/
H A DStorageUtils.cpp32 fPath(path),
43 return fPath;
54 result.SetToFormat("%s; @ %" B_PRIu64, fPath.Leaf(), fLastAccessMillisSinceEpoch);
61 strcmp(fPath.Path(), other.fPath.Path()) < 0;
65 BPath fPath; member in class:PathWithLastAccessTimestamp
/haiku/src/apps/bootmanager/
H A DDrivesPage.cpp42 const char* Path() const { return fPath.Path(); }
55 BPath fPath; member in class:DriveItem
70 device.GetPath(&fPath);
73 else if (strstr(fPath.Path(), "usb") != NULL)
83 fDrive = new BootDrive(fPath.Path());
163 owner->DrawString(fPath.Path());
232 float width = 8 + boldFont.StringWidth(fPath.Path())
234 float pathWidth = font->StringWidth(fPath.Path());
/haiku/src/libs/icon/shape/
H A DVectorPath.cpp102 fPath(NULL),
118 fPath(NULL),
135 fPath(NULL),
149 memset((void*)fPath, 0, fAllocCount * sizeof(control_point));
160 fPath[i].point = point;
161 fPath[i].point_in = pointIn;
162 fPath[i].point_out = pointOut;
163 fPath[i].connected = connected;
174 if (fPath)
175 obj_free(fPath);
[all...]
H A DReferenceImage.h62 VectorPath* fPath; member in class:ReferenceImage
/haiku/src/apps/icon-o-matic/shape/
H A DPathManipulator.cpp213 fPath(path),
228 fPath->AcquireReference();
229 fPath->AddListener(this);
230 fPath->AddObserver(this);
246 fPath->RemoveObserver(this);
247 fPath->RemoveListener(this);
248 fPath->ReleaseReference();
315 fPath->Iterate(&iterator, fCanvasView->ZoomLevel());
327 for (int32 i = 0; fPath->GetPointsAt(i, point, pointIn, pointOut); i++) {
446 fChangePointCommand = new ChangePointCommand(fPath,
[all...]
/haiku/src/apps/icon-o-matic/import_export/styled_text/
H A DStyledTextImporter.cpp61 VectorPath *fPath; member in class:ShapeIterator
74 fPath = NULL;
85 if (fPath)
89 //fPath->AddPoint(fOffset + *point);
102 fPath->AddPoint(fOffset + *linePts);
123 fPath->AddPoint(firstPoint,
126 fPath->SetClosed(true);
128 fPath->AddPoint(firstPoint, firstPoint, fOffset + bezierPts[0], false);
133 fPath->AddPoint(fOffset + bezierPts[i + 1],
139 fPath
[all...]
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/
H A DIMAPFolder.cpp46 BEntry(fPath.Path()).Remove();
57 fPath = path;
58 fPath.Append(name.String());
60 status_t status = fFile.SetTo(fPath.Path(),
68 return get_ref_for_path(fPath.Path(), &ref);
79 BPath fPath; member in class:TemporaryFile
/haiku/src/apps/icon-o-matic/shape/commands/
H A DUnassignPathCommand.cpp27 fPath(path),
35 if (fPathRemoved && fPath)
36 fPath->ReleaseReference();
43 return fShape && fPath ? B_OK : B_NO_INIT;
51 fShape->Paths()->RemoveItem(fPath);
62 fShape->Paths()->AddItem(fPath);
H A DSplitPointsCommand.cpp55 if (!fPath->GetPointsAt(fIndex[i],
60 fPath = NULL;
94 AutoNotificationSuspender _(fPath);
102 if (fPath->AddPoint(fPoint[i], index)) {
103 fPath->SetPoint(index - 1,
108 fPath->SetPoint(index,
128 AutoNotificationSuspender _(fPath);
134 if (fPath->RemovePoint(index)) {
135 fPath->SetPoint(index - 1,
H A DRotatePathIndicesCommand.cpp38 if (ret == B_OK && fPath->CountPoints() < 2)
76 removeIndex = fPath->CountPoints() - 1;
80 addIndex = fPath->CountPoints() - 1;
83 if (!fPath->GetPointsAt(removeIndex, point, pointIn, pointOut, &connected))
86 fPath->RemovePoint(removeIndex);
87 fPath->AddPoint(point, addIndex);
88 fPath->SetPoint(addIndex, point, pointIn, pointOut, connected);
H A DReversePathCommand.cpp38 fPath->Reverse();
H A DRemovePointsCommand.cpp104 AutoNotificationSuspender _(fPath);
108 if (fPath->AddPoint(fPoint[i], fIndex[i])) {
109 fPath->SetPoint(fIndex[i],
120 fPath->SetClosed(fWasClosed);
138 AutoNotificationSuspender _(fPath);
145 if (!fPath->RemovePoint(fIndex[i] - i)) {
151 fPath->SetClosed(fWasClosed && fPath->CountPoints() > 1);
189 if (!fPath->GetPointsAt(fIndex[i],
194 fPath
[all...]
H A DNudgePointsCommand.cpp50 fPath(path),
76 if (fPath && fIndices && fPoints)
90 if (!fPath)
93 AutoNotificationSuspender _(fPath);
97 fPath->SetPoint(fIndices[i], fPoints[i].point + translation,
H A DInsertPointCommand.cpp36 if (fPath && (!fPath->GetPointsAt(fIndex, fPoint, fPointIn, fPointOut)
37 || !fPath->GetPointOutAt(fIndex - 1, fPreviousOut)
38 || !fPath->GetPointInAt(fIndex + 1, fNextIn))) {
39 fPath = NULL;
63 fPath->GetPointInAt(fIndex, fPointIn);
64 fPath->GetPointOutAt(fIndex, fPointOut);
77 AutoNotificationSuspender _(fPath);
80 if (fPath->RemovePoint(fIndex)) {
83 fPath
[all...]
H A DFlipPointsCommand.cpp70 AutoNotificationSuspender _(fPath);
79 if (fPath->GetPointsAt(fIndex[i], point, pointIn, pointOut, &connected)) {
83 fPath->SetPoint(fIndex[i],
H A DChangePointCommand.cpp36 if (fPath && !fPath->GetPointsAt(fIndex, fPoint, fPointIn, fPointOut, &fConnected))
37 fPath = NULL;
66 if (!fPath->GetPointsAt(fIndex, point, pointIn, pointOut, &connected))
98 if (fPath->GetPointsAt(fIndex, point, pointIn, pointOut, &connected)
99 && fPath->SetPoint(fIndex, fPoint, fPointIn, fPointOut, fConnected)) {
H A DCleanUpPathCommand.cpp28 if (fPath)
29 fOriginalPath = *fPath;
41 fPath->CleanUp();
50 *fPath = fOriginalPath;
H A DAddPointCommand.cpp55 if (!fPath->GetPointsAt(fIndex, fPoint, fPointIn, fPointOut))
70 if (fPath->RemovePoint(fIndex)) {
88 AutoNotificationSuspender _(fPath);
91 if (fPath->AddPoint(fPoint, fIndex)) {
92 fPath->SetPoint(fIndex, fPoint, fPointIn, fPointOut, true);
/haiku/src/bin/
H A Dxres.cpp207 fPath(path),
223 status_t error = file.SetTo(fPath.c_str(), B_READ_ONLY);
226 fPath.c_str(), strerror(error));
236 "%s\n", fPath.c_str(), strerror(error));
244 fPath.c_str());
255 "\"%s\": %s\n", fPath.c_str(), strerror(bytesRead));
274 string fPath; member in struct:FileResourceDataSource
561 fPath(path)
567 state->SetOutput(fPath.c_str());
571 string fPath; member in struct:SetOutputCommand
590 string fPath; member in struct:ProcessInputCommand
[all...]
/haiku/src/tests/system/boot/loader/
H A DHandle.cpp30 fPath(NULL)
38 fPath(NULL)
46 fPath = strdup(path);
62 free(fPath);
102 if (fPath == NULL)
105 strncpy(nameBuffer, fPath, bufferSize - 1);
/haiku/src/bin/bfs_tools/lib/
H A DInode.cpp51 fPath(NULL),
67 fPath(NULL),
92 free(fPath);
93 fPath = NULL;
463 fPath = strdup(path.String());
472 if (fPath == NULL)
475 return fPath;
/haiku/src/add-ons/kernel/file_systems/reiserfs/
H A DIterators.cpp172 fPath(NULL)
190 fPath = NULL;
195 fPath = new(nothrow) TreePath(tree->GetTreeHeight());
204 if (fPath) {
205 delete fPath;
206 fPath = NULL;
218 return (fTree && fCurrentNode && fPath ? fPath->InitCheck() : B_NO_INIT);
453 = (fTree && !fCurrentNode && fPath ? fPath
[all...]

Completed in 122 milliseconds

1234567